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

:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --secondary-color: #00c896;
    --text-dark: #1a1a2e;
    --text-light: #f4f4f9;
    --text-gray: #6c757d;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --bg-dark: #1a1a2e;
    --border-color: #e0e0e0;
    --accent-orange: #ff6b35;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

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

.container.narrow {
    max-width: 800px;
}

.center {
    text-align: center;
}

.hidden {
    display: none;
}

.main-nav {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

.btn-accept, .btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--bg-dark);
}

.btn-accept:hover {
    background-color: #00b582;
}

.btn-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
    background-color: var(--bg-gray);
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.cta-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: var(--accent-orange);
    color: var(--text-light);
}

.cta-secondary:hover {
    background-color: #e65a2e;
    transform: translateY(-2px);
}

.trust-bar {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 20px;
    text-align: center;
}

.trust-text {
    margin: 0;
    font-size: 16px;
    color: var(--text-light);
    opacity: 0.9;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.split-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.problem-section {
    background-color: var(--bg-light);
}

.insight-block {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
}

.insight-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.insight-block p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 25px;
    opacity: 0.95;
}

.services-grid {
    background-color: var(--bg-gray);
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 20px;
    color: var(--text-gray);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

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

.card-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select, .btn-submit {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--text-dark);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-select:hover, .btn-submit:hover {
    background-color: var(--primary-color);
}

.testimonial-inline {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.testimonial-inline blockquote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    border-left: 5px solid var(--secondary-color);
    padding-left: 30px;
    margin: 0;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-gray);
}

.process-split {
    background-color: var(--bg-gray);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.step-text p {
    color: var(--text-gray);
}

.social-proof {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

.social-proof h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
}

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

.industry-item {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-gray);
    border-radius: 8px;
}

.industry-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.industry-item p {
    color: var(--text-gray);
}

.cta-form-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 100px 20px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background-color: var(--bg-light);
}

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

.final-push {
    background-color: var(--bg-gray);
    padding: 80px 20px;
}

.final-push h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-push p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.7;
}

.page-hero {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 100px 20px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.story-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.values-section {
    background-color: var(--bg-gray);
    padding: 100px 20px;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    padding: 35px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.team-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.team-section p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 20px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

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

.stat-number {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.approach-section {
    background-color: var(--bg-gray);
}

.cta-simple {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

.cta-simple h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-simple p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.services-detailed {
    background-color: var(--bg-light);
}

.service-detail {
    padding: 80px 20px;
}

.service-detail.alt {
    background-color: var(--bg-gray);
}

.service-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.15;
    margin-bottom: 20px;
}

.service-detail h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.service-detail h3 {
    font-size: 24px;
    margin: 30px 0 15px;
}

.feature-list {
    margin: 20px 0;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

.pricing-box {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--bg-gray);
    border-radius: 8px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price span {
    font-size: 22px;
    font-weight: 400;
    color: var(--text-gray);
}

.pricing-box p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.comparison-section {
    background-color: var(--bg-gray);
    padding: 80px 20px;
}

.comparison-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.compare-item {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.compare-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.compare-arrow {
    font-size: 28px;
    color: var(--primary-color);
    margin: 15px 0;
}

.form-section {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
}

.form-section > p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.contact-info-section {
    padding: 80px 20px;
    background-color: var(--bg-gray);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-info-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-info-card address {
    font-style: normal;
    line-height: 1.8;
}

.hours {
    line-height: 1.8;
}

.contact-approach {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.contact-approach h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.timeline-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-contact {
    background-color: var(--bg-gray);
    padding: 80px 20px;
}

.faq-contact h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.map-placeholder {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.map-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-box img {
    width: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 46, 0.9);
    color: var(--text-light);
    padding: 20px;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
}

.alternative-contact {
    background-color: var(--bg-gray);
    padding: 80px 20px;
}

.alternative-contact h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.alternative-contact p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.thanks-hero {
    background-color: var(--bg-light);
    padding: 100px 20px 60px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.lead {
    font-size: 20px;
    color: var(--text-gray);
}

.thanks-details {
    background-color: var(--bg-gray);
    padding: 80px 20px;
}

.thanks-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
}

.thanks-box h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-text p {
    color: var(--text-gray);
    line-height: 1.7;
}

.service-confirmation {
    margin-top: 30px;
    padding: 30px;
    background-color: var(--bg-gray);
    border-radius: 8px;
}

.service-selected h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-note {
    color: var(--text-gray);
}

.while-you-wait {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.while-you-wait h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.resource-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    padding: 35px;
    background-color: var(--bg-gray);
    border-radius: 8px;
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.resource-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.link-arrow:hover {
    text-decoration: underline;
}

.thanks-cta {
    background-color: var(--bg-gray);
    padding: 80px 20px;
}

.thanks-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.thanks-cta p {
    font-size: 18px;
    color: var(--text-gray);
}

.thanks-cta a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-header {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 20px 60px;
}

.legal-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.legal-date {
    opacity: 0.8;
    font-size: 16px;
}

.legal-content {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 24px;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.legal-section p {
    margin-bottom: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.legal-section ul {
    margin: 15px 0 15px 25px;
}

.legal-section li {
    margin-bottom: 10px;
    color: var(--text-gray);
    line-height: 1.7;
}

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

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

.legal-section strong {
    color: var(--text-dark);
}

.legal-section address {
    font-style: normal;
    line-height: 1.8;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .split-container {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }

    .split-container.reverse {
        flex-direction: column;
    }

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

    .form-row {
        flex-direction: column;
    }

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

    .service-card {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-light);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-content h1 {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

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