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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-color: #f59e0b;
    --error-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

.container-offset {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    margin-left: 10%;
}

.nav-floating {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
}

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

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

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

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
}

.hero-offset-left {
    width: 55%;
    padding-right: 60px;
    margin-left: 8%;
    z-index: 2;
}

.hero-text-block {
    max-width: 600px;
}

.hero-text-block h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.hero-lead {
    font-size: 22px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-offset-right {
    position: absolute;
    right: 0;
    top: 20%;
    width: 45%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
    color: white;
}

.intro-overlap {
    margin-top: -100px;
    padding: 0 20px 100px;
    position: relative;
    z-index: 3;
}

.overlap-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto;
    transform: rotate(-1deg);
}

.overlap-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.overlap-card p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.7;
}

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

.split-visual {
    width: 45%;
    margin-left: -50px;
}

.split-visual img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.split-content {
    width: 55%;
    padding-right: 10%;
}

.split-content h3 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
}

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

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s ease;
}

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

.insight-block {
    background: var(--bg-light);
    padding: 100px 20px;
    margin: 80px 0;
    transform: skewY(-2deg);
}

.insight-content {
    transform: skewY(2deg);
    max-width: 800px;
}

.insight-label {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.insight-content h2 {
    font-size: 44px;
    margin-bottom: 25px;
    line-height: 1.3;
}

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

.services-showcase {
    padding: 120px 20px;
}

.services-header-asymmetric {
    max-width: 700px;
    margin-bottom: 80px;
    margin-left: 8%;
}

.services-header-asymmetric h2 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    width: calc(50% - 20px);
}

.service-card-elevated:nth-child(odd) {
    transform: translateY(40px);
}

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

.service-visual img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 40px;
}

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

.service-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

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

.service-features li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.btn-select-service {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.trust-indicators {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.trust-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
}

.trust-label {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 200px;
}

.testimonial-asymmetric {
    display: flex;
    align-items: center;
    padding: 120px 20px;
    gap: 60px;
}

.testimonial-offset {
    width: 60%;
    padding-left: 10%;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    transform: rotate(1deg);
}

.testimonial-card blockquote {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card cite {
    font-size: 16px;
    color: var(--text-gray);
    font-style: normal;
}

.testimonial-visual {
    width: 40%;
}

.testimonial-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

.process-flow {
    padding: 120px 20px;
    background: white;
}

.process-flow h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 80px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.process-step {
    width: calc(50% - 20px);
    max-width: 400px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 16px;
    position: relative;
}

.process-step:nth-child(even) {
    transform: translateY(40px);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.benefits-overlap {
    position: relative;
    margin: 100px 0;
    min-height: 600px;
}

.benefits-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.benefits-visual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.benefits-content-overlay {
    position: relative;
    z-index: 2;
    padding: 100px 20px;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-content-overlay h2 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    width: calc(50% - 20px);
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.benefit-item h4 {
    font-size: 24px;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

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

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    margin-right: 15%;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-intro {
    margin-bottom: 40px;
}

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

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

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    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: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: start;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
}

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

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.cta-sticky-wrapper {
    position: sticky;
    bottom: 0;
    z-index: 100;
}

.cta-sticky {
    background: var(--text-dark);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cta-sticky-text {
    font-size: 18px;
    font-weight: 600;
}

.btn-cta-sticky {
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-sticky:hover {
    background: #059669;
    color: white;
}

.faq-section {
    padding: 100px 20px;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

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

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

.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 20px 30px;
}

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

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

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

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 14px;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.98);
    color: white;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

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

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background: white;
    color: var(--text-dark);
}

.page-header-offset {
    padding: 180px 20px 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.header-content-left {
    max-width: 800px;
    margin-left: 8%;
}

.header-content-left h1 {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subheading {
    font-size: 22px;
    color: var(--text-gray);
    line-height: 1.5;
}

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

.story-block {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 20px;
    transform: rotate(-0.5deg);
}

.story-block h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

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

.values-asymmetric {
    display: flex;
    gap: 80px;
    padding: 120px 20px;
    align-items: center;
}

.values-visual {
    width: 45%;
}

.values-visual img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.values-content {
    width: 55%;
    padding-right: 10%;
}

.values-content h2 {
    font-size: 48px;
    margin-bottom: 50px;
}

.value-item {
    margin-bottom: 35px;
}

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

.value-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.team-stats {
    padding: 100px 20px;
    background: var(--bg-light);
}

.team-stats h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 80px;
}

.stats-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    width: calc(50% - 20px);
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-card:nth-child(odd) {
    transform: translateY(30px);
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 15px;
}

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

.expertise-section {
    padding: 120px 20px;
}

.expertise-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.expertise-card {
    width: calc(50% - 15px);
    padding: 35px;
    background: var(--bg-light);
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
}

.expertise-card:nth-child(even) {
    transform: translateY(20px);
}

.expertise-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.expertise-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 15px;
}

.process-quality {
    padding: 100px 20px;
    background: white;
}

.quality-content-offset {
    max-width: 1000px;
    margin: 0 auto;
    margin-left: 10%;
}

.quality-content-offset h2 {
    font-size: 48px;
    margin-bottom: 60px;
}

.quality-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

.quality-step h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

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

.testimonial-full {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.testimonial-content-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.testimonial-content-center blockquote {
    font-size: 32px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-content-center cite {
    font-size: 18px;
    opacity: 0.9;
    font-style: normal;
}

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

.cta-content-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    margin-right: 15%;
    text-align: center;
}

.cta-content-asymmetric h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.btn-cta-large {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 20px 50px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-cta-large:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.4);
    color: white;
}

.pricing-intro {
    padding: 80px 20px;
}

.pricing-info-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 50px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
}

.pricing-info-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.pricing-info-card p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.pricing-benefits {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.pricing-benefits li {
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

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

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail-visual {
    width: 45%;
}

.service-detail-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-content {
    width: 55%;
}

.service-tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

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

.service-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-price-large {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.price-period {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-gray);
}

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

.service-includes h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-includes ul {
    list-style: none;
}

.service-includes ul li {
    padding: 8px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 25px;
}

.service-includes ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-ideal-for {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

.addon-card {
    width: calc(50% - 15px);
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.addon-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.addon-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.addon-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.comparison-section {
    padding: 100px 20px;
}

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

.comparison-table {
    overflow-x: auto;
}

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

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

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.comparison-table td {
    color: var(--text-gray);
    font-size: 14px;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.faq-services {
    padding: 100px 20px;
}

.cta-services {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-content-centered h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
}

.contact-info-section {
    padding: 80px 20px;
}

.contact-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
}

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

.contact-info-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 16px;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.response-time,
.timezone-note {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.contact-description {
    padding: 100px 20px;
    background: var(--bg-light);
}

.description-block {
    background: white;
    padding: 50px;
    border-radius: 20px;
}

.description-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

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

.map-placeholder {
    margin: 80px 0;
}

.map-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

.alternative-contact {
    padding: 100px 20px;
}

.alternative-contact h2 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
}

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

.alt-contact-card {
    width: calc(50% - 15px);
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
}

.alt-contact-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.alt-contact-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 15px;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 20px 100px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.thanks-container {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    margin: 0 auto 40px;
    display: inline-block;
}

.thanks-container h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.thanks-lead {
    font-size: 22px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.selected-service-info {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    padding: 100px 20px;
}

.next-steps h2 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
}

.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.timeline-step:first-child .timeline-marker {
    background: var(--secondary-color);
}

.step-checkmark {
    color: white;
    font-size: 28px;
    font-weight: bold;
}

.step-number {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
    padding-top: 5px;
}

.timeline-content h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.timestamp {
    display: inline-block;
    background: var(--bg-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
}

.while-waiting {
    padding: 100px 20px;
    background: var(--bg-light);
}

.while-waiting h2 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
}

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

.waiting-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.waiting-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}

.prep-list {
    list-style: none;
    margin-top: 15px;
}

.prep-list li {
    padding: 8px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 25px;
    font-size: 15px;
}

.prep-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.confirmation-details {
    padding: 80px 20px;
}

.confirmation-box {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid var(--accent-color);
}

.confirmation-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.confirmation-box p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-note {
    font-size: 15px;
}

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

.testimonial-center {
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-center + cite {
    display: block;
    text-align: center;
    color: var(--text-gray);
    font-style: normal;
}

.cta-thanks {
    padding: 100px 20px;
}

.legal-header {
    padding: 180px 20px 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.legal-header h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.legal-date {
    font-size: 16px;
    color: var(--text-gray);
}

.legal-content {
    padding: 80px 20px;
}

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

.legal-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--text-dark);
}

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

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

.legal-section ul,
.legal-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.contact-details {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    line-height: 1.8;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.cookie-table td {
    color: var(--text-gray);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .nav-floating {
        top: 20px;
        right: 20px;
        padding: 12px 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 140px 20px 60px;
    }

    .hero-offset-left {
        width: 100%;
        padding-right: 0;
        margin-left: 0;
    }

    .hero-text-block h1 {
        font-size: 48px;
    }

    .hero-offset-right {
        position: relative;
        width: 100%;
        top: auto;
        right: auto;
        margin-top: 50px;
    }

    .hero-image {
        border-radius: 20px;
    }

    .problem-split {
        flex-direction: column;
        gap: 40px;
        padding: 80px 20px;
    }

    .split-visual,
    .split-content {
        width: 100%;
        margin-left: 0;
        padding-right: 0;
    }

    .split-visual img {
        border-radius: 20px;
        height: 400px;
    }

    .testimonial-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .testimonial-offset,
    .testimonial-visual {
        width: 100%;
        padding-left: 0;
    }

    .values-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .values-visual,
    .values-content {
        width: 100%;
        padding-right: 0;
    }

    .service-detail-card {
        flex-direction: column !important;
        gap: 40px;
    }

    .service-detail-visual,
    .service-detail-content {
        width: 100%;
    }

    .service-card {
        width: 100%;
    }

    .service-card-elevated:nth-child(odd) {
        transform: none;
    }

    .process-step {
        width: 100%;
    }

    .process-step:nth-child(even) {
        transform: none;
    }

    .stat-card {
        width: 100%;
    }

    .stat-card:nth-child(odd) {
        transform: none;
    }

    .benefit-item,
    .expertise-card,
    .addon-card,
    .alt-contact-card {
        width: 100%;
    }

    .expertise-card:nth-child(even) {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: 20px;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        display: none;
        gap: 15px;
    }

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

    .hero-text-block h1 {
        font-size: 40px;
    }

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

    .overlap-card {
        padding: 40px 30px;
        transform: none;
    }

    .overlap-card h2 {
        font-size: 28px;
    }

    .services-header-asymmetric {
        margin-left: 0;
    }

    .services-header-asymmetric h2 {
        font-size: 38px;
    }

    .cta-sticky {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .header-content-left {
        margin-left: 0;
    }

    .header-content-left h1 {
        font-size: 40px;
    }

    .subheading {
        font-size: 18px;
    }

    .form-container-offset {
        margin-right: 0;
        padding: 40px 25px;
    }

    .quality-content-offset,
    .container-offset {
        margin-left: 0;
    }

    .cta-content-asymmetric {
        margin-right: 0;
    }

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

    .comparison-table {
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 32px;
    }

    .overlap-card h2 {
        font-size: 24px;
    }

    .split-content h3,
    .insight-content h2 {
        font-size: 32px;
    }

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

    .service-price {
        font-size: 28px;
    }

    .trust-number {
        font-size: 42px;
    }

    .testimonial-card blockquote {
        font-size: 20px;
    }

    h2 {
        font-size: 36px;
    }

    .thanks-container h1 {
        font-size: 36px;
    }
}