/* ClinicShark Website Styles */
/* Brand Colors from App */
:root {
    --primary-blue: #0095E8;
    --primary-light: #4DB5F0;
    --primary-dark: #0077BA;
    --logo-green: #47BE7D;
    --logo-yellow: #F1BC00;
    --logo-red: #D9214E;
    --teal: #2B7A8F;
    --background: #F8F9FA;
    --surface: #FFFFFF;
    --text-primary: #212529;
    --text-secondary: #6C757D;
    --divider: #E9ECEF;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background: var(--surface);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: 40px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-text .clinic {
    color: var(--text-primary);
}

.logo-text .shark {
    background: linear-gradient(135deg, var(--primary-blue), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 300px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: white;
    color: var(--primary-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
}

.hero-image {
    display: flex;
    justify-content: center;
}

/* Screenshot Showcase */
.screenshot-showcase {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.screenshot-phone {
    background: #1a1a2e;
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.screenshot-phone:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.screenshot-phone.featured {
    transform: perspective(1000px) rotateY(5deg) scale(1.05);
    z-index: 2;
}

.screenshot-phone.featured:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.1);
}

.app-screenshot {
    width: 220px;
    height: auto;
    border-radius: 22px;
    display: block;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--surface);
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    padding: 20px;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    overflow: hidden;
}

/* Phone Header */
.phone-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    width: 100%;
    padding: 0.5rem;
    /* background: rgba(255, 255, 255, 0.05); */
    border-radius: 10px;
}

.phone-header .app-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.phone-header .app-name {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.phone-header .app-name .clinic {
    color: white;
}

.phone-header .app-name .shark {
    background: linear-gradient(135deg, var(--primary-blue), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Recording Status */
.recording-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217, 33, 78, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.recording-dot {
    width: 10px;
    height: 10px;
    background: var(--logo-red);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.recording-status span {
    color: var(--logo-red);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Voice Waveform */
.voice-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 60px;
    margin-bottom: 1rem;
}

.wave-bar {
    width: 4px;
    background: linear-gradient(180deg, var(--primary-blue), var(--logo-green));
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 25px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 45px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 30px; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 50px; animation-delay: 0.5s; }
.wave-bar:nth-child(7) { height: 35px; animation-delay: 0.6s; }
.wave-bar:nth-child(8) { height: 40px; animation-delay: 0.7s; }
.wave-bar:nth-child(9) { height: 25px; animation-delay: 0.8s; }
.wave-bar:nth-child(10) { height: 30px; animation-delay: 0.9s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

/* Transcription Box */
.transcription-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    width: 100%;
    flex: 1;
    overflow: hidden;
}

.transcription-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.transcription-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.6;
}

.typing-text {
    display: inline;
    border-right: 2px solid var(--logo-green);
    animation: cursor 0.8s infinite;
}

@keyframes cursor {
    0%, 100% { border-color: var(--logo-green); }
    50% { border-color: transparent; }
}

/* Typewriter effect */
.typewriter {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 4s steps(40) infinite;
}

@keyframes typing {
    0%, 100% { width: 0; }
    50%, 90% { width: 100%; }
}

/* SOAP Labels */
.soap-labels {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.soap-label {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.soap-label.s { background: var(--logo-yellow); color: #333; }
.soap-label.o { background: var(--primary-blue); color: white; }
.soap-label.a { background: var(--logo-green); color: white; }
.soap-label.p { background: var(--logo-red); color: white; }

/* Mic Button */
.phone-screen .mic-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--logo-red), #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    margin-top: 1rem;
    flex-shrink: 0;
}

.phone-screen .mic-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217, 33, 78, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(217, 33, 78, 0); }
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: var(--surface);
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon.blue { background: linear-gradient(135deg, var(--primary-blue), var(--primary-light)); }
.feature-icon.green { background: linear-gradient(135deg, var(--logo-green), #6BD99A); }
.feature-icon.yellow { background: linear-gradient(135deg, var(--logo-yellow), #FFD54F); }
.feature-icon.red { background: linear-gradient(135deg, var(--logo-red), #E85A7B); }

.feature-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
}

/* How It Works */
.how-it-works {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.how-it-works .section-title h2 {
    color: white;
}

.how-it-works .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

/* Connection line between steps */
.steps-container::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--logo-yellow), var(--primary-blue), var(--logo-green));
    border-radius: 2px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.step:nth-child(1) .step-icon {
    background: linear-gradient(135deg, var(--logo-yellow), #ffcc00);
}

.step:nth-child(2) .step-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
}

.step:nth-child(3) .step-icon {
    background: linear-gradient(135deg, var(--logo-green), #6BD99A);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-content {
    max-width: 280px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: white;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Step hover effect */
.step:hover .step-icon {
    transform: translateY(-10px);
    transition: transform 0.3s ease;
}

.step .step-icon {
    transition: transform 0.3s ease;
}

/* Languages Section - Animated Globe */
.languages-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
}

.languages-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.languages-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.languages-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.language-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lang-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1rem;
}

.lang-feature svg {
    width: 24px;
    height: 24px;
    color: var(--logo-green);
}

/* Globe Animation */
.languages-globe {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.globe-container {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.globe-ring.ring-1 {
    width: 100%;
    height: 100%;
    border-color: var(--primary-blue);
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.globe-ring.ring-2 {
    width: 80%;
    height: 80%;
    border-color: var(--logo-green);
    opacity: 0.4;
    animation: rotate 15s linear infinite reverse;
}

.globe-ring.ring-3 {
    width: 60%;
    height: 60%;
    border-color: var(--logo-yellow);
    opacity: 0.5;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.globe-center {
    position: relative;
    z-index: 2;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-blue), var(--logo-green));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(0, 149, 232, 0.4);
}

.globe-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.globe-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Floating Languages */
.floating-languages {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-lang {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes float {
    0%, 100% {
        transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
        opacity: 0.7;
    }
    50% {
        transform: translate(calc(-50% + var(--x) + 10px), calc(-50% + var(--y) - 10px));
        opacity: 1;
    }
}

/* Pulse effect on some languages */
.float-lang:nth-child(odd) {
    animation: float-alt 5s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes float-alt {
    0%, 100% {
        transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(calc(-50% + var(--x) - 8px), calc(-50% + var(--y) + 12px)) scale(1.05);
        opacity: 1;
    }
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, white, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Screenshots Gallery */
.screenshots-gallery {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--background) 0%, #e8f4fc 100%);
}

.screenshots-showcase {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: stretch;
}

.screenshot-card {
    background: var(--surface);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    max-width: 320px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.screenshot-card.featured {
    box-shadow: 0 30px 80px rgba(0, 149, 232, 0.2);
}

.screenshot-card.featured:hover {
    transform: translateY(-10px);
}

.screenshot-frame {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 1.5rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-frame img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: contain;
}

.screenshot-info {
    text-align: center;
}

.screenshot-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.screenshot-info h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.screenshot-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 2rem;
    background: var(--surface);
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--divider);
}

.comparison-table th {
    background: var(--background);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table th.highlight {
    background: var(--primary-blue);
    color: white;
}

.comparison-table td.highlight {
    background: rgba(0, 149, 232, 0.05);
    font-weight: 500;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
}

.check {
    color: var(--logo-green);
    font-size: 1.3rem;
    font-weight: bold;
}

.cross {
    color: var(--logo-red);
    font-size: 1.3rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    background: var(--background);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--logo-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

.author-info strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--surface);
}

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

.faq-item {
    border-bottom: 1px solid var(--divider);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    transition: transform 0.3s;
}

.faq-question:hover span {
    color: var(--primary-blue);
}

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

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

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

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-btn {
    background: white;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s;
}

.store-btn:hover {
    transform: translateY(-3px);
}

.store-btn svg {
    width: 30px;
    height: 30px;
}

.store-btn span {
    text-align: left;
}

.store-btn .small {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.store-btn .big {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-section p a {
    color: var(--primary-light);
    text-decoration: none;
}

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

.footer-section .company-info {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-section .company-info strong {
    color: var(--primary-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Page Styles (Privacy & Contact) */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--surface);
}

.page-content h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--divider);
}

.page-content h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
}

.page-content p, .page-content li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.page-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-content .contact-box {
    background: var(--background);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-blue);
}

.page-content .contact-box p {
    margin-bottom: 0.5rem;
}

.page-content .contact-box a {
    color: var(--primary-blue);
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.contact-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-card .icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
}

.contact-card a {
    color: var(--primary-blue);
    text-decoration: none;
}

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

/* Contact Form */
.contact-form {
    background: var(--background);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--divider);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 149, 232, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 1rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        list-style: none;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        display: block;
        border-bottom: 1px solid var(--divider);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .steps-container::before {
        display: none;
    }

    .step-icon {
        width: 100px;
        height: 100px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .screenshot-showcase {
        flex-direction: column;
        align-items: center;
    }

    .screenshot-phone,
    .screenshot-phone.featured {
        transform: none;
    }

    .screenshot-phone.featured:hover,
    .screenshot-phone:hover {
        transform: scale(1.02);
    }

    .app-screenshot {
        width: 200px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .screenshots-showcase {
        flex-direction: column;
        align-items: center;
    }

    .screenshot-card,
    .screenshot-card.featured {
        transform: none;
        max-width: 280px;
    }

    .screenshot-card.featured:hover,
    .screenshot-card:hover {
        transform: translateY(-5px);
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
    }

    .languages-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .languages-content h2 {
        font-size: 2rem;
    }

    .language-features {
        align-items: center;
    }

    .languages-globe {
        min-height: 350px;
    }

    .globe-container {
        width: 200px;
        height: 200px;
    }

    .globe-center {
        width: 120px;
        height: 120px;
    }

    .globe-number {
        font-size: 2rem;
    }

    .float-lang {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section ul {
        padding-left: 0;
    }

    .faq-question span {
        font-size: 0.95rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-content {
        padding: 2rem 1rem;
    }
}
