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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-color: #22c55e;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--highlight-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: relative;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-offset {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 5% 5% 5% 8%;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 70vh;
    z-index: 1;
    transform: rotate(3deg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border-radius: 12px;
}

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

.hero-text-float {
    position: relative;
    z-index: 2;
    max-width: 600px;
    background: var(--white);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--highlight-color);
    transform: translateX(-2rem);
}

.hero-text-float h1 {
    font-size: 3rem;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-text-float p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--highlight-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #d93d56;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.intro-asymmetric {
    display: flex;
    flex-wrap: wrap;
    padding: 8% 5%;
    gap: 4rem;
    background: var(--light-bg);
    position: relative;
}

.intro-block-left {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
    transform: translateY(3rem);
}

.intro-block-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.intro-block-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-block-right {
    flex: 0 0 400px;
    position: relative;
    transform: translateY(-2rem);
}

.intro-block-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
}

.insight-stagger {
    padding: 10% 5%;
    background: var(--white);
}

.insight-text {
    max-width: 700px;
    margin-bottom: 4rem;
    padding-left: 15%;
}

.insight-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.insight-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

.insight-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 5%;
}

.card-offset {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card-1 {
    transform: translateY(-2rem);
}

.card-2 {
    transform: translateY(1rem);
}

.card-3 {
    transform: translateY(-1rem);
}

.card-offset:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.card-offset h4 {
    color: var(--highlight-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.services-preview {
    padding: 8% 5%;
    background: var(--light-bg);
}

.services-preview h2 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-featured {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.service-featured h3,
.service-featured p {
    color: var(--white);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.service-card p {
    flex-grow: 1;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

.service-featured .price {
    color: var(--highlight-color);
}

.price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    display: block;
    margin-top: 0.3rem;
}

.cta-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-featured .cta-service {
    background: var(--highlight-color);
}

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

.services-cta-center {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.trust-builder {
    position: relative;
    padding: 10% 5%;
    background: var(--secondary-color);
    color: var(--white);
    overflow: hidden;
}

.trust-visual-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(15, 52, 96, 0.2) 100%);
    transform: skewX(-15deg);
    transform-origin: top right;
}

.trust-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.trust-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.trust-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 3rem;
}

.stats-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 3rem;
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
}

.stat span {
    font-size: 1rem;
    opacity: 0.9;
}

.testimonials-stacked {
    padding: 8% 5%;
    background: var(--light-bg);
}

.testimonials-stacked h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.testimonial-block {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: var(--white);
    border-left: 5px solid var(--highlight-color);
    box-shadow: var(--shadow-sm);
}

.offset-right {
    margin-left: auto;
    margin-right: 0;
    border-left: none;
    border-right: 5px solid var(--accent-color);
}

.testimonial-block blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-block cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

.why-now {
    display: flex;
    flex-wrap: wrap;
    padding: 8% 5%;
    gap: 4rem;
    align-items: center;
}

.why-content-offset {
    flex: 1;
    min-width: 300px;
    padding-right: 3rem;
}

.why-content-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.why-content-offset p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-inline-link {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--highlight-color);
    margin-top: 1rem;
    transition: all 0.3s ease;
}

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

.why-visual {
    flex: 0 0 450px;
    position: relative;
}

.why-visual img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
}

.process-creative {
    padding: 8% 5%;
    background: var(--light-bg);
}

.process-creative h2 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-1 {
    transform: translateY(-1.5rem);
}

.step-2 {
    transform: translateY(1rem);
}

.step-3 {
    transform: translateY(-0.5rem);
}

.step-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--highlight-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.form-section {
    padding: 8% 5%;
    background: var(--secondary-color);
    color: var(--white);
}

.form-intro {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

.form-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--highlight-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d93d56;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer-asymmetric {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--highlight-color);
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

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

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--highlight-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #d93d56;
    transform: scale(1.05);
}

.about-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 6% 5%;
    gap: 3rem;
    background: var(--light-bg);
}

.about-hero-text {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.about-hero-text h1 {
    font-size: 3rem;
    color: var(--primary-color);
}

.about-hero-image {
    flex: 1;
    min-width: 300px;
}

.about-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.about-story {
    display: flex;
    flex-wrap: wrap;
    padding: 8% 5%;
    gap: 4rem;
    align-items: center;
}

.story-block {
    flex: 1;
    min-width: 300px;
}

.story-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.story-visual {
    flex: 0 0 400px;
}

.story-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.values-asymmetric {
    padding: 8% 5%;
    background: var(--light-bg);
}

.values-asymmetric h2 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.value-1 {
    transform: translateY(-1rem);
}

.value-2 {
    transform: translateY(1.5rem);
}

.value-3 {
    transform: translateY(-0.5rem);
}

.value-card h3 {
    color: var(--highlight-color);
    margin-bottom: 1.2rem;
}

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

.team-section {
    padding: 8% 5%;
}

.team-section h2 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    flex: 0 0 300px;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
}

.approach-section {
    display: flex;
    flex-wrap: wrap;
    padding: 8% 5%;
    gap: 4rem;
    background: var(--light-bg);
    align-items: center;
}

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

.approach-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.approach-visual {
    flex: 0 0 450px;
}

.approach-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.results-section {
    padding: 8% 5%;
    background: var(--secondary-color);
    color: var(--white);
}

.results-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

.results-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.stat-large {
    text-align: center;
    flex: 0 0 300px;
}

.stat-large strong {
    display: block;
    font-size: 4rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.stat-large span {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-about {
    padding: 8% 5%;
    text-align: center;
    background: var(--light-bg);
}

.cta-about h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.services-header {
    padding: 6% 5%;
    text-align: center;
    background: var(--light-bg);
}

.services-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-main {
    padding: 4% 5%;
}

.service-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-premium {
    background: var(--primary-color);
    color: var(--white);
}

.service-premium h2,
.service-premium p,
.service-premium li {
    color: var(--white);
}

.service-urgent {
    border: 3px solid var(--highlight-color);
}

.service-visual {
    flex: 0 0 400px;
}

.service-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

.service-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.service-includes li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: var(--text-light);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-price {
    margin-bottom: 2rem;
}

.service-price strong {
    font-size: 2.5rem;
    color: var(--highlight-color);
    display: block;
    margin-bottom: 0.5rem;
}

.service-price span {
    font-size: 1rem;
    color: var(--text-light);
}

.btn-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--highlight-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.services-custom {
    padding: 6% 5%;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.custom-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.custom-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.pricing-note {
    padding: 4% 5%;
    background: var(--light-bg);
    text-align: center;
}

.pricing-note h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-note p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-cta {
    padding: 6% 5%;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-header {
    padding: 6% 5%;
    text-align: center;
    background: var(--light-bg);
}

.contact-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.contact-main {
    display: flex;
    flex-wrap: wrap;
    padding: 6% 5%;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.contact-item a {
    color: var(--highlight-color);
    font-weight: 600;
}

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

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 0 0 500px;
}

.contact-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.contact-next-steps {
    padding: 6% 5%;
    background: var(--light-bg);
}

.contact-next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.steps-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.step-contact {
    flex: 0 0 320px;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.step-number {
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--highlight-color);
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.step-contact h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.contact-alternative {
    padding: 6% 5%;
    text-align: center;
}

.contact-alternative h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-alternative p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-faq {
    padding: 6% 5%;
    background: var(--light-bg);
}

.contact-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.thanks-hero {
    padding: 8% 5%;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-confirmation {
    margin-bottom: 4rem;
}

.thanks-details h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.thanks-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.thanks-step {
    flex: 0 0 300px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    text-align: center;
}

.thanks-step strong {
    display: block;
    font-size: 1.3rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

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

.service-reference {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--light-bg);
    border-left: 4px solid var(--highlight-color);
    border-radius: 6px;
}

.service-reference p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.thanks-meanwhile {
    padding: 6% 5%;
    background: var(--light-bg);
}

.thanks-meanwhile h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.thanks-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.thanks-link-card {
    flex: 0 0 300px;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.thanks-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.thanks-link-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-link-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-note {
    padding: 4% 5%;
    text-align: center;
}

.thanks-note p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.thanks-note a {
    color: var(--highlight-color);
    font-weight: 600;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 6% 5%;
}

.legal-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-intro {
    margin-bottom: 3rem;
}

.legal-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-section ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.legal-section a {
    color: var(--highlight-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: #d93d56;
}

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

@media (max-width: 968px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero-offset {
        min-height: auto;
        padding: 10% 5%;
    }

    .hero-visual {
        position: relative;
        width: 100%;
        right: 0;
        top: 0;
        height: 350px;
        transform: none;
        margin-bottom: 2rem;
    }

    .hero-text-float {
        transform: none;
        padding: 2rem;
    }

    .hero-text-float h1 {
        font-size: 2.2rem;
    }

    .intro-block-left,
    .intro-block-right {
        transform: none;
    }

    .intro-block-right {
        flex: 1;
    }

    .intro-block-right img {
        height: 400px;
        transform: none;
    }

    .card-1,
    .card-2,
    .card-3 {
        transform: none;
    }

    .step-1,
    .step-2,
    .step-3 {
        transform: none;
    }

    .value-1,
    .value-2,
    .value-3 {
        transform: none;
    }

    .service-featured {
        transform: none;
    }

    .why-visual img {
        transform: none;
        height: 400px;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 668px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-text-float h1 {
        font-size: 1.8rem;
    }

    .stat strong,
    .stat-large strong {
        font-size: 2.5rem;
    }

    .services-preview h2,
    .trust-content h2 {
        font-size: 2rem;
    }
}
