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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

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

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

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

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

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

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

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.hero-split {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.btn-primary,
.btn-secondary,
.btn-primary-large {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background: #fff;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary-large {
    background: var(--secondary-color);
    color: #fff;
    padding: 18px 48px;
    font-size: 18px;
}

.btn-primary-large:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.insight-block {
    padding: 60px 20px;
    background: var(--light-bg);
}

.insight-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--primary-color);
    font-style: italic;
    text-align: center;
}

.split-section {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    align-items: center;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left img,
.split-right img {
    width: 100%;
    border-radius: 8px;
}

.split-right h2,
.split-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.split-right p,
.split-left p {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-top: 16px;
}

.link-arrow:after {
    content: ' →';
    margin-left: 8px;
}

.services-preview {
    padding: 80px 20px;
    background: #fff;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
}

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

.card-icon {
    margin-bottom: 24px;
    color: var(--secondary-color);
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
}

.services-cta {
    text-align: center;
}

.testimonial-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.split-left-content,
.split-right-content {
    flex: 1;
}

.split-left-content blockquote {
    padding: 40px;
    background: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
}

.split-left-content cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.split-right-content img {
    width: 100%;
    border-radius: 8px;
}

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

.methodology-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.methodology-steps {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 240px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
    opacity: 0.3;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
}

.problem-section {
    padding: 80px 20px;
    background: #fff;
}

.problem-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    padding: 16px 0 16px 40px;
    position: relative;
    font-size: 18px;
    border-bottom: 1px solid var(--border-color);
}

.problem-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 20px;
}

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

.stats-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 12px;
}

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

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

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

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 18px;
    color: #666;
}

.main-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

.main-form button[type="submit"] {
    width: 100%;
    background: var(--secondary-color);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.main-form button[type="submit"]:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

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

.cta-final p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.main-footer {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 20px 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #fff;
    opacity: 0.8;
    transition: var(--transition);
}

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

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    transition: var(--transition);
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    padding: 24px 20px;
    transition: var(--transition);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.btn-accept {
    background: var(--secondary-color);
    color: #fff;
}

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

.btn-reject {
    background: #e0e0e0;
    color: var(--text-color);
}

.btn-reject:hover {
    background: #ccc;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-lead {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    align-items: center;
}

.split-content-left,
.split-content-right {
    flex: 1;
}

.split-content-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.split-content-left p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.split-content-right img {
    width: 100%;
    border-radius: 8px;
}

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

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.6;
}

.team-intro {
    padding: 80px 20px;
    background: #fff;
}

.team-intro h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.team-intro p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.experience-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.experience-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-left,
.experience-right {
    flex: 1;
}

.experience-left h3,
.experience-right h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.industry-list {
    list-style: none;
    padding: 0;
}

.industry-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
}

.industry-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 24px;
}

.experience-right p {
    font-size: 16px;
    line-height: 1.7;
}

.approach-section {
    padding: 80px 20px;
    background: #fff;
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.approach-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cta-about {
    padding: 80px 20px;
    background: var(--light-bg);
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #666;
}

.services-detailed {
    padding: 40px 20px 80px;
}

.service-detail {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
    align-items: flex-start;
}

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

.service-detail-left {
    flex: 1.5;
}

.service-detail-right {
    flex: 1;
}

.service-detail-left h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-tagline {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 24px;
    font-weight: 600;
}

.service-detail-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-left h4 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-benefits {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 16px;
}

.service-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 20px;
    font-weight: bold;
}

.price-box {
    background: var(--light-bg);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 24px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.service-detail-right img {
    width: 100%;
    border-radius: 8px;
    margin-top: 24px;
}

.pricing-notes {
    padding: 60px 20px;
    background: var(--light-bg);
}

.pricing-notes h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.note-box {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.note-box p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.note-box p:last-child {
    margin-bottom: 0;
}

.cta-services {
    padding: 80px 20px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.contact-content {
    padding: 60px 20px 80px;
}

.contact-split {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info,
.contact-form-wrapper {
    flex: 1;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 16px;
    line-height: 1.6;
}

.info-note {
    background: var(--light-bg);
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.info-note p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.thanks-hero {
    padding: 80px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    margin: 0 auto 32px;
    color: #27ae60;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.service-confirmation {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
}

.thanks-next {
    margin-bottom: 48px;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.next-steps li {
    counter-increment: step-counter;
    padding: 16px 0 16px 50px;
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
}

.next-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 32px;
    height: 32px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.thanks-contact {
    font-size: 16px;
    color: #666;
}

.legal-page {
    padding: 60px 20px 80px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 48px;
    color: #666;
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

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

.legal-links {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.legal-links p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.legal-links li {
    margin-bottom: 8px;
}

.legal-links a {
    font-size: 16px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

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

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

    .split-section,
    .about-split,
    .testimonial-split,
    .experience-split,
    .service-detail {
        flex-direction: column;
    }

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

    .methodology-steps {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .sticky-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }
}