/* ============================================
   HMS OTEL - Ana Stil Dosyası
   ============================================ */

/* CSS Variables */
:root {
    --primary: #1E5BD8;
    --primary-dark: #1849B8;
    --primary-light: #4F8FFF;
    --secondary: #FF7A59;
    --accent: #FFB627;
    --dark: #0F1B3D;
    --dark-2: #1E293B;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;

    --gradient-primary: linear-gradient(135deg, #1E5BD8 0%, #4F8FFF 100%);
    --gradient-dark: linear-gradient(135deg, #0F1B3D 0%, #1E293B 100%);
    --gradient-hero: linear-gradient(135deg, #0F1B3D 0%, #1E5BD8 50%, #4F8FFF 100%);

    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);

    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --container: 1280px;

    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

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

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(30, 91, 216, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 91, 216, 0.4);
    color: var(--white);
}

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

.btn-secondary:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
}

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

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

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

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

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 17px;
}

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

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--gray-300);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar-links {
    display: flex;
    gap: 20px;
}

.top-bar-links a {
    color: var(--gray-300);
    font-weight: 500;
}

.top-bar-links a:hover {
    color: var(--white);
}

.lang-switch {
    padding-left: 20px;
    border-left: 1px solid var(--gray-700);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-100);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 22px;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.logo:hover {
    color: var(--primary);
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 10px;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(30, 91, 216, 0.3);
}

.logo-text span {
    color: var(--primary);
}

.main-nav {
    flex: 1;
}

.main-nav > ul {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: block;
    padding: 10px 16px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
    color: var(--primary);
    background: var(--gray-50);
}

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

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    padding: 8px;
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s;
    z-index: 100;
}

.dropdown li a {
    display: block;
    padding: 10px 16px;
    color: var(--gray-700);
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.dropdown li a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.header-cta {
    flex-shrink: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,122,89,0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79,143,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    background: linear-gradient(135deg, #FFB627 0%, #FF7A59 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.stat span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

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

.hero-mockup {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
}

.mockup-bar {
    background: var(--gray-100);
    padding: 10px 14px;
    display: flex;
    gap: 6px;
}

.mockup-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
}

.mockup-bar span:nth-child(1) { background: #FF5F57; }
.mockup-bar span:nth-child(2) { background: #FEBC2E; }
.mockup-bar span:nth-child(3) { background: #28C840; }

.mockup-content {
    display: flex;
    height: 380px;
}

.mockup-sidebar {
    width: 60px;
    background: var(--dark);
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-menu-item {
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.mockup-menu-item.active {
    background: var(--primary);
}

.mockup-main {
    flex: 1;
    padding: 20px;
    background: var(--gray-50);
}

.mockup-row {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.mockup-block {
    background: var(--white);
    border-radius: 8px;
    height: 70px;
    box-shadow: var(--shadow-sm);
}

.mockup-block.large { flex: 2; }
.mockup-block.medium { flex: 1; }
.mockup-block.small { flex: 1; }

.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    background: var(--white);
    border-radius: 8px;
    padding: 16px;
    height: 140px;
}

.mockup-chart .bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
    border-radius: 4px 4px 0 0;
}

.hero-card {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    z-index: 5;
    min-width: 180px;
    animation: float 4s ease-in-out infinite;
}

.hero-card-1 {
    top: -20px;
    left: -40px;
    animation-delay: 0s;
}

.hero-card-2 {
    bottom: 80px;
    left: -60px;
    animation-delay: 1s;
}

.hero-card-3 {
    bottom: -20px;
    right: -20px;
    animation-delay: 2s;
}

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

.hero-card .card-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.hero-card h4 {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-card .card-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.hero-card .card-trend {
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 60%);
}

/* Trusted By */
.trusted-by {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.trusted-title {
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.trusted-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-400);
    letter-spacing: -0.02em;
    transition: color 0.3s;
}

.trust-logo:hover {
    color: var(--gray-700);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(30, 91, 216, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--gray-600);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    padding: 100px 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid var(--gray-100);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.feature-card > p {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 15px;
}

.feature-list {
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
}

.feature-list li {
    padding: 4px 0;
    color: var(--gray-600);
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* ============================================
   WHY HMS
   ============================================ */
.why-hms {
    padding: 100px 0;
    background: var(--white);
}

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

.why-content h2 {
    margin: 16px 0 20px;
}

.why-content > p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 36px;
}

.why-features {
    display: grid;
    gap: 24px;
    margin-bottom: 36px;
}

.why-feature {
    display: flex;
    gap: 16px;
}

.why-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(30, 91, 216, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.why-feature h4 {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.why-feature p {
    color: var(--gray-600);
    font-size: 14px;
}

/* Why Visual */
.why-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 520px;
}

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

.image-1 {
    background: linear-gradient(135deg, #1E5BD8, #4F8FFF);
    grid-row: 1 / 3;
}

.image-2 {
    background: linear-gradient(135deg, #FF7A59, #E94E1B);
}

.image-3 {
    background: linear-gradient(135deg, #10B981, #059669);
}

.image-4 {
    background: linear-gradient(135deg, #A78BFA, #7C3AED);
    grid-column: 1 / 3;
}

.image-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.image-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.95);
    color: var(--gray-900);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* ============================================
   INTEGRATIONS
   ============================================ */
.integrations {
    padding: 100px 0;
    background: var(--gray-50);
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}

.integration-item {
    background: var(--white);
    padding: 24px 16px;
    text-align: center;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    font-weight: 600;
    color: var(--gray-700);
    font-size: 13px;
    transition: all 0.25s;
}

.integration-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

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

.testimonial-stars {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.testimonial-author strong {
    display: block;
    color: var(--gray-900);
    font-size: 15px;
}

.testimonial-author span {
    color: var(--gray-500);
    font-size: 13px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-preview, .full-pricing {
    padding: 100px 0;
    background: var(--gray-50);
}

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

.pricing-4col {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
}

.pricing-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    position: relative;
    transition: all 0.3s;
}

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

.pricing-popular {
    border-color: var(--primary);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}

.pricing-popular:hover {
    transform: scale(1.04) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.pricing-subtitle {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 20px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    color: var(--gray-700);
    font-weight: 700;
}

.pricing-amount .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.03em;
}

.pricing-amount .period {
    color: var(--gray-500);
    font-size: 14px;
}

.pricing-note {
    color: var(--gray-500);
    font-size: 14px;
}

.pricing-features {
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 14px;
}

.pricing-features li.disabled {
    color: var(--gray-400);
    text-decoration: line-through;
}

/* Billing Toggle */
.pricing-toggle-section {
    padding: 40px 0 0;
    background: var(--gray-50);
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--gray-600);
    font-weight: 500;
}

.billing-toggle .active {
    color: var(--gray-900);
    font-weight: 700;
}

.toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--gray-300);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
}

.toggle-ball {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.25s;
}

.save-badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--success);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-left: 6px;
}

/* Comparison Table */
.comparison-table-section {
    padding: 100px 0;
    background: var(--white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.comparison-table th {
    background: var(--gray-50);
    padding: 20px 16px;
    text-align: center;
    font-weight: 700;
    color: var(--gray-900);
    border-bottom: 2px solid var(--gray-200);
}

.comparison-table th.feature-col {
    text-align: left;
}

.comparison-table th.highlight-col,
.comparison-table td.highlight-col {
    background: rgba(30, 91, 216, 0.06);
    color: var(--primary);
    font-weight: 600;
}

.comparison-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.category-row td {
    background: var(--dark);
    color: var(--white);
    font-weight: 700;
    text-align: left;
    padding: 14px 16px;
    font-size: 13px;
    letter-spacing: 1px;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    margin-bottom: 12px;
    color: var(--gray-900);
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

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

.cta-content h2 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 16px;
}

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

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo span span {
    color: var(--primary-light);
}

.footer-about p {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.25s;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: var(--gray-400);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--primary-light);
}

.contact-list li {
    margin-bottom: 14px;
    color: var(--gray-400);
    font-size: 14px;
    line-height: 1.5;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
}

.footer-bottom p {
    color: var(--gray-500);
}

.footer-bottom p a {
    color: var(--gray-300);
    transition: color 0.2s;
}

.footer-bottom p a:hover {
    color: var(--primary-light);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--gray-500);
    transition: color 0.2s;
}

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

/* ============================================
   PAGE BANNERS
   ============================================ */
.page-banner {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,122,89,0.2), transparent 70%);
    border-radius: 50%;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 16px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    margin: 0 8px;
}

.page-banner h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-banner p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   FEATURE DETAILS PAGE
   ============================================ */
.feature-categories {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    position: sticky;
    top: 80px;
    z-index: 50;
    box-shadow: var(--shadow-sm);
}

.category-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-tab {
    padding: 10px 20px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s;
}

.category-tab:hover,
.category-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.feature-detail {
    padding: 100px 0;
    background: var(--white);
}

.feature-detail.alt {
    background: var(--gray-50);
}

.feature-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-detail-grid.reverse {
    direction: rtl;
}

.feature-detail-grid.reverse > * {
    direction: ltr;
}

.feature-detail-content h2 {
    margin: 16px 0 20px;
}

.lead {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.check-list {
    display: grid;
    gap: 20px;
}

.check-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.check-item h4 {
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.check-item p {
    color: var(--gray-600);
    font-size: 14px;
}

/* Feature Mockups */
.feature-mockup, .frontdesk-mockup, .finance-mockup, .report-mockup, .pos-mockup, .channel-mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.mockup-header {
    background: var(--gray-100);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FEBC2E; }
.mockup-dot:nth-child(3) { background: #28C840; }

.mockup-title {
    margin-left: 12px;
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
}

/* Calendar Mock */
.calendar-mock {
    padding: 20px;
    background: var(--gray-50);
}

.calendar-row {
    display: grid;
    grid-template-columns: 60px repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 4px;
}

.calendar-row.header {
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--gray-700);
    font-size: 13px;
}

.calendar-row.header > div {
    padding: 8px;
    text-align: center;
}

.calendar-row > div:first-child {
    padding: 12px 8px;
    background: var(--white);
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    color: var(--gray-700);
    font-size: 13px;
}

.cal-cell {
    height: 36px;
    background: var(--white);
    border-radius: 4px;
}

.cal-cell.booked {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.cal-cell.res-2 { background: linear-gradient(135deg, #FF7A59, #FFB627); }
.cal-cell.res-3 { background: linear-gradient(135deg, #10B981, #34D399); }
.cal-cell.res-4 { background: linear-gradient(135deg, #A78BFA, #C4B5FD); }
.cal-cell.res-5 { background: linear-gradient(135deg, #F472B6, #F9A8D4); }
.cal-cell.res-6 { background: linear-gradient(135deg, #2DD4BF, #5EEAD4); }
.cal-cell.res-7 { background: linear-gradient(135deg, #FBBF24, #FCD34D); }
.cal-cell.res-8 { background: linear-gradient(135deg, #60A5FA, #93C5FD); }

/* Channel Mockup */
.channel-mockup {
    aspect-ratio: 1;
    background: var(--gray-50);
    position: relative;
    padding: 40px;
    border-radius: var(--radius-lg);
}

.channel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 24px 36px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 18px;
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.channel-item {
    position: absolute;
    background: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 13px;
    box-shadow: var(--shadow);
    color: var(--gray-700);
}

.channel-item.ch-1 { top: 10%; left: 10%; }
.channel-item.ch-2 { top: 10%; right: 10%; }
.channel-item.ch-3 { top: 50%; left: 5%; transform: translateY(-50%); }
.channel-item.ch-4 { top: 50%; right: 5%; transform: translateY(-50%); }
.channel-item.ch-5 { bottom: 10%; left: 10%; }
.channel-item.ch-6 { bottom: 10%; right: 10%; }

.channel-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.channel-lines line {
    stroke: var(--primary);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    opacity: 0.3;
}

/* Front Desk Form */
.frontdesk-form {
    padding: 24px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}

.form-row label {
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 500;
}

.form-value {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 14px;
}

.form-row.total {
    border-bottom: none;
    border-top: 2px solid var(--gray-200);
    padding-top: 18px;
    margin-top: 8px;
}

.form-row.total label,
.form-row.total .form-value {
    font-size: 16px;
    color: var(--gray-900);
    font-weight: 700;
}

.mockup-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    margin-top: 16px;
}

/* Finance Mockup */
.finance-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 24px;
}

.finance-card {
    padding: 20px;
    border-radius: var(--radius);
    color: var(--white);
}

.finance-card.green { background: linear-gradient(135deg, #10B981, #059669); }
.finance-card.red { background: linear-gradient(135deg, #F87171, #DC2626); }
.finance-card.blue { background: linear-gradient(135deg, #3B82F6, #1E40AF); }
.finance-card.purple { background: linear-gradient(135deg, #A78BFA, #7C3AED); }

.finance-card span {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 6px;
}

.finance-card strong {
    display: block;
    font-size: 20px;
    margin-bottom: 6px;
}

.finance-card small {
    font-size: 11px;
    opacity: 0.9;
}

/* Report Mockup */
.report-content {
    padding: 24px;
}

.report-content h5 {
    margin-bottom: 20px;
    color: var(--gray-700);
    font-size: 14px;
}

.chart-bars {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    height: 180px;
}

.bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.report-bar {
    width: 100%;
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
    border-radius: 6px 6px 0 0;
    min-height: 20px;
}

.bar-group span {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 600;
}

/* POS Mockup */
.pos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px;
}

.pos-item {
    background: var(--gray-50);
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 24px;
    transition: all 0.2s;
    cursor: pointer;
}

.pos-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.pos-item span {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-700);
}

.pos-item:hover span {
    color: var(--white);
}

.pos-total {
    padding: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    font-size: 14px;
}

.pos-total strong {
    font-size: 20px;
    margin-left: 8px;
}

/* Additional Modules */
.additional-modules {
    padding: 100px 0;
    background: var(--white);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.module-card {
    background: var(--gray-50);
    padding: 28px;
    text-align: center;
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    border: 1px solid var(--gray-100);
}

.module-card:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.module-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.module-card h4 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.module-card p {
    color: var(--gray-600);
    font-size: 14px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
    padding: 100px 0;
    background: var(--white);
}

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

.story-content h2 {
    margin: 16px 0 20px;
}

.story-content p {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--gray-200);
}

.story-stat strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.story-stat span {
    color: var(--gray-600);
    font-size: 14px;
}

.story-image-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 540px;
}

.story-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.s1 {
    background: linear-gradient(135deg, #1E5BD8, #4F8FFF);
    grid-row: 1 / 3;
}

.s2 {
    background: linear-gradient(135deg, #FF7A59, #E94E1B);
}

.s3 {
    background: linear-gradient(135deg, #10B981, #059669);
}

/* Mission Vision */
.mission-vision {
    padding: 100px 0;
    background: var(--gray-50);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mv-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--gray-100);
}

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

.mv-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mv-card h3 {
    margin-bottom: 14px;
}

.mv-card p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
}

/* Timeline */
.timeline-section {
    padding: 100px 0;
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gray-200);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 20px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 36px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.timeline-item.left::before {
    right: -9px;
}

.timeline-item.right::before {
    left: -9px;
}

.timeline-content {
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
}

.timeline-year {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content h4 {
    margin-bottom: 6px;
}

.timeline-content p {
    color: var(--gray-600);
    font-size: 14px;
}

/* Team */
.team-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--white);
    padding: 36px 28px;
    text-align: center;
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

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

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
}

.avatar-1 { background: linear-gradient(135deg, #1E5BD8, #4F8FFF); }
.avatar-2 { background: linear-gradient(135deg, #FF7A59, #E94E1B); }
.avatar-3 { background: linear-gradient(135deg, #10B981, #059669); }
.avatar-4 { background: linear-gradient(135deg, #A78BFA, #7C3AED); }
.avatar-5 { background: linear-gradient(135deg, #FBBF24, #D97706); }
.avatar-6 { background: linear-gradient(135deg, #F472B6, #DB2777); }

.team-card h4 {
    margin-bottom: 4px;
}

.team-role {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--gray-600);
    font-size: 14px;
}

/* Awards */
.awards-section {
    padding: 100px 0;
    background: var(--white);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.award-card {
    background: var(--gray-50);
    padding: 32px 28px;
    text-align: center;
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--accent);
    transition: all 0.3s;
}

.award-card:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.award-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.award-card h4 {
    margin-bottom: 8px;
}

.award-card p {
    color: var(--gray-600);
    font-size: 14px;
}

/* ============================================
   REFERENCES PAGE
   ============================================ */
.ref-stats {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.ref-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.ref-stat-card {
    text-align: center;
}

.ref-stat-card strong {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1;
}

.ref-stat-card span {
    color: var(--gray-600);
    font-size: 15px;
}

.ref-filter {
    padding: 40px 0;
    background: var(--gray-50);
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    padding: 10px 22px;
    background: var(--white);
    color: var(--gray-700);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--gray-200);
    transition: all 0.25s;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.references-grid-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ref-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

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

.ref-img {
    height: 220px;
}

.ref-img-1 { background: linear-gradient(135deg, #FF7A59, #E94E1B); }
.ref-img-2 { background: linear-gradient(135deg, #A78BFA, #7C3AED); }
.ref-img-3 { background: linear-gradient(135deg, #2DD4BF, #0D9488); }
.ref-img-4 { background: linear-gradient(135deg, #1E5BD8, #4F8FFF); }
.ref-img-5 { background: linear-gradient(135deg, #FBBF24, #D97706); }
.ref-img-6 { background: linear-gradient(135deg, #F472B6, #DB2777); }
.ref-img-7 { background: linear-gradient(135deg, #10B981, #059669); }
.ref-img-8 { background: linear-gradient(135deg, #60A5FA, #2563EB); }
.ref-img-9 { background: linear-gradient(135deg, #F87171, #DC2626); }

.ref-info {
    padding: 24px;
}

.ref-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(30, 91, 216, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.ref-info h4 {
    margin-bottom: 10px;
}

.ref-location {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 8px;
}

.ref-stat {
    color: var(--gray-500);
    font-size: 13px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}

/* Case Studies */
.case-studies {
    padding: 100px 0;
    background: var(--white);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.case-card {
    background: var(--gray-50);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--primary);
    transition: all 0.3s;
}

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

.case-result {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px dashed var(--gray-200);
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--success);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.result-label {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 14px;
}

.case-card h4 {
    margin-bottom: 12px;
}

.case-card > p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.case-author {
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 600;
    font-style: normal;
}

/* Reviews Wall */
.reviews-wall {
    padding: 100px 0;
    background: var(--gray-50);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

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

.review-card p {
    color: var(--gray-700);
    margin: 14px 0 20px;
    font-size: 14px;
    line-height: 1.7;
}

.review-author {
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.review-author strong {
    display: block;
    color: var(--gray-900);
    font-size: 14px;
    margin-bottom: 2px;
}

.review-author span {
    color: var(--gray-500);
    font-size: 12px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-cards {
    padding: 80px 0;
    background: var(--white);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--gray-50);
    padding: 32px 24px;
    text-align: center;
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--primary);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.contact-card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.contact-card h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.contact-card p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 16px;
}

.contact-link {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.contact-card small {
    color: var(--gray-500);
    font-size: 12px;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.form-info h2 {
    margin: 16px 0 20px;
}

.form-info > p {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.form-features {
    display: grid;
    gap: 14px;
    margin-bottom: 36px;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-weight: 500;
}

.form-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.form-quote {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.form-quote p {
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.7;
}

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

.quote-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.quote-author strong {
    display: block;
    color: var(--gray-900);
    font-size: 14px;
}

.quote-author span {
    color: var(--gray-500);
    font-size: 12px;
}

/* Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    margin-bottom: 24px;
}

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

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    color: var(--gray-900);
    background: var(--white);
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 91, 216, 0.1);
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0 !important;
    cursor: pointer;
    font-weight: 400 !important;
    font-size: 13px !important;
}

.checkbox-label input {
    width: auto !important;
    margin-top: 3px;
    accent-color: var(--primary);
}

.form-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 13px;
    margin-top: 14px;
}

/* Offices */
.offices-section {
    padding: 100px 0;
    background: var(--white);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.offices-grid.offices-single {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
}

.office-card {
    background: var(--gray-50);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

.office-card.primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.office-card.primary h3,
.office-card.primary .office-address,
.office-card.primary .office-contact p {
    color: var(--white);
}

.office-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.office-card h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.office-address {
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.office-contact {
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.office-card.primary .office-contact {
    border-top-color: rgba(255,255,255,0.2);
}

.office-contact p {
    color: var(--gray-700);
    font-size: 14px;
    margin-bottom: 6px;
}

/* Map */
.map-section {
    height: 400px;
    position: relative;
}

.map-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--gray-700), var(--gray-900));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        radial-gradient(circle at 25% 50%, rgba(79,143,255,0.1) 0%, transparent 25%),
        radial-gradient(circle at 75% 30%, rgba(255,122,89,0.1) 0%, transparent 25%);
}

.map-overlay {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    max-width: 400px;
}

.map-pin {
    font-size: 48px;
    margin-bottom: 12px;
}

.map-overlay h3 {
    margin-bottom: 12px;
}

.map-overlay p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 14px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section {
    padding: 80px 0;
    background: var(--white);
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.legal-toc {
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius);
    position: sticky;
    top: 100px;
    border: 1px solid var(--gray-100);
}

.legal-toc h4 {
    margin-bottom: 14px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
}

.legal-toc ol {
    list-style: decimal;
    padding-left: 18px;
}

.legal-toc ol li {
    margin-bottom: 8px;
    font-size: 14px;
}

.legal-toc ol li a {
    color: var(--gray-700);
    transition: color 0.2s;
}

.legal-toc ol li a:hover {
    color: var(--primary);
}

.legal-content {
    min-width: 0;
}

.legal-meta {
    background: rgba(30, 91, 216, 0.05);
    padding: 20px 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    margin-bottom: 40px;
    font-size: 14px;
    color: var(--gray-700);
}

.legal-meta strong {
    color: var(--gray-900);
}

.legal-content h2 {
    margin: 40px 0 16px;
    font-size: 1.5rem;
    color: var(--gray-900);
    padding-top: 20px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

.legal-content h3 {
    margin: 24px 0 12px;
    font-size: 1.15rem;
    color: var(--gray-800);
}

.legal-content p {
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

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

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

.legal-content ul li,
.legal-content ol li {
    color: var(--gray-700);
    margin-bottom: 8px;
    line-height: 1.8;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--gray-900);
    font-weight: 700;
}

.legal-contact-box {
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius);
    margin-top: 32px;
    border: 1px solid var(--gray-100);
}

.legal-contact-box p {
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .legal-wrapper {
        grid-template-columns: 1fr;
    }

    .legal-toc {
        position: static;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.1rem; }

    .hero-content h1 { font-size: 2.75rem; }

    .features-grid,
    .testimonial-grid,
    .modules-grid,
    .references-grid,
    .case-grid,
    .reviews-grid,
    .team-grid,
    .contact-cards-grid,
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .footer-about,
    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .top-bar-info span:not(:first-child) {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .header-cta {
        margin-left: auto;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-container,
    .why-grid,
    .story-grid,
    .form-grid,
    .feature-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-detail-grid.reverse {
        direction: ltr;
    }

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

    .hero-visual {
        display: none;
    }

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

    .pricing-popular {
        transform: none;
    }

    .pricing-popular:hover {
        transform: translateY(-4px);
    }

    .mv-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
        text-align: left !important;
        left: 0 !important;
    }

    .timeline-item::before {
        left: 11px !important;
        right: auto !important;
    }

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

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

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

    .footer-about {
        grid-column: 1 / -1;
    }
}

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

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }

    .hero-content h1 { font-size: 2.25rem; }
    .page-banner h1 { font-size: 2.25rem; }

    .features-grid,
    .testimonial-grid,
    .modules-grid,
    .references-grid,
    .case-grid,
    .reviews-grid,
    .team-grid,
    .contact-cards-grid,
    .offices-grid,
    .pricing-4col,
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

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

    .btn-large {
        width: 100%;
    }

    .header-container {
        gap: 12px;
    }

    .top-bar {
        font-size: 12px;
    }

    .top-bar-links a:not(:last-child) {
        display: none;
    }

    .features,
    .why-hms,
    .integrations,
    .testimonials,
    .pricing-preview,
    .full-pricing,
    .comparison-table-section,
    .faq-section,
    .cta-section,
    .about-story,
    .mission-vision,
    .timeline-section,
    .team-section,
    .awards-section,
    .references-grid-section,
    .case-studies,
    .reviews-wall,
    .contact-cards,
    .contact-form-section,
    .offices-section,
    .feature-detail,
    .additional-modules {
        padding: 60px 0;
    }

    .contact-form {
        padding: 24px;
    }
}
