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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #4A90E2;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

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

.header-main {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #4A90E2;
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

.nav-main {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-main a {
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.nav-main a:hover,
.nav-main a.active {
    color: #4A90E2;
}

.hero-section {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-section h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 22px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 35px;
}

.hero-visual {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 800px;
    opacity: 0.3;
    z-index: 1;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #4A90E2;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
    background: #357ABD;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
    color: #ffffff;
}

.btn-primary-large {
    padding: 18px 50px;
    font-size: 18px;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #4A90E2;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #4A90E2;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4A90E2;
    color: #ffffff;
}

.story-section {
    padding: 100px 0;
    background: #ffffff;
}

.story-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-highlight {
    font-size: 24px;
    font-weight: 600;
    color: #4A90E2;
    margin-top: 40px;
}

.problem-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.problem-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.problem-item {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.problem-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.problem-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.insight-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.insight-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.insight-text {
    flex: 1;
    min-width: 300px;
}

.insight-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.insight-text h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

.insight-visual {
    flex: 0 0 250px;
    text-align: center;
}

.insight-number {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 10px;
}

.insight-caption {
    font-size: 16px;
    opacity: 0.9;
}

.solution-section {
    padding: 120px 0;
    background: #ffffff;
}

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

.section-header-center h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 19px;
    line-height: 1.6;
    color: #666;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 16px;
    flex-wrap: wrap;
}

.service-card-reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #50C878;
    color: #ffffff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    color: #666;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #50C878;
    font-weight: 700;
    font-size: 18px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 25px;
}

.price-amount {
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
}

.price-period {
    font-size: 16px;
    color: #999;
}

.price-save {
    padding: 6px 12px;
    background: #FFD700;
    color: #1a1a1a;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

.btn-service {
    padding: 16px 35px;
    background: #4A90E2;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #357ABD;
    transform: translateY(-2px);
}

.service-image {
    flex: 0 0 400px;
    min-width: 300px;
}

.testimonial-section {
    padding: 100px 0;
    background: #f0f4f8;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 280px;
    padding: 40px 35px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.testimonial-author span {
    font-size: 14px;
    color: #999;
}

.trust-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: #ffffff;
}

.trust-content h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #4A90E2;
}

.stat-label {
    font-size: 16px;
    color: #ccc;
}

.how-it-works-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-title-center {
    font-size: 44px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.steps-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    padding: 30px 25px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #4A90E2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.step-arrow {
    font-size: 40px;
    color: #4A90E2;
    font-weight: 300;
}

.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-wrapper {
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 17px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4A90E2;
}

.btn-submit {
    padding: 18px 40px;
    background: #50C878;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #45B369;
    transform: translateY(-2px);
}

.urgency-section {
    padding: 80px 0;
    background: #FFF3E0;
}

.urgency-box {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    border-radius: 16px;
    color: #ffffff;
}

.urgency-box h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.urgency-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-urgency {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #FF9800;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.footer-main {
    padding: 60px 0 30px;
    background: #1a1a1a;
    color: #ffffff;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #4A90E2;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #4A90E2;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #50C878;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #45B369;
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 24px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sticky-cta-content span {
    font-size: 15px;
    font-weight: 600;
}

.btn-sticky {
    padding: 10px 24px;
    background: #4A90E2;
    color: #ffffff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #357ABD;
}

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-lead {
    font-size: 20px;
    color: #666;
}

.services-detail-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-story-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.values-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.team-section {
    padding: 100px 0;
    background: #ffffff;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.team-stat {
    text-align: center;
}

.mission-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.mission-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section {
    padding: 100px 0;
    background: #ffffff;
}

.cta-box {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.contact-info-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.contact-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.contact-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.contact-item a {
    color: #4A90E2;
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.faq-item a {
    color: #4A90E2;
    text-decoration: underline;
}

.legal-page {
    padding: 80px 0;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-page ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-page a {
    color: #4A90E2;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookies-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #1a1a1a;
}

.cookies-table td {
    font-size: 15px;
    color: #555;
}

.thanks-section {
    padding: 120px 0;
    background: #ffffff;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-info {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 50px;
}

.thanks-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.thanks-next h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.next-step {
    flex: 1;
    min-width: 200px;
    padding: 30px 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.comparison-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    background: #4A90E2;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
}

.comparison-table td {
    font-size: 15px;
    color: #555;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.total-row {
    background: #f8f9fa;
}

.comparison-note {
    font-size: 14px;
    color: #999;
    margin-top: 15px;
    text-align: center;
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-main {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-main.active {
        display: flex;
    }

    .hero-section h1 {
        font-size: 42px;
    }

    .hero-visual {
        display: none;
    }

    .service-card {
        flex-direction: column;
        padding: 40px 30px;
    }

    .service-card-reverse {
        flex-direction: column;
    }

    .service-image {
        flex: 1 1 auto;
        width: 100%;
    }

    .step-arrow {
        display: none;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 640px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .section-header-center h2,
    .section-title-center {
        font-size: 32px;
    }

    .service-card h3 {
        font-size: 26px;
    }

    .price-amount {
        font-size: 32px;
    }

    .form-wrapper {
        padding: 40px 25px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 10px;
        padding: 12px 20px;
    }
}