/* Software Audit Website Styles */

/* Basic Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Reset & Variables */
:root {
    --primary-color: #0066cc;
    --primary-dark: #004499;
    --secondary-color: #00a86b;
    --accent-color: #ff6b35;
    --dark-color: #1a1a1a;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
}

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

/* Typography - Cluster-inspired hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

/* Hero headlines - extra bold and large */
h1 { 
    font-size: 3.5rem; 
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

/* Section headlines - prominent and clear */
h2 { 
    font-size: 2.75rem; 
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

/* Subsection headlines */
h3 { 
    font-size: 2rem; 
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1rem;
}

/* Card headlines */
h4 { 
    font-size: 1.25rem; 
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

/* Body text improvements */
p {
    margin-bottom: 1.25rem;
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Lead paragraphs for hero sections */
.hero-subtitle, .section-header p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gray-700);
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Strong emphasis styling */
strong {
    font-weight: 600;
    color: var(--dark-color);
}

.highlight {
    color: var(--primary-color);
}

.highlight-white {
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
    color: white !important;
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-primary::after {
    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.6s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 50%, #1e3a8a 100%);
    color: white !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(59, 130, 246, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover::before {
    opacity: 1;
}

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

.btn-primary:focus {
    outline: none;
    box-shadow: 
        0 16px 48px rgba(59, 130, 246, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 0 0 3px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #1e293b;
    border: 2px solid rgba(226, 232, 240, 0.8);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-color: #3b82f6;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(59, 130, 246, 0.25),
        0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover::after {
    left: 100%;
}

.btn-secondary:focus {
    outline: none;
    box-shadow: 
        0 12px 35px rgba(59, 130, 246, 0.25),
        0 6px 20px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--dark-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--gray-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2.5rem;
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.hero-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.hero-card p {
    margin: 0;
    opacity: 0.9;
    color: var(--white);
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background-color: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 
        0 4px 25px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-features li:last-child {
    border-bottom: none;
}

/* Software Chaos Section */
.software-chaos {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #ffebee 100%);
}

.chaos-problems {
    margin: 3rem 0;
}

.chaos-problem {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #ff6b35;
}

.chaos-problem p {
    margin: 0;
    line-height: 1.6;
}

.consequences {
    margin: 3rem 0;
}

.consequences h3 {
    color: #d32f2f;
    margin-bottom: 2rem;
}

.consequences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.consequence-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
    border: 1px solid rgba(248, 113, 113, 0.2);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 
        0 4px 20px rgba(239, 68, 68, 0.08),
        0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.consequence-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(248, 113, 113, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.consequence-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(239, 68, 68, 0.15),
        0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(239, 68, 68, 0.3);
}

.consequence-item:hover::after {
    opacity: 1;
}

.consequence-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.consequence-content h4 {
    margin: 0 0 0.5rem 0;
    color: #d32f2f;
}

.consequence-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.solution {
    color: var(--dark-color);
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.solution h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.solution p {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.solution p:last-child {
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark-color);
}

/* Benefits Section */
.benefits {
    background-color: var(--dark-color);
    color: var(--white);
}

.benefits .section-header h2,
.benefits .section-header p {
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.benefit-item {
    text-align: center;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-description {
    margin-bottom: 2rem;
}

.about-description p {
    font-size: 1.125rem;
    line-height: 1.7;
}

.expertise-areas h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    box-shadow: 
        0 4px 25px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 30px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-medium);
    font-weight: 500;
}

/* Confidentiality Section */
.confidentiality {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
}

.confidentiality-promise {
    background-color: var(--primary-color);
    color: white !important;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-top: 1rem;
    box-shadow: var(--shadow);
}

.confidentiality-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.security-item {
    display: flex;
    gap: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 
        0 4px 25px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.security-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.security-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 
        0 16px 50px rgba(0, 0, 0, 0.12),
        0 6px 25px rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

.security-item:hover::after {
    opacity: 1;
}

.security-icon {
    font-size: 2rem;
    min-width: 2rem;
}

.security-details h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.security-details p {
    color: var(--gray-medium);
    margin: 0;
    line-height: 1.5;
}

.nda-emphasis {
    margin-top: 2rem;
}

.nda-box {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white !important;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.nda-box h4 {
    margin-bottom: 1rem;
    color: white !important;
}

.nda-box p {
    margin: 0;
    line-height: 1.6;
    color: white !important;
}

.nda-box p strong {
    color: white !important;
}

.confidentiality-checklist {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.confidentiality-checklist h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.protection-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.protection-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--gray-dark);
    font-weight: 500;
}

.protection-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .confidentiality-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
}

/* Industry Challenges Section */
.industry-challenges {
    padding: 80px 0;
    background: var(--gray-light);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.challenge-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.challenge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.challenge-card h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.challenge-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.challenge-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: var(--gray-medium);
    position: relative;
    padding-left: 1.5rem;
}

.challenge-list li:before {
    content: "❌";
    position: absolute;
    left: 0;
}

.challenge-trigger {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-color);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    background-color: var(--gray-light);
}

.consultation-benefits {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.consultation-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 16px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.consultation-benefit::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.consultation-benefit:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.12),
        0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.consultation-benefit:hover::after {
    opacity: 1;
}

.benefit-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-content h4 {
    margin: 0 0 0.5rem 0;
    color: #2c5aa0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.benefit-content p {
    margin: 0;
    color: #6c757d;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .consultation-benefits {
        grid-template-columns: 1fr;
    }
    
    .consultation-benefit {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .benefit-content h4 {
        font-size: 1rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
}

.testimonials {
    margin: 2rem 0;
}

.testimonial {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.06),
        0 3px 12px rgba(0, 0, 0, 0.04);
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    line-height: 1;
    color: rgba(59, 130, 246, 0.1);
    font-family: Georgia, serif;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(59, 130, 246, 0.2);
}

.testimonial blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

.testimonial blockquote p {
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-style: normal;
}

.consultation-guarantee {
    background: var(--gray-light);
    color: var(--dark-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.consultation-guarantee p {
    margin-bottom: 0.5rem;
}

.consultation-guarantee p:last-child {
    margin-bottom: 0;
}

.contact-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    text-align: left;
}

.contact-benefit {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    color: var(--gray-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
}

.contact-details h3 {
    margin: 0 0 0.5rem 0;
    color: var(--dark-color);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.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(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Responsive Typography */
    h1 { 
        font-size: 2.5rem; 
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    h2 { 
        font-size: 2rem; 
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }
    
    h3 { 
        font-size: 1.5rem; 
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-subtitle, .section-header p {
        font-size: 1.125rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
}

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .contact-form {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* Article Page Styles */
.article-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
}

.subtitle-accent {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    opacity: 0.8;
}

.quick-answer {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.quick-answer h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.price-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.price-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 
        0 4px 25px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 30px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.price-duration {
    color: #64748b;
    font-weight: 500;
}

.important-note {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2rem;
    border-radius: 16px;
    border-left: 5px solid #f59e0b;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.1);
}

.important-note p {
    margin: 0;
    font-weight: 500;
    color: #92400e;
}

.article-content {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section h2 {
    color: #1e293b;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #e2e8f0;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 0.75rem;
}

.pricing-table {
    margin: 2rem 0;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.pricing-table th {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

.pricing-table tr:hover {
    background-color: #f8fafc;
}

.factors-grid, .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.factor-item, .result-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.factor-item:hover, .result-item:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.12),
        0 4px 20px rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.factor-item h3, .result-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.result-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.faq-section {
    margin: 2rem 0;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.2);
}

.faq-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-item li {
    margin-bottom: 0.5rem;
    color: #475569;
}

.conclusion {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.cta-section {
    margin-top: 2rem;
}

.article-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-section a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.cta-section a:hover {
    text-decoration: underline;
}

/* Responsive Design for Article */
@media (max-width: 768px) {
    .article-title {
        font-size: 2.5rem;
    }
    
    .price-overview {
        grid-template-columns: 1fr;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .factors-grid, .results-grid {
        grid-template-columns: 1fr;
    }
}