:root {
    --color-primary: #8174A0;
    --color-secondary: #A888B5;
    --color-tertiary: #EFB6C8;
    --color-quaternary: #FFD2A0;
    --color-accent: #EFB6C8;
    --color-white: #ffffff;
    --color-gray-light: #FFFAF3;
    --color-gray: #7E748A;
    --color-dark: #2D2736;
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(129, 116, 160, 0.12);
    --shadow-md: 0 8px 24px rgba(129, 116, 160, 0.18);
    --shadow-lg: 0 20px 60px rgba(129, 116, 160, 0.25);
    --gradient-primary: linear-gradient(135deg, #8174A0 0%, #A888B5 100%);
    --gradient-light: linear-gradient(135deg, rgba(239, 182, 200, 0.2) 0%, rgba(255, 210, 160, 0.1) 100%);
}

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

body {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-dark);
    background: var(--color-quaternary);
    font-weight: 300;
    overflow-x: hidden;
}

.navbar-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(78, 179, 229, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar-brand img {
    height: 42px;
    transition: var(--transition);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    font-weight: 400;
    color: var(--color-dark);
    margin: 0 1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.btn-primary-nav {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.6rem 1.8rem;
    border-radius: 8px;
    transition: var(--transition);
    margin-left: 1rem;
}

.btn-primary-nav::after {
    display: none;
}

.btn-primary-nav:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78, 179, 229, 0.3);
}

.problem-intro {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 76px;
}

.problem-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.65);
}

.problem-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(16, 18, 117, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    max-width: 900px;
}

.problem-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    z-index: 1000;
    position: relative;
}

.problem-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    position: relative;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    background: var(--gradient-light);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%234EB3E5" opacity="0.1"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    padding-right: 2rem;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(78, 179, 229, 0.15);
    color: var(--color-secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(78, 179, 229, 0.3);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--color-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--color-secondary);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.stat-label {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-gray);
    line-height: 1.3;
}

.btn-hero {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(16, 18, 117, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(78, 179, 229, 0.35);
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.intro-context {
    padding: 6rem 0;
    background: var(--color-white);
}

.context-box {
    padding: 4rem;
    background: var(--gradient-light);
    border-radius: 20px;
    border: 1px solid rgba(78, 179, 229, 0.2);
    position: relative;
    overflow: hidden;
}

.context-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(78, 179, 229, 0.1) 0%, transparent 70%);
}

.context-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.context-text {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--color-dark);
    margin-bottom: 1.8rem;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.optimization-section {
    padding: 8rem 0;
    background: var(--color-quaternary);
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-lead {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-block {
    padding: 3rem;
    border-radius: 16px;
    background: var(--color-white);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.comparison-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transition: var(--transition);
}

.comparison-block.chaos::before {
    background: linear-gradient(180deg, #e63946 0%, #d62828 100%);
}

.comparison-block.precision::before {
    background: var(--gradient-primary);
}

.comparison-block:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.icon-glass {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 179, 229, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 179, 229, 0.2);
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 16px rgba(78, 179, 229, 0.1);
    transition: var(--transition);
}

.comparison-block:hover .icon-glass {
    transform: scale(1.05) rotate(5deg);
}

.icon-glass i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    transition: var(--transition);
}

.comparison-block h3 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.comparison-intro {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.comparison-list li {
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.7;
    border-bottom: 1px solid rgba(78, 179, 229, 0.1);
}

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

.comparison-list li i {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1.2rem;
}

.comparison-block.chaos .comparison-list li i {
    color: #e63946;
}

.comparison-block.precision .comparison-list li i {
    color: #10b981;
}

.comparison-result {
    margin-top: 2rem;
    padding: 1.2rem;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
}

.comparison-result.negative {
    background: rgba(230, 57, 70, 0.1);
    color: #d62828;
    border: 1px solid rgba(230, 57, 70, 0.3);
}

.comparison-result.positive {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.strategist-section {
    padding: 8rem 0;
    background: var(--color-white);
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.strategist-text {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--color-dark);
    margin-bottom: 1.8rem;
    line-height: 1.9;
}

.mockup-container {
    position: relative;
}

.mockup-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-light);
    border-radius: 30px;
    z-index: 0;
}

.mockup-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 2.5rem;
    background: var(--color-quaternary);
    border-radius: 16px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(78, 179, 229, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 14px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px rgba(78, 179, 229, 0.25);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.7;
}

.technology-depth {
    padding: 8rem 0;
    background: var(--gradient-light);
}

.tech-process {
    margin-top: 3rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    align-items: flex-start;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
    min-width: 80px;
    opacity: 0.3;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.step-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.8;
}

.social-integration {
    padding: 8rem 0;
    background: var(--color-white);
}

.social-image {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.social-text {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--color-dark);
    margin-bottom: 1.8rem;
    line-height: 1.9;
}

.results-gallery {
    padding: 0;
    margin: 0;
}

.gallery-item {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 18, 117, 0.75) 0%, rgba(78, 179, 229, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.gallery-content {
    max-width: 900px;
    text-align: center;
}

.gallery-overlay h3 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.gallery-overlay p {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.faq-section {
    padding: 8rem 0;
    background: var(--color-quaternary);
}

.faq-container {
    margin-top: 3rem;
}

.faq-item {
    background: var(--color-white);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.8rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(78, 179, 229, 0.05);
}

.faq-question h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--color-secondary);
    transition: var(--transition);
}

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

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

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

.faq-answer p {
    padding: 0 2rem 2rem;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.8;
    margin: 0;
}

.form-section {
    padding: 8rem 0;
    background: var(--color-tertiary);
}

.form-container {
    background: var(--color-white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.form-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--color-gray);
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.7;
}

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

.form-control {
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(78, 179, 229, 0.2);
    border-radius: 10px;
    transition: var(--transition);
    font-family: var(--font-primary);
    font-weight: 300;
    width: 100%;
}

.form-control:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.2rem rgba(78, 179, 229, 0.15);
    outline: none;
    background: var(--color-white);
}

.error-message {
    display: block;
    color: #e63946;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

.btn-submit {
    width: 100%;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1.3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(78, 179, 229, 0.35);
}

.form-privacy {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-top: 1.5rem;
    font-weight: 300;
}

.form-privacy a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.form-privacy a:hover {
    text-decoration: underline;
}

.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 5rem 0 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.footer-contact {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 1rem;
    color: var(--color-accent);
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--color-white);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-copyright {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.8rem;
    z-index: 9999;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice.hide {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    margin: 0;
    font-size: 1rem;
    color: var(--color-dark);
    font-weight: 300;
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cookie-accept,
.btn-cookie-decline {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

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

.btn-cookie-accept:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-cookie-decline:hover {
    background: var(--color-tertiary);
}

.cookie-policy-link {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    font-size: 0.95rem;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .problem-title {
        font-size: 2.5rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

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

    .process-step {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .form-container {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 5rem 0 3rem;
        min-height: auto;
    }

    .optimization-section,
    .strategist-section,
    .social-integration,
    .form-section,
    .intro-context,
    .technology-depth,
    .faq-section {
        padding: 5rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .problem-title {
        font-size: 2rem;
    }

    .problem-subtitle {
        font-size: 1.2rem;
    }

    .comparison-block {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .gallery-overlay h3 {
        font-size: 2.2rem;
    }

    .gallery-overlay p {
        font-size: 1.1rem;
    }

    .form-container {
        padding: 2rem;
    }

    .context-box {
        padding: 2.5rem;
    }

    .nav-link {
        margin: 0.5rem 0;
    }

    .btn-primary-nav {
        margin-left: 0;
        margin-top: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .problem-overlay {
        padding: 2rem 1.5rem;
    }

    .btn-hero {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .faq-question {
        padding: 1.5rem;
    }

    .faq-question h4 {
        font-size: 1.1rem;
    }
}