/* ============================================
   SKIEN eCOMMERCE - Multi-Tenant Platform
   .NET 10 | ASP.NET Core MVC
   Theme: Same palette as Skien.WebSite
   Primary: #ed1c24 | Navy: #252d47
   ============================================ */

/* --- Font Face --- */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* --- CSS Variables --- */
:root {
    --primary: #ed1c24;
    --primary-dark: #c41019;
    --primary-light: #ff4a50;
    --navy: #252d47;
    --navy-light: #2f3a5c;
    --dark: #1a1a2e;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    --font-family: 'Montserrat', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.15);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.18);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-top: 0;
}

a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); text-decoration: none; }
img { max-width: 100%; height: auto; }

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

/* --- Top Bar --- */
.top-bar { background: var(--navy); padding: 8px 0; font-size: 13px; color: rgba(255,255,255,0.7); }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left span { margin-right: 24px; }
.top-bar-left i { margin-right: 6px; color: var(--primary); }
.top-bar-right a { color: rgba(255,255,255,0.6); margin-left: 14px; font-size: 13px; transition: var(--transition); }
.top-bar-right a:hover { color: var(--primary); }

/* --- Header / Navbar --- */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.navbar-brand .logo { height: 45px; transition: var(--transition); }
.nav-menu { list-style: none; display: flex; align-items: center; margin: 0; padding: 0; gap: 4px; }
.nav-menu li a { color: var(--gray-700); font-size: 14px; font-weight: 500; padding: 8px 18px; border-radius: var(--radius-sm); transition: var(--transition); display: block; }
.nav-menu li a:hover, .nav-menu li a.active { color: var(--primary); background: rgba(237, 28, 36, 0.06); }

.btn-nav {
    background: var(--primary) !important; color: var(--white) !important;
    padding: 10px 24px !important; border-radius: 50px !important;
    font-weight: 600 !important; font-size: 13px !important;
    letter-spacing: 0.3px; margin-left: 8px !important;
}
.btn-nav:hover { background: var(--primary-dark) !important; color: var(--white) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(237, 28, 36, 0.3); }

/* Mobile Nav Toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* --- Section Styles --- */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-gray { background: var(--gray-100); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-gradient { background: linear-gradient(135deg, var(--navy) 0%, #1a2038 100%); color: var(--white); }

.section-header { text-align: center; max-width: 650px; margin: 0 auto 60px; }
.section-header .badge-label, .badge-label {
    display: inline-block; background: rgba(237, 28, 36, 0.1); color: var(--primary);
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.section-dark .section-header .badge-label { background: rgba(237, 28, 36, 0.2); }
.section-header h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.section-header p { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-bottom: 0; }
.section-dark .section-header p { color: rgba(255,255,255,0.65); }

/* --- Buttons --- */
.btn-primary-custom {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: var(--white); font-family: var(--font-family);
    font-size: 14px; font-weight: 600; padding: 14px 32px; border: none;
    border-radius: 50px; cursor: pointer; transition: var(--transition); letter-spacing: 0.3px;
}
.btn-primary-custom:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(237, 28, 36, 0.35); }

.btn-outline-custom {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--navy); font-family: var(--font-family);
    font-size: 14px; font-weight: 600; padding: 14px 32px;
    border: 2px solid var(--gray-300); border-radius: 50px; cursor: pointer; transition: var(--transition);
}
.btn-outline-custom:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); color: var(--navy); font-family: var(--font-family);
    font-size: 14px; font-weight: 600; padding: 14px 32px; border: none;
    border-radius: 50px; cursor: pointer; transition: var(--transition);
}
.btn-white:hover { background: var(--gray-100); color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-sm { padding: 10px 24px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 15px; }

/* --- Hero Section --- */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2038 50%, #0d1525 100%);
    padding: 120px 0 100px; overflow: hidden; min-height: 90vh;
    display: flex; align-items: center;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: ''; position: absolute; bottom: -30%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { color: var(--white); }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(237, 28, 36, 0.15); color: var(--primary-light);
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    padding: 8px 18px; border-radius: 50px; margin-bottom: 24px;
    border: 1px solid rgba(237, 28, 36, 0.25);
}
.hero-badge i { font-size: 10px; }

.hero h1 { font-size: 52px; font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero h1 .highlight { color: var(--primary); }
.hero p { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 500px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 40px; margin-top: 50px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat { text-align: left; }
.hero-stat .number { font-size: 32px; font-weight: 800; color: var(--white); display: block; line-height: 1; margin-bottom: 4px; }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }

/* Hero Visual / Dashboard Mockup */
.hero-visual { position: relative; }
.dashboard-mockup {
    background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg); transition: var(--transition);
}
.dashboard-mockup:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }

.mockup-header { background: var(--gray-100); padding: 12px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--gray-200); }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green { background: #28c840; }
.mockup-url { flex: 1; background: var(--white); border-radius: 4px; padding: 4px 12px; font-size: 11px; color: var(--gray-500); margin-left: 8px; }

.mockup-body { padding: 24px; background: var(--gray-100); min-height: 360px; }
.mockup-sidebar { display: grid; grid-template-columns: 200px 1fr; gap: 20px; min-height: 320px; }
.mockup-nav { background: var(--white); border-radius: var(--radius-sm); padding: 16px; }
.mockup-nav-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 500; color: var(--gray-600); margin-bottom: 4px; transition: var(--transition); }
.mockup-nav-item.active { background: rgba(237, 28, 36, 0.08); color: var(--primary); }
.mockup-nav-item i { width: 16px; text-align: center; font-size: 13px; }
.mockup-content { display: flex; flex-direction: column; gap: 16px; }
.mockup-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mockup-stat-card { background: var(--white); border-radius: var(--radius-sm); padding: 16px; }
.mockup-stat-card .stat-label { font-size: 11px; color: var(--gray-500); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.mockup-stat-card .stat-value { font-size: 22px; font-weight: 800; color: var(--navy); }
.mockup-stat-card .stat-change { font-size: 11px; font-weight: 600; margin-top: 4px; }
.mockup-stat-card .stat-change.up { color: #28a745; }
.mockup-chart { background: var(--white); border-radius: var(--radius-sm); padding: 20px; flex: 1; }
.mockup-chart-title { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 120px; }
.chart-bar { flex: 1; border-radius: 4px 4px 0 0; transition: var(--transition); min-width: 0; }
.chart-bar:hover { opacity: 0.8; }

/* Floating elements */
.float-card {
    position: absolute; background: var(--white); border-radius: var(--radius); padding: 14px 18px;
    box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
    animation: float 4s ease-in-out infinite; z-index: 10;
}
.float-card-1 { top: -10px; right: -20px; animation-delay: 0s; }
.float-card-2 { bottom: 40px; left: -30px; animation-delay: 2s; }
.float-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--white); }
.float-icon.green { background: #28a745; }
.float-icon.blue { background: #007bff; }
.float-card .float-label { font-size: 11px; color: var(--gray-500); font-weight: 500; }
.float-card .float-value { font-size: 16px; font-weight: 700; color: var(--navy); }

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

/* --- Trusted By / Logos --- */
.trusted-section { padding: 50px 0; background: var(--white); border-bottom: 1px solid var(--gray-200); }
.trusted-label { text-align: center; font-size: 13px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; }
.trusted-logos { display: flex; justify-content: center; align-items: center; gap: 50px; flex-wrap: wrap; }
.trusted-logos .logo-item { font-size: 20px; font-weight: 700; color: var(--gray-400); transition: var(--transition); opacity: 0.5; }
.trusted-logos .logo-item:hover { color: var(--gray-600); opacity: 0.8; }

/* Client Logos Grid */
.clients-marquee { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px; }
.client-logo-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 16px 20px; display: flex; align-items: center; justify-content: center; min-width: 140px; height: 80px; transition: var(--transition); }
.client-logo-item:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateY(-2px); }
.client-logo-item img { max-height: 45px; max-width: 120px; object-fit: contain; filter: grayscale(100%); opacity: 0.6; transition: var(--transition); }
.client-logo-item:hover img { filter: grayscale(0%); opacity: 1; }

/* Technology Logos Scroll */
.tech-logos-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px; }
.tech-logo-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 12px 16px; display: flex; align-items: center; justify-content: center; width: 90px; height: 60px; transition: var(--transition); }
.tech-logo-item:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.tech-logo-item img { max-height: 35px; max-width: 65px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.6; transition: var(--transition); }
.tech-logo-item:hover img { opacity: 1; }

/* Product/Ecommerce Visual Images */
.feature-detail-visual img { max-width: 90%; border-radius: var(--radius); }
.highlights-visual img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* --- Features Section --- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card {
    background: var(--white); padding: 36px 30px; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary); transform: scaleX(0); transition: var(--transition); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon { width: 56px; height: 56px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; transition: var(--transition); }
.feature-icon.red { background: rgba(237, 28, 36, 0.1); color: var(--primary); }
.feature-icon.blue { background: rgba(0, 123, 255, 0.1); color: #007bff; }
.feature-icon.green { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.feature-icon.purple { background: rgba(111, 66, 193, 0.1); color: #6f42c1; }
.feature-icon.orange { background: rgba(6, 182, 212, 0.1); color: #06b6d4; }
.feature-icon.teal { background: rgba(32, 201, 151, 0.1); color: #20c997; }

.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 0; }

/* --- How It Works --- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 40px; left: 15%; right: 15%; height: 2px; background: linear-gradient(to right, var(--primary), var(--gray-300), var(--primary)); opacity: 0.3; }
.step-card { text-align: center; position: relative; z-index: 2; }
.step-number {
    width: 80px; height: 80px; border-radius: 50%; background: var(--white);
    border: 3px solid var(--primary); display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 800; color: var(--primary); margin: 0 auto 20px;
    position: relative; transition: var(--transition);
}
.step-card:hover .step-number { background: var(--primary); color: var(--white); transform: scale(1.05); }
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* --- Platform Highlights --- */
.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.highlights-content { padding-right: 20px; }
.highlights-content h2 { font-size: 34px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.highlights-content > p { font-size: 15px; color: var(--gray-600); margin-bottom: 30px; }
.highlight-list { list-style: none; padding: 0; margin: 0 0 32px; }
.highlight-list li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; font-size: 14px; color: var(--gray-700); }
.highlight-list li .check-icon { width: 24px; height: 24px; min-width: 24px; border-radius: 50%; background: rgba(40, 167, 69, 0.12); color: #28a745; display: flex; align-items: center; justify-content: center; font-size: 11px; margin-top: 2px; }

/* --- Pricing Section --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: start; }
.pricing-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px; border: 1px solid var(--gray-200); transition: var(--transition); position: relative; text-align: center; }
.pricing-card.featured { border-color: var(--primary); transform: scale(1.05); box-shadow: var(--shadow-lg); }
.pricing-card.featured .pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--white); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 5px 18px; border-radius: 50px; }
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-4px); }
.pricing-plan { font-size: 13px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.pricing-card h3 { font-size: 22px; margin-bottom: 8px; }
.pricing-card .price { font-size: 48px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.pricing-card .price span { font-size: 16px; font-weight: 500; color: var(--gray-500); }
.pricing-card .price-period { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; }
.pricing-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { font-size: 12px; color: #28a745; }
.pricing-features li i.fa-times { color: var(--gray-400); }
.pricing-card .btn-primary-custom, .pricing-card .btn-outline-custom { width: 100%; justify-content: center; }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); }
.testimonial-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.testimonial-stars { margin-bottom: 16px; color: #ffc107; font-size: 14px; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--white); }
.testimonial-author .name { font-size: 14px; font-weight: 600; color: var(--white); }
.testimonial-author .role { font-size: 12px; color: rgba(255,255,255,0.5); }

/* --- CTA Section --- */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, #1a2038 50%, var(--navy-light) 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(237,28,36,0.1) 0%, transparent 70%); border-radius: 50%; }
.cta-section::after { content: ''; position: absolute; bottom: -40%; right: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(237,28,36,0.06) 0%, transparent 70%); border-radius: 50%; }
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { font-size: 38px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 550px; margin: 0 auto 32px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* --- Multi-Tenant Section --- */
.tenant-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tenant-feature { display: flex; gap: 16px; padding: 24px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); transition: var(--transition); }
.tenant-feature:hover { box-shadow: var(--shadow); border-color: transparent; }
.tenant-feature-icon { width: 48px; height: 48px; min-width: 48px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.tenant-feature h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.tenant-feature p { font-size: 13px; color: var(--gray-600); margin-bottom: 0; line-height: 1.6; }

/* --- Integration Logos --- */
.integrations-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 40px; }
.integration-badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 50px; padding: 10px 20px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8); transition: var(--transition); }
.integration-badge:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.integration-badge i { font-size: 16px; color: var(--primary-light); }

/* --- Contact Section --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-card { display: flex; gap: 16px; margin-bottom: 30px; }
.contact-info-icon { width: 50px; height: 50px; min-width: 50px; border-radius: var(--radius); background: rgba(237, 28, 36, 0.1); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-info-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--gray-600); margin-bottom: 0; }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.contact-form h3 { font-size: 22px; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-control-custom { width: 100%; padding: 12px 16px; font-family: var(--font-family); font-size: 14px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); transition: var(--transition); background: var(--white); color: var(--gray-800); }
.form-control-custom:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.1); }
textarea.form-control-custom { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* --- Page Hero --- */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, #1a2038 100%); padding: 120px 0 70px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: 42px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 550px; margin: 0 auto; }
.breadcrumb-custom { display: flex; justify-content: center; gap: 8px; margin-top: 20px; font-size: 14px; }
.breadcrumb-custom a { color: rgba(255,255,255,0.5); }
.breadcrumb-custom span { color: rgba(255,255,255,0.3); }
.breadcrumb-custom .current { color: var(--primary); }

/* --- Features Detail --- */
.features-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.features-detail-grid:last-child { margin-bottom: 0; }
.features-detail-grid.reverse { direction: rtl; }
.features-detail-grid.reverse > * { direction: ltr; }
.feature-detail-content h3 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.feature-detail-content p { font-size: 15px; color: var(--gray-600); margin-bottom: 24px; line-height: 1.7; }
.feature-detail-list { list-style: none; padding: 0; margin: 0; }
.feature-detail-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--gray-700); }
.feature-detail-list li i { color: var(--primary); font-size: 12px; width: 20px; }
.feature-detail-visual { background: var(--gray-100); border-radius: var(--radius-lg); padding: 40px; display: flex; align-items: center; justify-content: center; min-height: 350px; position: relative; overflow: hidden; }
.feature-visual-icon { font-size: 120px; color: var(--gray-300); opacity: 0.4; }

/* --- FAQ --- */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--gray-300); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--navy); transition: var(--transition); background: var(--white); }
.faq-question:hover { color: var(--primary); }
.faq-question i { font-size: 14px; color: var(--gray-500); transition: var(--transition); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { padding: 0 24px 20px; max-height: 300px; }
.faq-answer p { font-size: 14px; line-height: 1.7; color: var(--gray-600); margin: 0; }

/* --- Stats --- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item .stat-number { font-size: 42px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.stat-item .stat-label { font-size: 14px; color: var(--gray-600); font-weight: 500; }
.section-dark .stat-item .stat-label { color: rgba(255,255,255,0.6); }

/* --- Team --- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.team-card { text-align: center; background: var(--white); border-radius: var(--radius-lg); padding: 30px 20px; border: 1px solid var(--gray-200); transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--navy)); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; color: var(--white); }
.team-card h4 { font-size: 16px; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--primary); font-weight: 500; }

/* --- Map --- */
.map-container { width: 100%; height: 350px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-top: 40px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* --- Footer --- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.65); }
.footer-top { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
.footer-newsletter-text { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-newsletter { display: flex; gap: 0; }
.footer-newsletter input { flex: 1; padding: 10px 14px; font-size: 13px; border: 1px solid rgba(255,255,255,0.15); border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm); background: rgba(255,255,255,0.05); color: var(--white); font-family: var(--font-family); }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter input:focus { outline: none; border-color: var(--primary); }
.footer-newsletter button { padding: 10px 16px; background: var(--primary); color: var(--white); border: none; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; cursor: pointer; transition: var(--transition); }
.footer-newsletter button:hover { background: var(--primary-dark); }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; margin: 0; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--primary); }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 40px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 600px; margin: 0 auto; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .highlights-grid, .features-detail-grid { grid-template-columns: 1fr; }
    .features-detail-grid.reverse { direction: ltr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-toggle { display: flex; }
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; box-shadow: var(--shadow-md); gap: 0; }
    .nav-menu.active { display: flex; }
    .nav-menu li a { padding: 12px 16px; width: 100%; }
    .btn-nav { margin-left: 0 !important; margin-top: 10px !important; text-align: center; }
    .hero { padding: 80px 0 60px; min-height: auto; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 15px; }
    .hero-stats { gap: 24px; }
    .hero-stat .number { font-size: 24px; }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 28px; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .steps-grid::before { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .tenant-features { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
    .cta-section h2 { font-size: 28px; }
    .page-hero { padding: 80px 0 50px; }
    .page-hero h1 { font-size: 32px; }
    .dashboard-mockup { transform: none; }
    .dashboard-mockup:hover { transform: none; }
    .mockup-sidebar { grid-template-columns: 1fr; }
    .mockup-nav { display: none; }
    .float-card { display: none; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .hero-stat { flex: 1; min-width: 80px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .mockup-stat-row { grid-template-columns: 1fr; }
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
