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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

.main-header {
    background: #1a1a2e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #ff6b6b;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #1a1a2e;
    z-index: 2000;
    padding: 30px;
    transition: right 0.3s ease;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

.close-menu {
    align-self: flex-end;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    margin-bottom: 20px;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    padding: 25px;
    z-index: 1500;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-content p {
    color: #ffffff;
    margin: 0;
    flex: 1;
}

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

.btn-cookie {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #4ecdc4;
    color: #1a1a2e;
}

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

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

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

.hero-story {
    min-height: 85vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1488190211105-8b0e65b80b4e?w=1600') center/cover;
    opacity: 0.15;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 60px 20px;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: #ff6b6b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.cta-hero:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 107, 107, 0.4);
}

.intro-flow {
    padding: 100px 0;
    background: #f8f9fa;
}

.story-block {
    margin-bottom: 50px;
}

.story-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a2e;
    line-height: 1.3;
}

.story-block p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.visual-break {
    margin: 60px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.visual-break img {
    width: 100%;
    display: block;
}

.problem-amplify {
    padding: 120px 0;
    background: #ffffff;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: #1a1a2e;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.inline-cta {
    display: inline-block;
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #ff5252;
    transform: translateX(5px);
}

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

.insight-box {
    background: rgba(255,255,255,0.95);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.insight-box h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: #1a1a2e;
    line-height: 1.3;
}

.insight-box p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #4a5568;
    line-height: 1.8;
}

.checkmark-list {
    list-style: none;
    margin: 30px 0;
}

.checkmark-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.7;
}

.checkmark-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: 700;
    font-size: 1.4rem;
}

.testimonial-inline {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #4ecdc4;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.author-name {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 1.1rem;
}

.author-role {
    color: #718096;
    font-size: 0.95rem;
}

.trust-builder {
    padding: 120px 0;
    background: #ffffff;
}

.trust-intro {
    text-align: center;
    margin-bottom: 70px;
}

.trust-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.trust-intro p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.trust-points {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.trust-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.benefits-deep {
    padding: 100px 0;
    background: #f8f9fa;
}

.benefits-deep h2 {
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #1a1a2e;
    text-align: center;
}

.benefit-story {
    margin-bottom: 50px;
    padding: 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.benefit-story h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.benefit-story p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.cta-inline-block {
    text-align: center;
    margin-top: 60px;
}

.btn-primary-large {
    display: inline-block;
    padding: 20px 50px;
    background: #ff6b6b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.btn-primary-large:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 107, 107, 0.4);
}

.social-proof {
    padding: 100px 0;
    background: #1a1a2e;
    color: #ffffff;
}

.social-proof h2 {
    font-size: 2.4rem;
    margin-bottom: 60px;
    text-align: center;
    color: #ffffff;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial-mini {
    flex: 1;
    background: rgba(255,255,255,0.08);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-mini p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #e0e0e0;
}

.mini-author {
    display: block;
    font-weight: 600;
    color: #4ecdc4;
    font-size: 0.95rem;
}

.services-pricing {
    padding: 120px 0;
    background: #f8f9fa;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 70px;
}

.pricing-intro h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.pricing-intro p {
    font-size: 1.2rem;
    color: #4a5568;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4ecdc4;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.service-desc {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
    flex: 1;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.price-save {
    font-size: 0.95rem;
    color: #4ecdc4;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 15px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.urgency-block {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.urgency-content {
    background: rgba(255,255,255,0.95);
    padding: 50px;
    border-radius: 12px;
}

.urgency-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.urgency-content p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.final-form {
    padding: 120px 0;
    background: #ffffff;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.form-header p {
    font-size: 1.15rem;
    color: #4a5568;
}

.main-form {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-consent {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #4a5568;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.checkbox-label a {
    color: #667eea;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #ff6b6b;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-reassurance {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.reassurance-item {
    flex: 1;
    text-align: center;
}

.reassurance-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.reassurance-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #4ecdc4;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
}

.sticky-btn {
    padding: 18px 35px;
    background: #ff6b6b;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

.page-header {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.page-header .lead {
    font-size: 1.3rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-section {
    margin-bottom: 60px;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.story-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.story-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.story-section li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.team-values h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a2e;
}

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #4ecdc4;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.value-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 40px;
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-full {
    margin-bottom: 60px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    color: #ffffff;
    position: relative;
}

.service-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-badge.popular {
    background: #4ecdc4;
    color: #1a1a2e;
}

.service-badge.premium {
    background: #ffd700;
    color: #1a1a2e;
}

.service-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.service-price-large {
    font-size: 3rem;
    font-weight: 700;
}

.price-save-large {
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.9;
}

.service-content {
    display: flex;
    gap: 50px;
    padding: 50px;
}

.service-description {
    flex: 2;
}

.service-description h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-description h3:first-of-type {
    margin-top: 0;
}

.service-description p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: #2c3e50;
    line-height: 1.7;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn-select-large {
    width: 100%;
    padding: 18px 30px;
    background: #ff6b6b;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-select-large:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.delivery-info {
    font-size: 0.95rem;
    color: #4a5568;
    text-align: center;
    line-height: 1.8;
}

.service-full.premium .service-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.comparison-help {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.comparison-help h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.comparison-help p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 35px;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #667eea;
    color: #ffffff;
}

.contact-content {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-info {
    flex: 2;
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.contact-info p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 40px;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

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

.contact-note {
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
    margin-top: 10px;
}

.faq-mini {
    margin-top: 20px;
}

.faq-mini p {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-mini p:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-sidebar {
    flex: 1;
}

.contact-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.contact-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.contact-box p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    width: 100%;
    padding: 15px 30px;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #5568d3;
}

.response-time {
    padding: 80px 0;
    background: #1a1a2e;
    color: #ffffff;
}

.response-time h2 {
    font-size: 2.3rem;
    margin-bottom: 50px;
    text-align: center;
}

.response-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.thanks-page {
    padding: 100px 0;
    background: #f8f9fa;
}

.thanks-content {
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #4ecdc4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ffffff;
    margin: 0 auto 40px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 50px;
}

.order-summary {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: left;
}

.order-summary h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.order-summary p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.summary-note {
    font-size: 1.05rem;
    color: #718096;
    font-style: italic;
    margin-top: 20px;
}

.next-steps {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: left;
}

.next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.support-info {
    font-size: 1.05rem;
    color: #4a5568;
}

.support-info a {
    color: #667eea;
    font-weight: 600;
}

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

.legal-intro {
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

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

.legal-page p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-page a {
    color: #667eea;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #5568d3;
}

.note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    font-size: 1rem;
    color: #856404;
}

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

.cookies-table thead {
    background: #667eea;
    color: #ffffff;
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table tbody tr:hover {
    background: #f8f9fa;
}

@media (max-width: 1024px) {
    .split-content {
        flex-direction: column;
        gap: 40px;
    }

    .trust-points {
        flex-direction: column;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .reassurance-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-col {
        flex: 1 1 calc(50% - 15px);
        min-width: 200px;
    }

    .response-stats {
        flex-direction: column;
        gap: 30px;
    }

    .contact-grid {
        flex-direction: column;
    }

    .service-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: flex;
    }

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

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

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }

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

    .sticky-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cookies-table {
        font-size: 0.9rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .container,
    .container-narrow {
        padding: 0 15px;
    }

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

    .main-form {
        padding: 30px 20px;
    }

    .insight-box {
        padding: 30px 20px;
    }

    .story-section {
        padding: 30px 20px;
    }

    .service-full .service-content {
        padding: 30px 20px;
    }
}