/* KIMO Website - Professional CSS */

/* Variables */
:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #3388FF;
    --secondary: #00C9A7;
    --accent: #00D4AA;
    --bg-light: #F6F9FC;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

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

.lang-btn {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: var(--text-gray);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.hamburger {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-dark);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--text-dark);
    left: 0;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0A1628 0%, #1A365D 50%, #2D4A7C 100%);
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 201, 167, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 201, 167, 0.15);
    border: 1px solid rgba(0, 201, 167, 0.3);
    border-radius: 100px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.title-line {
    display: block;
    color: white;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--secondary), #4ADE80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
}

.stat-suffix {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-actions {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), #00E5B8);
    color: #0A1628;
    box-shadow: 0 4px 14px rgba(0, 201, 167, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 201, 167, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    font-size: 18px;
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: -80px;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 20px;
    right: -120px;
    animation-delay: 1s;
}

.card-3 {
    top: 120px;
    right: -50px;
    animation-delay: 2s;
}

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

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

/* Sections Common */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-tag.light {
    background: rgba(0, 201, 167, 0.15);
    color: var(--secondary);
}

.section-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title.light {
    color: white;
}

.section-desc {
    font-size: 18px;
    color: var(--text-gray);
}

.section-desc.light {
    color: rgba(255, 255, 255, 0.7);
}

/* Services */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 102, 255, 0.2);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 102, 255, 0.2));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

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

.service-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: var(--secondary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
}

/* Process */
.process {
    background: linear-gradient(135deg, #0A1628 0%, #1A365D 100%);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 72px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 200px;
    margin: 0 auto;
}

.step-icon {
    font-size: 40px;
    margin-top: 16px;
}

.process-line {
    flex: 0 0 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), rgba(255, 255, 255, 0.2));
    margin-top: 60px;
}

/* Cases */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.case-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s;
}

.case-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.case-card.large {
    grid-column: span 2;
}

.case-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 201, 167, 0.1);
    color: var(--secondary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
}

.case-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.case-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.case-tags, .tag {
    display: inline-flex;
    gap: 8px;
}

.tag {
    padding: 4px 12px;
    background: var(--bg-light);
    color: var(--text-gray);
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
}

.tag.success {
    background: rgba(0, 201, 167, 0.1);
    color: var(--secondary);
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-desc {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.8;
}

.feature-list {
    margin-top: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(0, 201, 167, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.about-stats {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 48px;
    color: white;
}

.stat-box {
    text-align: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box:last-child {
    border-bottom: none;
}

.stat-box .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
}

.stat-box .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

/* FAQ */
.faq {
    background: var(--bg-light);
}

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

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.faq-icon {
    color: var(--text-gray);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Contact */
.contact {
    background: linear-gradient(135deg, #0A1628 0%, #1A365D 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 201, 167, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span:last-child {
    color: white;
    font-weight: 500;
}

.contact-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

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

/* Footer */
.footer {
    background: #0A1628;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-slogan {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Pricing Section */
.pricing-section {
    margin-top: 60px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 201, 167, 0.05));
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--text-gray);
    font-size: 15px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    position: relative;
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--secondary);
    box-shadow: 0 8px 30px rgba(0, 201, 167, 0.2);
}

.pricing-tag {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.pricing-range {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.pricing-range span {
    font-size: 16px;
    font-weight: 400;
}

.pricing-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-light);
}

/* Team Section */
.team {
    background: var(--bg-light);
}

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

.team-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 20px;
}

.team-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 14px;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 16px;
}

.team-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Enhanced Case Cards */
.case-beforeafter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.case-before, .case-after {
    text-align: center;
}

.case-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.case-status {
    display: block;
    font-weight: 600;
    font-size: 14px;
}

.case-status.error {
    color: #EF4444;
}

.case-status.success {
    color: var(--secondary);
}

.case-arrow {
    font-size: 24px;
    color: var(--primary);
}

.case-result-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.time-badge {
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

.case-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.metric {
    text-align: center;
}

.metric-label {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.metric-value {
    font-size: 20px;
    font-weight: 700;
}

.metric-value.error {
    color: #EF4444;
}

.metric-value.success {
    color: var(--secondary);
}

.metric-arrow {
    font-size: 18px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .pricing-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    .pricing-section {
        padding: 24px;
    }
    .case-beforeafter {
        flex-direction: column;
        gap: 10px;
    }
    .case-metrics {
        flex-direction: column;
    }
    .metric-arrow {
        transform: rotate(90deg);
    }
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-white);
    padding: 100px 0;
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.author-info {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 201, 167, 0.05));
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.trust-item {
    padding: 24px;
    transition: transform 0.3s;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.trust-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.trust-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
}

.trust-suffix {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
}

.trust-label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .cases-grid { grid-template-columns: repeat(2, 1fr); }
    .case-card.large { grid-column: span 1; }
    .about-content,
    .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
    .footer-content { flex-direction: column; gap: 48px; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }
    .nav-links.active { display: flex; }
    .nav-links .nav-link {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-links .nav-link:last-child { border-bottom: none; }
    .mobile-menu-btn { display: flex !important; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .stat-divider { display: none; }
    .hero-actions { flex-direction: column; }
    .services-grid,
    .cases-grid,
    .process-timeline { grid-template-columns: 1fr; }
    .process-line { display: none; }
    .team-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-links { flex-wrap: wrap; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
