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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: rgba(255,246,242,1);
    color: #1a1a1a;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Degular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255,246,242,0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(28, 105, 236, 0.05);
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1C69EC;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.8;
}

.logo svg {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: rgba(26, 26, 26, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1C69EC;
}

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

.cta-button {
    background: #1C69EC;
    color: #fff;
    padding: 10px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: rgba(28, 105, 236, 0.9);
    transform: scale(1.05);
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    align-items: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
    gap: 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.hero-content h1 {
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: clamp(16px, 1.8vw, 21px);
    color: rgba(26, 26, 26, 0.7);
    max-width: 720px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.hero-left-image,
.hero-right-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 5;
    padding-bottom: 0px;
    margin-bottom: -200px;
}

.hero-left-image img,
.hero-right-image img {
    max-width: 400px;
    max-height: 700px;
    border-radius: 24px;
    object-fit: contain;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    background: #1C69EC;
    color: #fff;
    padding: 16px 40px;
    border-radius: 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.primary-btn:hover {
    background: rgba(28, 105, 236, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(28, 105, 236, 0.3);
}

.gradient-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.15;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: #1C69EC;
    top: -10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #F9B532;
    top: 20%;
    right: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: rgba(28, 105, 236, 0.5);
    bottom: -20%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.features {
    padding: 0 60px;
    max-width: 1400px;
    margin: 200px auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-separator {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(28, 105, 236, 0.6) 50%, transparent 100%);
    margin: 160px auto 100px;
    position: relative;
    scroll-margin-top: 100px;
}

.section-separator::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: rgba(28, 105, 236, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(28, 105, 236, 0.4);
}

.feature-nav-button {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    background: rgba(255, 255, 255, 0.95);
    color: rgba(26, 26, 26, 0.8);
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-nav-button:hover {
    background: rgba(255, 255, 255, 1);
    color: rgba(26, 26, 26, 1);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-nav-button svg {
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.feature-nav-button:hover svg {
    transform: translateY(2px);
    opacity: 1;
}

.privacy-callout {
    max-width: 1000px;
    margin: 40px auto 32px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(28, 105, 236, 0.08) 0%, rgba(249, 181, 50, 0.05) 100%);
    border: 2px solid rgba(28, 105, 236, 0.2);
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(28, 105, 236, 0.1);
    position: relative;
    overflow: hidden;
}

.privacy-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1C69EC 0%, #F9B532 100%);
}

.privacy-callout-content {
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
}

.privacy-icon-container {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1C69EC 0%, #3B82F6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(28, 105, 236, 0.3);
}

.privacy-icon-container svg {
    color: white;
    width: 32px;
    height: 32px;
}

.privacy-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1C69EC;
    margin-bottom: 8px;
    font-family: 'Degular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.privacy-text p {
    font-size: 18px;
    color: rgba(26, 26, 26, 0.8);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.privacy-text p strong {
    font-weight: normal;
    background: linear-gradient(135deg, rgba(28, 105, 236, 0.1) 0%, rgba(249, 181, 50, 0.1) 100%);
    padding: 2px 6px;
    border-radius: 6px;
    font-family: 'Degular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-row.full-width {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.feature-row.full-width .feature-content {
    max-width: 100%;
}

.feature-row.full-width .feature-image {
    margin: 0 auto;
}

.feature-row.reverse .feature-content {
    order: 2;
}

.feature-row.reverse .feature-image {
    order: 1;
}

.feature-content {
    padding-left: 70px;
}

.feature-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.feature-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(26, 26, 26, 0.7);
}

.feature-image {
    background: transparent;
    border: none;
    border-radius: 24px;
    padding: 40px 0px 40px 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image img {
    max-width: 100%;
    max-height: 500px;
    border-radius: 16px;
}

.recording-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.recording-button {
    position: relative;
    width: 200px;
    height: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recording-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid #F9B532;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recording-button.recording .recording-circle {
    opacity: 1;
}

.circle-1 { width: 200px; height: 200px; opacity: 0; }
.circle-2 { width: 170px; height: 170px; top: 15px; left: 15px; opacity: 0; }
.circle-3 { width: 140px; height: 140px; top: 30px; left: 30px; opacity: 0; }
.circle-4 { width: 110px; height: 110px; top: 45px; left: 45px; opacity: 0; }

.recording-button.recording .circle-1 { opacity: 0.3; }
.recording-button.recording .circle-2 { opacity: 0.5; }
.recording-button.recording .circle-3 { opacity: 0.7; }
.recording-button.recording .circle-4 { opacity: 1; }

.recording-center {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 60px;
    left: 60px;
    background: #F9B532;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 3px solid #F9B532;
}

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

.stop-icon {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 4px;
}

.recording-button.recording .circle-1,
.recording-button.recording .circle-2,
.recording-button.recording .circle-3,
.recording-button.recording .circle-4 {
    animation: pulse 2s ease-in-out infinite;
}

.recording-button.recording .circle-1 { animation-delay: 0s; }
.recording-button.recording .circle-2 { animation-delay: 0.2s; }
.recording-button.recording .circle-3 { animation-delay: 0.4s; }
.recording-button.recording .circle-4 { animation-delay: 0.6s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.filter-buttons-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px;
}

.filter-button {
    background: white;
    border: 2px solid rgba(28, 105, 236, 0.2);
    border-radius: 50px;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    flex-shrink: 0;
    white-space: nowrap;
}

.filter-button.active {
    background: #1C69EC;
    border-color: #1C69EC;
}

.filter-button.more {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.filter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 105, 236, 0.2);
}

.filter-title {
    font-family: 'Degular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.filter-button.active .filter-title {
    color: white;
}

.filter-subtitle {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.6);
    font-weight: 400;
}

.filter-button.active .filter-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.filter-more-icon {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.privacy-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 40px;
}

.phone-container {
    position: relative;
    width: 200px;
    height: 360px;
    background: linear-gradient(135deg, #1C69EC 0%, #3B82F6 100%);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(28, 105, 236, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lock-icon-big {
    width: 80px;
    height: 80px;
    background: #F9B532;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lockBounce 2s ease-in-out infinite;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lock-icon-big.locked {
    background: #1C69EC;
    animation: none;
}

.lock-icon-big svg {
    width: 40px;
    height: 40px;
    fill: white;
    animation: lockShake 3s ease-in-out infinite;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.lock-icon-big.locked svg {
    animation: none;
    transform: scale(1.1);
    fill: #F9B532;
}

@keyframes lockBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes lockShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

.privacy-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.audio-wave {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(28, 105, 236, 0.08);
    border-radius: 20px;
    justify-content: center;
}

.audio-bar {
    width: 4px;
    background: #1C69EC;
    border-radius: 4px;
    animation: audioWave 1.2s ease-in-out infinite;
}

.audio-bar:nth-child(1) { height: 12px; animation-delay: 0s; }
.audio-bar:nth-child(2) { height: 24px; animation-delay: 0.1s; }
.audio-bar:nth-child(3) { height: 18px; animation-delay: 0.2s; }
.audio-bar:nth-child(4) { height: 30px; animation-delay: 0.3s; }
.audio-bar:nth-child(5) { height: 20px; animation-delay: 0.4s; }
.audio-bar:nth-child(6) { height: 26px; animation-delay: 0.5s; }
.audio-bar:nth-child(7) { height: 16px; animation-delay: 0.6s; }
.audio-bar:nth-child(8) { height: 22px; animation-delay: 0.7s; }

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

.platforms {
    padding: 120px 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 64px;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.platform-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(28, 105, 236, 0.2);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #1a1a1a;
    overflow: hidden;
}

.platform-icon svg {
    width: 60px;
    height: 60px;
}

.platform-icon:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    border-color: #1C69EC;
    box-shadow: 0 10px 40px rgba(28, 105, 236, 0.2);
}

footer {
    border-top: 1px solid rgba(28, 105, 236, 0.2);
    padding: 60px 60px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1C69EC;
}

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

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: rgba(26, 26, 26, 0.5);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(26, 26, 26, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #1C69EC;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(28, 105, 236, 0.2);
    color: rgba(26, 26, 26, 0.5);
    font-size: 14px;
}

.faq {
    padding: 120px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(28, 105, 236, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item-hidden {
    display: none;
}

.faq-item:hover {
    border-color: #1C69EC;
    box-shadow: 0 4px 20px rgba(28, 105, 236, 0.1);
}

.faq-show-more {
    text-align: center;
    margin-top: 40px;
}

.faq-show-less {
    text-align: center;
    margin-top: 40px;
}

.faq-show-more-btn {
    background: transparent;
    border: 2px solid #1C69EC;
    color: #1C69EC;
    padding: 12px 32px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Degular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.faq-show-more-btn:hover {
    background: #1C69EC;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 105, 236, 0.3);
}

.faq-show-more.hidden {
    display: none;
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    user-select: none;
    font-family: 'Degular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.faq-question:hover {
    color: #1C69EC;
}

.faq-toggle {
    font-size: 24px;
    color: #1C69EC;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.faq-answer-content {
    padding: 0 28px 24px 28px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(26, 26, 26, 0.7);
}

.language-visual {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-flags {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.language-flag {
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
    transform: scale(0.95);
}

.language-flag.active {
    opacity: 1;
    transform: scale(1.1);
}

.language-flag:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.insight-filters {
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
}

.insight-filter {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(28, 105, 236, 0.2);
    border-radius: 50px;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    flex: 0 1 auto;
}

.insight-filter.active {
    background: #1C69EC;
    border-color: #1C69EC;
    transform: translateY(-2px);
}

.insight-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(28, 105, 236, 0.2);
}

.insight-filter.active:hover {
    transform: translateY(-2px);
}

.insight-filter-title {
    font-family: 'Degular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.insight-filter.active .insight-filter-title {
    color: white;
}

.insight-filter-subtitle {
    font-size: 13px;
    color: rgba(26, 26, 26, 0.6);
    font-weight: 400;
}

.insight-filter.active .insight-filter-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    nav {
        padding: 20px 24px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 100px 24px 60px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-left-image,
    .hero-right-image {
        display: none;
    }

    .features, .platforms {
        padding: 80px 24px;
    }

    .faq {
        padding: 80px 24px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 24px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-row .feature-content {
        order: 1;
    }

    .feature-row .feature-image {
        order: 2;
    }

    .feature-row.reverse .feature-content {
        order: 1;
    }

    .feature-row.reverse .feature-image {
        order: 2;
    }

    .feature-content {
        padding-left: 0;
        padding-right: 0;
    }

    .feature-image {
        padding: 20px 0;
        min-height: 300px;
    }

    .feature-content h3 {
        font-size: 28px;
    }

    .feature-content p {
        font-size: 16px;
    }

    .privacy-callout {
        margin: 20px auto 24px;
        padding: 24px;
    }

    .privacy-callout-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .privacy-text h3 {
        font-size: 20px;
    }

    .privacy-text p {
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }

    footer {
        padding: 40px 24px;
    }
}

/* Contact Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.contact-modal-content {
    background-color: #fff;
    margin: 12% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 480px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.3s ease;
}

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

.contact-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-modal-close {
    font-size: 24px;
    font-weight: normal;
    cursor: pointer;
    color: rgba(26, 26, 26, 0.5);
    transition: color 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.contact-modal-close:hover {
    color: #1a1a1a;
    background: rgba(0, 0, 0, 0.05);
}

.contact-modal-body {
    padding: 28px;
}

.contact-modal-body p {
    margin-bottom: 24px;
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.8);
    font-size: 16px;
}

.contact-modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-secondary, .btn-primary {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    flex: 1;
}

.btn-secondary {
    background-color: #1C69EC;
    color: white;
}

.btn-secondary:hover {
    background-color: #1557D6;
}

.btn-primary {
    background-color: #f8f9fa;
    color: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #e9ecef;
}

.contact-email {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 24px 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-email strong {
    font-size: 16px;
    color: #1C69EC;
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.6);
    text-align: center;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .contact-modal-content {
        margin: 20% auto;
        width: 95%;
    }
    
    .contact-modal-buttons {
        flex-direction: column;
    }
}

/* Modal styles pour le formulaire Notion */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 2% auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-button {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: #1C69EC;
    background-color: rgba(28, 105, 236, 0.1);
}

.modal-content h2 {
    font-family: 'Degular', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.modal-content iframe {
    border-radius: 12px;
    border: 1px solid rgba(28, 105, 236, 0.1);
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        padding: 20px;
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .modal-content iframe {
        height: 500px;
    }
    
    .close-button {
        right: 15px;
        top: 15px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
}

/* Language Selector Styles */
.language-selector-container {
    position: relative;
}

.language-selector {
    position: relative;
    display: inline-block;
}

.language-selector-button {
    background: transparent;
    border: 1px solid rgba(28, 105, 236, 0.2);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.language-selector-button:hover {
    background: rgba(28, 105, 236, 0.05);
    border-color: rgba(28, 105, 236, 0.3);
    color: #1C69EC;
}

.language-selector.active .language-selector-button::after {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid rgba(28, 105, 236, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    min-width: 120px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.language-selector.active .language-dropdown,
.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.language-option:first-child {
    border-radius: 12px 12px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 12px 12px;
}

.language-option:only-child {
    border-radius: 12px;
}

.language-option:hover {
    background: rgba(28, 105, 236, 0.05);
}

.language-option.active {
    background: rgba(28, 105, 236, 0.1);
    color: #1C69EC;
}

.language-flag {
    font-size: 16px;
    line-height: 1;
}

.language-code {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobile responsive pour le sélecteur de langue */
@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }
    
    .language-selector-button {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .language-dropdown {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .language-selector-button {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .language-flag {
        font-size: 14px;
    }
}
