/* ===================================
   SkyLIMS Landing Page - Premium Design
   =================================== */

/* CSS Variables */
:root {
    --primary-900: #0c1929;
    --primary-800: #0f2744;
    --primary-700: #1e3a5f;
    --primary-600: #1e40af;
    --primary-500: #2563eb;
    --primary-400: #3b82f6;
    --primary-300: #60a5fa;
    --primary-200: #93c5fd;
    --primary-100: #dbeafe;
    --primary-50: #eff6ff;

    --accent-500: #f59e0b;
    --accent-400: #fbbf24;

    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;

    --success: #10b981;
    --warning: #f59e0b;

    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: white;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* Typography */
h1, h2, h3, h4 {
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; font-weight: 600; }

.gradient-text {
    background: linear-gradient(135deg, var(--primary-400), var(--accent-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--primary-500);
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary-500);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.section-label.light {
    color: var(--accent-400);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin-top: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn svg { flex-shrink: 0; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-white {
    background: white;
    color: var(--primary-600);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-nav { padding: 10px 20px; font-size: 0.875rem; border-radius: 10px; }
.btn-full { width: 100%; }

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 14px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 58px;
    width: auto;
    transition: var(--transition);
    background: white;
    padding: 8px 14px;
    border-radius: 8px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 1.375rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

.navbar.scrolled .logo-text {
    color: var(--gray-900);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links > li > a:not(.btn) {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.nav-links > li > a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-400);
    transition: width 0.3s ease;
}

.nav-links > li > a:not(.btn):hover::after {
    width: 100%;
}

.navbar.scrolled .nav-links > li > a:not(.btn) {
    color: var(--gray-700);
}

.navbar .btn-nav {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.navbar.scrolled .btn-nav {
    background: var(--primary-500);
    color: white;
    border: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--gray-700);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 40%, var(--primary-700) 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(59, 130, 246, 0.3), transparent),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(251, 191, 36, 0.15), transparent);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-500);
    top: -200px;
    right: -100px;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-400);
    bottom: 100px;
    left: -100px;
    opacity: 0.2;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-400);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero h1 {
    color: white;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    text-align: left;
}

.stat-value {
    display: flex;
    align-items: baseline;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-400);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Visual - Dashboard Mockup */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }

.mockup-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.mockup-content {
    display: flex;
    min-height: 320px;
}

.mockup-sidebar {
    width: 50px;
    background: rgba(0, 0, 0, 0.15);
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-item {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.sidebar-item.active {
    background: var(--primary-500);
}

.mockup-main {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mini-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-card-icon.blue { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.mini-card-icon.green { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.mini-card-icon.amber { background: rgba(251, 191, 36, 0.2); color: #fbbf24; }

.mini-card-info {
    display: flex;
    flex-direction: column;
}

.mini-card-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.mini-card-label {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
}

.mockup-chart {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
    flex: 1;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100%;
    padding-top: 10px;
}

.bar {
    flex: 1;
    height: var(--height);
    background: linear-gradient(to top, var(--primary-500), var(--primary-400));
    border-radius: 4px 4px 0 0;
    transition: var(--transition);
}

.bar:hover {
    background: linear-gradient(to top, var(--accent-500), var(--accent-400));
}

.mockup-table {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 10px 14px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-row.header {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-size: 0.625rem;
    letter-spacing: 0.05em;
}

.table-row:last-child {
    border-bottom: none;
}

.status {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 600;
}

.status.approved {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.status.pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-800);
    animation: float 4s ease-in-out infinite;
}

.floating-element svg {
    color: var(--success);
}

.float-1 {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
}

.float-2 {
    bottom: 60px;
    left: -40px;
    animation-delay: 2s;
}

.float-2 svg {
    color: var(--primary-500);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ===================================
   TRUSTED BY SECTION
   =================================== */
.trusted-by {
    padding: 48px 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.trusted-label {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-600);
}

.trust-item svg {
    color: var(--primary-500);
}

.trust-item span {
    font-size: 0.875rem;
    font-weight: 600;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-lead {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrap svg {
    width: 22px;
    height: 22px;
    color: var(--primary-600);
}

.feature-content h4 {
    margin-bottom: 4px;
    color: var(--gray-900);
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin: 0;
}

/* About Visual */
.about-visual {
    position: relative;
}

.visual-card {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.experience-badge {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.exp-number {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.03em;
}

.exp-text {
    display: block;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    line-height: 1.4;
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.v-stat {
    text-align: center;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.v-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.v-stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: 100px 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-200);
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.feature-card-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   INDUSTRIES SECTION
   =================================== */
.industries {
    padding: 100px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.industry-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    background: white;
}

.industry-card:hover {
    border-color: var(--primary-300);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.08);
}

.industry-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-50);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.industry-card:hover .industry-icon {
    background: var(--primary-500);
    transform: scale(1.05);
}

.industry-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-600);
    transition: var(--transition);
}

.industry-card:hover .industry-icon svg {
    color: white;
}

.industry-card h3 {
    margin-bottom: 12px;
    color: var(--gray-900);
}

.industry-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-900), var(--primary-900));
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center right, rgba(59, 130, 246, 0.15), transparent 70%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.benefits-content h2 {
    color: white;
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent-400);
}

.benefit-text h4 {
    color: white;
    margin-bottom: 6px;
}

.benefit-text p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

/* Benefits Visual */
.benefits-visual {
    position: relative;
}

.benefits-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
}

.benefits-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.b-stat {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.b-stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.b-stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 8px;
}

/* ===================================
   TESTIMONIAL SECTION
   =================================== */
.testimonial {
    padding: 100px 0;
    background: linear-gradient(180deg, white 0%, var(--gray-50) 100%);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 56px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    position: relative;
    border: 1px solid var(--gray-100);
}

.quote-mark {
    font-size: 8rem;
    color: var(--primary-100);
    line-height: 0.5;
    position: absolute;
    top: 30px;
    left: 50px;
    font-family: Georgia, serif;
}

blockquote {
    font-size: 1.25rem;
    color: var(--gray-700);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    color: var(--gray-900);
    font-size: 1rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top left, rgba(255,255,255,0.1), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(251, 191, 36, 0.15), transparent 50%);
}

.cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.cta h2 {
    color: white;
    margin-bottom: 16px;
}

.cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-500);
    font-size: 1.0625rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--primary-300);
    background: var(--primary-50);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.method-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary-600);
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.method-value {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-top: 2px;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 44px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    color: var(--gray-900);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-400);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-100);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    margin-top: 8px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--gray-900);
    padding: 64px 0 32px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gray-800);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    max-width: 320px;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col a {
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

.footer-location {
    color: var(--gray-400);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .benefits-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-visual {
        order: -1;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        max-width: 320px;
        background: white;
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 28px;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links > li > a:not(.btn) {
        color: var(--gray-700);
        font-size: 1.125rem;
    }

    .nav-links .btn-nav {
        background: var(--primary-500);
        color: white;
        width: 100%;
        justify-content: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .features-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .trust-indicators {
        gap: 24px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .benefits-stat-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .testimonial-card {
        padding: 36px 24px;
    }

    .quote-mark {
        font-size: 5rem;
        top: 15px;
        left: 20px;
    }

    blockquote {
        font-size: 1.0625rem;
    }

    .visual-card {
        padding: 36px 28px;
    }

    .exp-number {
        font-size: 4rem;
    }

    .visual-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px;
}

.form-success svg {
    margin-bottom: 16px;
}

.form-success h3 {
    color: var(--success);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-600);
    margin: 0;
}
