/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Color Variables */
:root {
    --primary-color: #2684FC;
    --primary-dark: #1e6bd1;
    --primary-light: #60a5fa;
    --secondary-color: #1a1a1a;
    --dark-blue: #1e293b;
    --darker-blue: #0f172a;
    --light-text: #ffffff;
    --medium-text: #64748b;
    --dark-text: #374151;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --purple-color: #8b5cf6;
    --orange-color: #f97316;
    --border-color: #e2e8f0;
    --dark-border: rgba(148, 163, 184, 0.2);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --dark-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5);
    --dark-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6);
    --gradient-primary: linear-gradient(135deg, #2684FC 0%, #60a5fa 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    --gradient-orange: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

/* Typography */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Enhanced Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.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::before {
    left: 100%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
    border-radius: 12px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: rgba(38, 132, 252, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Navigation - FIXED Logo Alignment */
.dynarq-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.dynarq-nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 75px;
    max-width: 1200px;
    margin: 0 auto;
}

/* FIXED: Logo Brand Alignment */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.nav-brand a:hover,
.nav-brand a:focus,
.nav-brand a:visited {
    text-decoration: none;
}

.nav-logo {
    height: 36px;
    width: auto;
    vertical-align: middle;
    display: block;
}

.nav-brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light-text);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: color 0.3s ease;
    text-decoration: none;
    line-height: 1;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.dynarq-nav.scrolled .nav-brand-text {
    color: var(--secondary-color);
    -webkit-text-fill-color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.dynarq-nav.scrolled .nav-link {
    color: var(--secondary-color);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -50px;
    width: 400px;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-radius: 16px;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dropdown-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.dropdown-section a {
    display: block;
    color: var(--medium-text);
    text-decoration: none;
    font-size: 13px;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.dropdown-section a:hover {
    color: var(--primary-color);
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.dynarq-nav.scrolled .nav-mobile-toggle {
    color: var(--secondary-color);
}

/* Homepage Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #1e293b 20%, 
        #2563eb 40%, 
        #1e293b 60%, 
        #0f172a 80%, 
        #1e293b 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding: 120px 0 80px;
    overflow: hidden;
    color: var(--light-text);
}

@keyframes gradientShift {
    0% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
    100% { 
        background-position: 0% 50%; 
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(38, 132, 252, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: gentleFloat 20s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(38, 132, 252, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(16, 185, 129, 0.05) 50%, transparent 70%);
    animation: shimmer 15s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 0.7; transform: translateX(20px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(38, 132, 252, 0.2);
    border: 1px solid rgba(38, 132, 252, 0.3);
    color: var(--primary-light);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--light-text);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    color: var(--light-text);
}

.feature-check {
    color: var(--success-color);
    margin-right: 8px;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-social-proof {
    padding-top: 32px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.social-proof-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.client-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.client-badge {
    background: rgba(100, 116, 139, 0.2);
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Hero Demo */
.hero-right {
    position: relative;
}

.hero-demo {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: var(--dark-shadow-xl);
    padding: 24px;
    max-width: 500px;
    margin-left: auto;
    backdrop-filter: blur(20px);
}

.demo-toggle {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
}

.btn-demo {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: var(--primary-dark);
}

.demo-view {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.demo-hidden {
    display: none;
}

.demo-mockup {
    width: 100%;
    max-width: 300px;
    margin-bottom: 24px;
}

.mockup-header {
    height: 40px;
    background: var(--light-gray);
    border-radius: 8px 8px 0 0;
    margin-bottom: 16px;
}

.ai-header {
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
}

.mockup-content {
    padding: 16px;
    background: var(--light-gray);
    border-radius: 0 0 8px 8px;
}

.mockup-line {
    height: 12px;
    background: rgba(100, 116, 139, 0.3);
    border-radius: 6px;
    margin-bottom: 8px;
}

.mockup-line.long { width: 100%; }
.mockup-line.medium { width: 75%; }
.mockup-line.short { width: 50%; }

.ai-line {
    background: linear-gradient(90deg, rgba(38, 132, 252, 0.3), rgba(16, 185, 129, 0.3));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.demo-label {
    text-align: center;
}

.demo-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--medium-text);
    margin-bottom: 4px;
}

.ai-title {
    color: var(--primary-color);
}

.demo-desc {
    font-size: 12px;
    color: var(--medium-text);
}

.demo-chatbot {
    position: absolute;
    bottom: 16px;
    right: 16px;
    max-width: 200px;
}

.chatbot-bubble {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px;
    border-radius: 12px;
    font-size: 12px;
    box-shadow: var(--shadow-md);
}

.chatbot-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 600;
}

.chatbot-status {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.floating-stats {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.stat-card {
    position: absolute;
    background: var(--white);
    padding: 16px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 80px;
}

.stat-left {
    top: 40%;
    left: -30px;
    transform: translateY(-50%);
}

.stat-right {
    bottom: 30%;
    right: -30px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 10px;
    color: var(--medium-text);
    font-weight: 500;
}

/* About Page - Founder Hero Section */
.founder-hero-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 40%, #2684FC 70%, #60a5fa 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.founder-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    animation: gentleFloat 15s ease-in-out infinite;
}

.founder-hero-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.founder-hero-left {
    position: relative;
}

.founder-image-wrapper {
    position: relative;
    text-align: center;
}

.founder-hero-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.founder-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
}

.founder-hero-role {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-weight: 500;
}

.founder-hero-description {
    margin-bottom: 32px;
}

.founder-hero-description p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 16px;
}

.founder-quote {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 16px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: serif;
}

.founder-quote blockquote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 20px;
}

.founder-hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.founder-hero-stats .stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    min-width: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-hero-stats .stat-item:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

.founder-hero-stats .stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.founder-hero-stats .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.founder-expertise {
    margin-bottom: 32px;
}

.founder-expertise h3 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.founder-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.founder-hero-cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.founder-hero-cta .btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.founder-hero-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.founder-hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Contact Page Hero Section */
.contact-hero-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 40%, #2684FC 70%, #60a5fa 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--light-text);
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    animation: gentleFloat 15s ease-in-out infinite;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-hero-left {
    max-width: 600px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.benefit-icon {
    margin-right: 12px;
    font-size: 18px;
}

.contact-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
}

.contact-stat .stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-stat .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    max-width: 500px;
    margin-left: auto;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--secondary-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(38, 132, 252, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-footer {
    margin-top: 20px;
    text-align: center;
}

.form-footer p {
    font-size: 14px;
    color: var(--medium-text);
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    color: var(--secondary-color);
}

.services-section .section-title {
    color: var(--secondary-color);
}

.services-section .section-subtitle {
    color: var(--medium-text);
}

.services-grid-wrapper {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
    justify-items: center;
}

.service-card {
    background: var(--white);
    padding: 36px;
    border-radius: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    max-width: 350px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.service-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 0 0 10px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.popular-badge {
    background: var(--gradient-success);
}

.enterprise-badge {
    background: var(--gradient-gold);
}

.consulting-badge {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.service-websites {
    border-color: rgba(38, 132, 252, 0.2);
    background: linear-gradient(135deg, rgba(38, 132, 252, 0.02), rgba(255, 255, 255, 1));
}

.service-websites:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(38, 132, 252, 0.15);
}

.service-applications {
    border-color: rgba(16, 185, 129, 0.2);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02), rgba(255, 255, 255, 1));
}

.service-applications:hover {
    border-color: var(--success-color);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.service-automation {
    border-color: rgba(139, 92, 246, 0.2);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.02), rgba(255, 255, 255, 1));
}

.service-automation:hover {
    border-color: var(--purple-color);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.service-automation .service-badge {
    background: var(--gradient-purple);
}

.service-integration {
    border-color: rgba(249, 115, 22, 0.2);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.02), rgba(255, 255, 255, 1));
}

.service-integration:hover {
    border-color: var(--orange-color);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.service-integration .service-badge {
    background: var(--gradient-orange);
}

.service-consulting {
    border-color: rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02), rgba(255, 255, 255, 1));
}

.service-consulting:hover {
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.service-enterprise {
    border-color: rgba(251, 191, 36, 0.2);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.02), rgba(255, 255, 255, 1));
}

.service-enterprise:hover {
    border-color: #fbbf24;
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    text-align: center;
    width: 100%;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    line-height: 1.3;
    text-align: center;
}

.service-description {
    color: var(--medium-text);
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.service-features li {
    color: var(--medium-text);
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
    padding-left: 4px;
}

.service-pricing {
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    margin-bottom: 24px;
    text-align: center;
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 4px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 1.2rem;
    color: var(--medium-text);
    margin-left: 4px;
}

.enterprise-price .price-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-websites .price, 
.service-websites .price-currency { color: var(--primary-color); }

.service-applications .price, 
.service-applications .price-currency { color: var(--success-color); }

.service-automation .price, 
.service-automation .price-currency { color: var(--purple-color); }

.service-integration .price, 
.service-integration .price-currency { color: var(--orange-color); }

.service-consulting .price, 
.service-consulting .price-currency { color: #6366f1; }

.price-label {
    font-size: 12px;
    color: var(--medium-text);
    font-weight: 500;
}

.btn-service {
    width: 100%;
    padding: 14px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-service::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-service:hover::before {
    left: 100%;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.service-applications .btn-service {
    background: var(--gradient-success);
}

.service-automation .btn-service {
    background: var(--gradient-purple);
}

.service-integration .btn-service {
    background: var(--gradient-orange);
}

.service-consulting .btn-service {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.btn-enterprise {
    background: var(--gradient-gold);
}

.services-cta {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.cta-text {
    color: var(--medium-text);
    margin-bottom: 20px;
    font-size: 16px;
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background: var(--light-gray);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.story-timeline {
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
    padding-left: 60px;
}

.timeline-marker {
    position: absolute;
    left: 12px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--medium-text);
    line-height: 1.6;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.story-stat {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.story-stat:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.story-stat h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.story-stat p {
    color: var(--medium-text);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.value-card {
    background: var(--white);
    padding: 36px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.value-description {
    color: var(--medium-text);
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--darker-blue) 0%, #1e1b4b 50%, var(--darker-blue) 100%);
    color: var(--light-text);
}

.why-choose-section .section-title {
    color: var(--light-text);
}

.why-choose-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    background: var(--success-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--light-text);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 14px;
}

.why-choose-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--light-text);
}

.guarantee-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

/* Why Different Section */
.why-different-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--darker-blue) 0%, #1e1b4b 50%, var(--darker-blue) 100%);
    color: var(--light-text);
}

.why-different-section .section-title {
    color: var(--light-text);
}

.why-different-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.why-different-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.differences-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.difference-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.difference-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.difference-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 8px;
}

.difference-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.why-different-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 24px;
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-label {
    font-weight: 600;
    color: var(--light-text);
}

.traditional {
    color: #fca5a5;
    text-align: center;
}

.dynarq {
    color: var(--success-color);
    text-align: center;
    font-weight: 600;
}

.guarantee-highlight {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success-color);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
}

.guarantee-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.guarantee-highlight h3 {
    color: var(--light-text);
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.guarantee-highlight p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

.signature {
    color: var(--success-color);
    font-size: 14px;
    font-weight: 600;
}

/* Contact Methods Section */
.contact-methods-section {
    padding: 120px 0;
    background: var(--white);
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-method {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.method-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-method h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.contact-method p {
    color: var(--medium-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.method-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* FAQ Section */
.contact-faq-section {
    padding: 120px 0;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--medium-text);
    line-height: 1.6;
}

/* Technology Section */
.tech-section {
    padding: 120px 0;
    background: var(--white);
    color: var(--secondary-color);
}

.tech-section .section-title {
    color: var(--secondary-color);
}

.tech-section .section-subtitle {
    color: var(--medium-text);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.tech-card {
    background: var(--white);
    padding: 36px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tech-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.tech-list {
    list-style: none;
    text-align: left;
}

.tech-list li {
    color: var(--medium-text);
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Final CTA Section */
.final-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--success-color) 100%);
    color: var(--white);
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-cta-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cta-social-proof {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer-section {
    background: var(--darker-blue);
    color: var(--light-text);
    padding: 100px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo-img {
    height: 32px;
    width: auto;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light-text);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--light-text);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--primary-color);
}

.contact-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .founder-hero-content {
        grid-template-columns: 300px 1fr;
        gap: 60px;
    }
    
    .founder-hero-image {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 10px;
    }
    
    .service-card {
        max-width: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-left {
        left: 10px;
    }
    
    .stat-right {
        right: 10px;
    }
    
    .founder-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .founder-hero-image {
        width: 220px;
        height: 220px;
    }
    
    .founder-hero-title {
        font-size: 2.5rem;
    }
    
    .founder-hero-stats {
        justify-content: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-different-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 8px;
    }
    
    .comparison-label {
        font-weight: 700;
        margin-bottom: 4px;
    }
    
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-stats {
        justify-content: center;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .services-section,
    .why-choose-section,
    .tech-section,
    .final-cta-section,
    .footer-section {
        padding: 80px 0;
    }
    
    .service-card {
        padding: 28px;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .founder-hero-section {
        padding: 100px 0 80px;
    }
    
    .founder-hero-image {
        width: 200px;
        height: 200px;
    }
    
    .founder-hero-title {
        font-size: 2rem;
    }
    
    .founder-hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .founder-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-hero-section {
        padding: 100px 0 80px;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-stats {
        flex-direction: column;
        align-items: center;
    }
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--light-gray);
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 4rem;
    margin-bottom: 32px;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.thank-you-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.thank-you-subtitle {
    font-size: 1.25rem;
    color: var(--medium-text);
    margin-bottom: 40px;
    line-height: 1.6;
}

.thank-you-details {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.detail-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.detail-icon {
    font-size: 1.5rem;
    margin-right: 12px;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.thank-you-note {
    background: rgba(38, 132, 252, 0.05);
    border: 2px solid rgba(38, 132, 252, 0.1);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-note p {
    margin-bottom: 8px;
    color: var(--medium-text);
}

.thank-you-note p:first-child {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.social-follow {
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.social-follow p {
    color: var(--medium-text);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .thank-you-title {
        font-size: 2.5rem;
    }
    
    .thank-you-details {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .thank-you-section {
        padding: 100px 0 60px;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .thank-you-subtitle {
        font-size: 1rem;
    }
}


/* Additional animations for better UX */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.service-card:nth-child(1) { animation: float 6s ease-in-out infinite; }
.service-card:nth-child(2) { animation: float 6s ease-in-out infinite 0.5s; }
.service-card:nth-child(3) { animation: float 6s ease-in-out infinite 1s; }
.service-card:nth-child(4) { animation: float 6s ease-in-out infinite 1.5s; }
.service-card:nth-child(5) { animation: float 6s ease-in-out infinite 2s; }
.service-card:nth-child(6) { animation: float 6s ease-in-out infinite 2.5s; }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-left > * {
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.4s; }
.hero-left > *:nth-child(5) { animation-delay: 0.5s; }
.hero-left > *:nth-child(6) { animation-delay: 0.6s; }

