/* ==========================================
   AWANTIS - Premium AI Automation Website
   ========================================== */

/* Root Variables */
:root {
    /* Professional Color Palette */
    --primary: #1A365D;
    --primary-dark: #142a48;
    --primary-light: #2c4a73;
    --secondary: #0066CC;
    --accent: #0D9488;
    --success: #0D9488;
    
    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1A365D 0%, #0066CC 100%);
    --gradient-subtle: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    --gradient-light: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    
    /* Shadows - Premium elevation */
    --shadow-xs: 0 0 0 1px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-premium: 0 30px 60px -15px rgba(26, 54, 93, 0.15);
    --shadow-card: 0 0 20px 0 rgba(0, 0, 0, 0.05), 0 20px 40px -20px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: 120px 0;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Abstract Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(26, 54, 93, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(13, 148, 136, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(20px, 3vw, 32px);
}

p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 4px 12px 0 rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    min-width: 150px;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--gray-900);
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 60px;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
    padding: 4px 0;
    letter-spacing: -0.2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: #0066CC;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 16px;
    min-width: 250px;
    justify-content: flex-end;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gray-700);
    margin: 3px 0;
    transition: var(--transition);
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #0066CC;
    color: var(--white);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #0052A3;
    box-shadow: var(--shadow-xl), var(--shadow-premium), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-ghost {
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
    border-radius: 14px;
}

/* ==========================================
   TRUST BAR SECTION
   ========================================== */

.trust-bar {
    padding: 100px 0 40px;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

/* Abstract 3D shapes in background */
.trust-bar::before,
.trust-bar::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05) 0%, rgba(0, 102, 204, 0.05) 100%);
    filter: blur(40px);
}

.trust-bar::before {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.trust-bar::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
}

.trust-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.trust-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--white);
    border-radius: 100px;
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    font-weight: 500;
}

.stars {
    color: #fbbf24;
    filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.4));
}

.trust-subtitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.logo-item {
    padding: 14px 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    color: var(--gray-500);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.logo-item:hover {
    color: var(--gray-700);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    padding: 80px 0 100px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Premium abstract background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(ellipse at top left, rgba(26, 54, 93, 0.03) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(0, 102, 204, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

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

.hero-title {
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subdescription {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 56px;
    font-style: italic;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Promise Grid - Single Line Layout */
.promise-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    margin: 0 -100px 56px;
    padding: 40px 80px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(26, 54, 93, 0.08);
    animation: fadeInUp 0.8s ease-out 0.3s both;
    flex-wrap: nowrap;
    overflow-x: auto;
    border: 1px solid rgba(26, 54, 93, 0.06);
}

.promise-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 32px 28px;
    background: var(--white);
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(26, 54, 93, 0.08);
    white-space: nowrap;
}

.promise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 16px 16px 0 0;
    transform: scaleX(0);
    transition: var(--transition);
}

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

.promise-item:hover::before {
    transform: scaleX(1);
}

.promise-metric {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    display: block;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.promise-label {
    font-size: 14px;
    white-space: normal;
    color: var(--gray-600);
    line-height: 1.5;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-footnote {
    font-size: 16px;
    color: var(--gray-500);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* ==========================================
   RECOGNITION & RESOLUTION SECTION
   ========================================== */

.recognition {
    padding: var(--section-padding);
    background: #F8FAFC;
    position: relative;
}

.recognition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.recognition-column,
.resolution-column {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.recognition-column::before,
.resolution-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.recognition-column:hover,
.resolution-column:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-premium);
}

.recognition-column h2,
.resolution-column h2 {
    margin-bottom: 24px;
    font-size: 32px;
    color: var(--gray-900);
}

.recognition-column p,
.resolution-column p {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.8;
}

.resolution-highlight {
    font-weight: 600;
    color: #0D9488;
    font-size: 19px;
    margin-top: 24px;
}

/* ==========================================
   SOLUTIONS SECTION
   ========================================== */

.solutions {
    padding: var(--section-padding);
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    margin-bottom: 24px;
    color: var(--gray-900);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.solution-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.solution-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-premium);
    border-color: #0066CC;
}

.solution-card:hover::after {
    bottom: -50px;
    right: -50px;
    opacity: 0.1;
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: var(--shadow-lg);
}

.solution-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--gray-900);
}

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

.solutions-footer {
    text-align: center;
    font-size: 17px;
    color: var(--gray-500);
    font-style: italic;
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */

.benefits {
    padding: var(--section-padding);
    background: #F8FAFC;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-item {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-xl);
}

.benefit-item:hover::before {
    transform: scaleY(1);
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--gray-900);
}

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

/* ==========================================
   INDUSTRIES SECTION
   ========================================== */

.industries {
    padding: var(--section-padding);
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.industry-card {
    background: var(--gradient-light);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 54, 93, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-premium);
    background: var(--white);
}

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

.industry-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin: 0 auto 28px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.industry-card:hover .industry-icon {
    transform: rotate(5deg) scale(1.1);
}

.industry-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--gray-900);
}

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

.industries-footer {
    text-align: center;
    font-size: 17px;
    color: var(--gray-500);
    font-style: italic;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */

.process {
    padding: var(--section-padding);
    background: #F8FAFC;
}

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

/* Connecting line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-light) 0%, 
        var(--primary) 50%, 
        var(--primary-light) 100%);
    opacity: 0.3;
    z-index: 0;
}

.process-step {
    position: relative;
    text-align: center;
    z-index: 1;
    background: var(--white);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-premium);
}

.step-marker {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.process-step p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

/* TESTIMONIALS SECTION - Stunning Redesign */
.testimonials {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--primary) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--secondary) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, var(--accent) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-top: 16px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.testimonials-showcase {
    margin-top: 60px;
}

/* Testimonials Rows */
.testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.testimonials-row-2 {
    animation-delay: 0.4s;
}

/* Individual Testimonial Items */
.testimonial-item {
    background: var(--white);
    border: 1px solid rgba(26, 54, 93, 0.08);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-item.featured {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.15);
    transform: scale(1.05);
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
    border-color: var(--accent);
}

.testimonial-item.featured:hover {
    transform: translateY(-8px) scale(1.05);
}

/* Rating Stars */
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating i {
    color: #FFB800;
    font-size: 14px;
}

/* Testimonial Quote */
.testimonial-quote {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 80px;
}

/* Testimonial Meta */
.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(26, 54, 93, 0.08);
}

.testimonial-service {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-impact {
    font-size: 12px;
    color: var(--accent);
    background: rgba(13, 148, 136, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* Small Testimonials Grid */
.testimonials-grid-small {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.testimonial-small {
    background: var(--white);
    border: 1px solid rgba(26, 54, 93, 0.06);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-small::before {
    content: '★★★★★';
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    color: #FFB800;
    letter-spacing: 2px;
}

.testimonial-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.1);
    background: linear-gradient(135deg, var(--white) 0%, rgba(13, 148, 136, 0.03) 100%);
}

.testimonial-small p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-tag {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Stats Bar */
.testimonials-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.2);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq {
    padding: var(--section-padding);
    background: #F8FAFC;
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
    border-color: #0066CC;
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: transparent;
    border: none;
    color: var(--gray-800);
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: #0066CC;
}

.faq-question i {
    font-size: 14px;
    color: var(--gray-400);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #0066CC;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 32px 24px;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 15px;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

/* Abstract shapes */
.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(100px);
}

.cta-section::before {
    width: 500px;
    height: 500px;
    top: -250px;
    left: -250px;
}

.cta-section::after {
    width: 600px;
    height: 600px;
    bottom: -300px;
    right: -300px;
}

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

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--white);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 24px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.cta-highlight {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 32px;
    color: var(--white);
}

.cta-investment-note {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-investment-note p {
    color: var(--white);
    margin-bottom: 8px;
}

.cta-investment-note strong {
    font-size: 20px;
}

.cta-action {
    margin-bottom: 48px;
}

.cta-action .btn {
    background: var(--white);
    color: #0066CC;
    padding: 18px 40px;
    font-size: 17px;
    box-shadow: var(--shadow-xl);
}

.cta-action .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
    color: #1A365D;
}

.cta-promise {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-promise p {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-promise ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 20px auto 24px;
}

.cta-promise ul li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
}

.cta-promise ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
    font-size: 20px;
}

.cta-footnote {
    font-style: italic;
    font-size: 19px;
    font-weight: 600;
    color: var(--white);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--gradient-subtle);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 56px;
    box-shadow: var(--shadow-card);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    font-size: 15px;
    color: var(--gray-800);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066CC;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray-700);
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.form-submit .btn {
    padding: 18px 48px;
    font-size: 17px;
}

.form-success {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05) 0%, rgba(0, 102, 204, 0.05) 100%);
    border: 1px solid #2c4a73;
    border-radius: 16px;
    margin-top: 40px;
}

.form-success h3 {
    color: #1A365D;
    margin-bottom: 16px;
    font-size: 28px;
}

.form-success p {
    font-size: 17px;
    color: var(--gray-700);
}

.form-success a {
    color: #0066CC;
    text-decoration: underline;
    font-weight: 600;
}

/* ==========================================
   FOOTER - STUNNING VISUAL DESIGN
   ========================================== */

.footer {
    position: relative;
    background: linear-gradient(135deg, #1A365D 0%, #0F1824 100%);
    color: var(--white);
    padding: 80px 0 30px;
    overflow: hidden;
    min-height: 450px;
    perspective: 1000px;
}

/* Visual Background Elements */
.footer-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Animated Particles */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #0D9488 0%, #0066CC 100%);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle3D 20s infinite;
    box-shadow: 
        0 0 20px rgba(13, 148, 136, 0.6),
        0 0 40px rgba(13, 148, 136, 0.3),
        0 0 60px rgba(13, 148, 136, 0.1);
    transform-style: preserve-3d;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; width: 8px; height: 8px; filter: blur(0px); }
.particle:nth-child(2) { left: 25%; animation-delay: 2.5s; width: 5px; height: 5px; filter: blur(1px); }
.particle:nth-child(3) { left: 40%; animation-delay: 5s; width: 10px; height: 10px; filter: blur(0.5px); }
.particle:nth-child(4) { left: 55%; animation-delay: 7.5s; width: 6px; height: 6px; filter: blur(2px); }
.particle:nth-child(5) { left: 70%; animation-delay: 10s; width: 12px; height: 12px; filter: blur(0px); }
.particle:nth-child(6) { left: 85%; animation-delay: 12.5s; width: 7px; height: 7px; filter: blur(1.5px); }
.particle:nth-child(7) { left: 30%; animation-delay: 15s; width: 9px; height: 9px; filter: blur(0.3px); }
.particle:nth-child(8) { left: 60%; animation-delay: 17.5s; width: 5px; height: 5px; filter: blur(2.5px); }

@keyframes floatParticle3D {
    0% {
        transform: translateY(100vh) translateZ(0px) rotateX(0deg) rotateY(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    25% {
        transform: translateY(50vh) translateZ(200px) rotateX(180deg) rotateY(90deg) scale(1.2);
    }
    50% {
        transform: translateY(0vh) translateZ(-100px) rotateX(360deg) rotateY(180deg) scale(0.8);
        opacity: 1;
    }
    75% {
        transform: translateY(-50vh) translateZ(150px) rotateX(540deg) rotateY(270deg) scale(1.1);
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) translateZ(0px) rotateX(720deg) rotateY(360deg) scale(0);
        opacity: 0;
    }
}

/* Neural Network SVG */
.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.network-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawLine 20s infinite linear;
}

.network-line:nth-child(2) {
    animation-delay: 5s;
}

.network-line:nth-child(3) {
    animation-delay: 10s;
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 500;
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 0.6;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        stroke-dashoffset: -500;
        opacity: 0;
    }
}

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 0;
}

.footer-center {
    max-width: 800px;
    margin: 0 auto;
}

/* Large Branding */
.footer-brand-large {
    margin-bottom: 40px;
}

.footer-logo-text {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, #0D9488 0%, #0066CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: -2px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2) drop-shadow(0 0 30px rgba(13, 148, 136, 0.4));
    }
}

.footer-tagline-animated {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
}

.footer-tagline-animated p {
    animation: fadeInUp 1s ease-out;
}

/* Footer Email */
.footer-email {
    margin-bottom: 30px;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 500;
    transition: var(--transition);
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.email-link:hover {
    color: #0D9488;
    background: rgba(13, 148, 136, 0.1);
    border-color: #0D9488;
    transform: translateY(-2px);
}

.email-link i {
    font-size: 16px;
}

/* Legal Links */
.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 10px;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #0D9488;
    transition: var(--transition);
}

.legal-link:hover {
    color: #0D9488;
}

.legal-link:hover::after {
    width: 100%;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Copyright */
.footer-copyright {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Gradient Overlay */
.footer-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(0deg, rgba(26, 54, 93, 0.8) 0%, transparent 100%);
    pointer-events: none;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .solutions-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recognition-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .promise-grid {
        flex-wrap: wrap;
    }
    
    .promise-item {
        flex: 1 1 45%;
    }
    
    /* Testimonials Responsive */
    .testimonials-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid-small {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        gap: 40px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Sections */
    section {
        padding: 80px 0;
    }
    
    /* Typography */
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    /* Grids */
    .solutions-grid,
    .industries-grid,
    .testimonials-grid,
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .promise-grid {
        flex-direction: column;
    }
    
    .promise-item {
        width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-logos {
        gap: 16px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials Mobile */
    .testimonials-row {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item.featured {
        transform: scale(1);
    }
    
    .testimonials-grid-small {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .logo-item {
        font-size: 12px;
        padding: 10px 20px;
    }
}