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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --light-accent: #0f3460;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-dark: #1a1a2e;
    --bg-light: #f8f9fa;
    --bg-dark: #0a0a14;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cookie-accept {
    background: var(--accent-color);
    color: var(--text-primary);
}

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

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    max-width: 90%;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: linear-gradient(135deg, #0a0a14 0%, #16213e 100%);
}

.hero-offset-block {
    max-width: 600px;
    z-index: 2;
    margin-left: 8%;
    transform: translateY(-3rem);
}

.hero-text-irregular {
    margin-bottom: 3rem;
}

.hero-title-split {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.accent-overlay {
    color: var(--accent-color);
    display: block;
    margin-left: 2rem;
}

.hero-subtitle-offset {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-left: 1rem;
}

.cta-hero-asymmetric {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-primary);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 8px;
    transform: rotate(-2deg);
    transition: var(--transition);
}

.cta-hero-asymmetric:hover {
    transform: rotate(0deg) scale(1.05);
    background: #d63850;
}

.hero-visual-overlap {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
}

.hero-visual-overlap img {
    width: 100%;
    border-radius: 20px;
    box-shadow: -20px 20px 60px rgba(233, 69, 96, 0.3);
    transform: rotate(3deg);
}

.intro-offset {
    padding: 8rem 2rem;
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.intro-block-left {
    flex: 1;
    transform: translateY(2rem);
}

.section-title-irregular {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-color);
}

.intro-content-right {
    flex: 1.2;
    padding-left: 3rem;
}

.text-lead {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.intro-content-right p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
}

.problem-amplify {
    background: var(--bg-light);
    padding: 6rem 2rem;
    display: flex;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.problem-visual-shift {
    flex: 1;
    transform: translateX(-3rem);
}

.problem-visual-shift img {
    border-radius: 15px;
    box-shadow: 15px 15px 50px rgba(0,0,0,0.15);
}

.problem-text-asymmetric {
    flex: 1;
    transform: translateY(-2rem);
}

.subsection-heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.problem-list-custom {
    list-style: none;
    margin: 2rem 0;
}

.problem-list-custom li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.125rem;
    color: #444;
}

.problem-list-custom li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 700;
}

.cta-inline-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--accent-color);
    font-size: 1.125rem;
    font-weight: 700;
    transition: var(--transition);
}

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

.services-preview-cards {
    padding: 8rem 2rem;
    background: var(--primary-color);
    color: var(--text-primary);
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    transform: translateX(5%);
}

.section-title-creative {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
}

.subtitle-beneath {
    display: block;
    font-size: 0.5em;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    margin-left: 3rem;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 400px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card-1 {
    transform: rotate(-1deg);
}

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

.service-card-3 {
    transform: rotate(-0.5deg);
}

.service-card-4 {
    transform: rotate(1.5deg) translateY(1rem);
}

.service-card-5 {
    transform: rotate(-1deg);
}

.service-card-6 {
    transform: rotate(0.5deg) translateY(-0.5rem);
}

.service-card:hover {
    transform: rotate(0deg) translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--text-primary);
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-select-service:hover {
    background: var(--accent-color);
    transform: scale(1.02);
}

.form-section-asymmetric {
    padding: 8rem 2rem;
    background: var(--bg-light);
    position: relative;
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 20px 20px 80px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
}

.form-header-irregular {
    margin-bottom: 3rem;
    transform: rotate(1deg);
}

.form-header-irregular h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-header-irregular p {
    font-size: 1.125rem;
    color: #666;
}

.form-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-offset-1 {
    transform: translateX(-1rem);
}

.form-offset-2 {
    transform: translateX(1rem);
}

.form-offset-3 {
    transform: translateX(-0.5rem);
}

.form-offset-4 {
    transform: translateX(0.5rem);
}

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.btn-submit-asymmetric {
    padding: 1.25rem 3rem;
    background: var(--accent-color);
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
    align-self: flex-start;
}

.btn-submit-asymmetric:hover {
    background: #d63850;
    transform: scale(1.05);
}

.trust-building {
    padding: 8rem 2rem;
    background: var(--secondary-color);
    color: var(--text-primary);
}

.trust-block-overlap {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-trust {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 4rem;
    text-align: center;
}

.testimonials-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.testimonial-offset-1 {
    transform: translateY(-2rem) rotate(-1deg);
}

.testimonial-offset-2 {
    transform: translateY(1rem) rotate(1deg);
}

.testimonial-offset-3 {
    transform: translateY(-1rem) rotate(-0.5deg);
}

.testimonial p {
    font-size: 1.125rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial cite {
    font-style: normal;
    color: var(--accent-color);
    font-weight: 600;
}

.benefits-reveal {
    padding: 8rem 2rem;
}

.benefits-header-creative {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-header-creative h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--primary-color);
}

.subtext-benefits {
    display: block;
    font-size: 0.5em;
    color: #888;
    margin-top: 0.5rem;
}

.benefits-layout-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 3rem;
    border-left: 5px solid var(--accent-color);
    background: var(--bg-light);
}

.benefit-1 {
    transform: translateX(-2rem);
}

.benefit-2 {
    transform: translateX(2rem) translateY(2rem);
}

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

.benefit-4 {
    transform: translateX(1rem);
}

.benefit-block h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-block p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
}

.cta-section-sticky {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d63850 100%);
    text-align: center;
    color: var(--text-primary);
}

.cta-content-asymmetric {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-asymmetric h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-content-asymmetric p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.cta-btn-large {
    display: inline-block;
    background: white;
    color: var(--accent-color);
    padding: 1.5rem 4rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}

.cta-btn-large:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

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

.footer-main {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-col {
    flex: 1 1 250px;
}

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

.footer-col-2 {
    transform: translateY(0.5rem);
}

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

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

.footer-col ul a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
}

.about-hero-offset {
    padding: 8rem 2rem 4rem;
    background: var(--primary-color);
    color: var(--text-primary);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-hero-text {
    flex: 1;
    transform: translateX(-2rem);
}

.about-hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
}

.about-hero-image {
    flex: 1;
    transform: translateX(2rem) rotate(2deg);
}

.about-hero-image img {
    border-radius: 20px;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.3);
}

.about-story-asymmetric {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.story-block-1 {
    flex: 1;
    transform: translateY(-2rem);
}

.story-block-1 h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.story-block-1 p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
}

.story-visual-1 {
    flex: 1;
    transform: translateY(2rem) rotate(-2deg);
}

.story-visual-1 img {
    border-radius: 15px;
    box-shadow: 15px 15px 50px rgba(0,0,0,0.15);
}

.about-evolution {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.evolution-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-emphasis {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.evolution-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-mission-irregular {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.mission-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--primary-color);
}

.mission-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.mission-block {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.mission-offset-1 {
    transform: rotate(-1deg) translateY(-1rem);
}

.mission-offset-2 {
    transform: rotate(1deg) translateY(1rem);
}

.mission-offset-3 {
    transform: rotate(-0.5deg);
}

.mission-block h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.mission-block p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
}

.about-values {
    padding: 6rem 2rem;
    background: var(--secondary-color);
    color: var(--text-primary);
}

.values-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
}

.values-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

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

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

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

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

.value-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.about-approach {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-visual {
    flex: 1;
    transform: rotate(-2deg);
}

.approach-visual img {
    border-radius: 15px;
    box-shadow: 15px 15px 50px rgba(0,0,0,0.15);
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.approach-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.cta-approach {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-primary);
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
}

.cta-approach:hover {
    background: #d63850;
    transform: scale(1.05);
}

.about-team-preview {
    padding: 6rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.about-team-preview h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.team-intro {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #555;
    line-height: 1.8;
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1.125rem;
    color: #555;
}

.about-cta-section {
    padding: 8rem 2rem;
    background: var(--primary-color);
    color: var(--text-primary);
    text-align: center;
}

.about-cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.about-cta-section p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-primary);
    text-align: center;
}

.services-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.hero-accent {
    color: var(--accent-color);
}

.services-hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.7;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail {
    margin-bottom: 6rem;
    padding: 4rem;
    background: var(--bg-light);
    border-radius: 20px;
}

.service-detail-offset-1 {
    transform: translateX(-2rem);
}

.service-detail-offset-2 {
    transform: translateX(2rem);
}

.service-detail-header {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-color);
}

.service-detail-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    flex: 1;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
}

.service-detail-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 2rem;
}

.service-description {
    flex: 1;
}

.service-description h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.125rem;
    color: #555;
}

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

.service-visual {
    flex: 1;
    max-width: 400px;
}

.service-visual img {
    border-radius: 15px;
    box-shadow: 15px 15px 50px rgba(0,0,0,0.1);
}

.service-premium {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(15, 52, 96, 0.1) 100%);
    border: 2px solid var(--accent-color);
}

.service-badge {
    background: var(--accent-color);
    color: var(--text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.btn-select-service-page {
    padding: 1.25rem 3rem;
    background: var(--accent-color);
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-select-service-page:hover {
    background: #d63850;
    transform: scale(1.05);
}

.services-comparison {
    padding: 6rem 2rem;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

.services-comparison h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-intro {
    font-size: 1.25rem;
    text-align: center;
    color: #555;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.comparison-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
}

.comparison-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.comparison-item p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.6;
}

.services-form-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.services-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

.services-form-container h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-form-container > p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.form-services {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.btn-submit-services {
    padding: 1.25rem 3rem;
    background: var(--accent-color);
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
    align-self: flex-start;
}

.btn-submit-services:hover {
    background: #d63850;
    transform: scale(1.05);
}

.contact-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-primary);
    text-align: center;
}

.contact-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.contact-hero-text {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.contact-main-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-note {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
}

.contact-note p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-visual-block {
    flex: 1;
    transform: rotate(2deg);
}

.contact-visual-block img {
    border-radius: 15px;
    box-shadow: 15px 15px 50px rgba(0,0,0,0.15);
}

.contact-cta-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-cta-section p {
    font-size: 1.25rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
}

.cta-btn-secondary:hover {
    background: var(--accent-color);
    color: white;
}

.contact-faq {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-faq h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
}

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

.faq-item p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
}

.contact-ready {
    padding: 8rem 2rem;
    background: var(--primary-color);
    color: var(--text-primary);
    text-align: center;
}

.contact-ready h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.contact-ready p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.thanks-hero {
    padding: 10rem 2rem 6rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-primary);
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.thanks-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.thanks-service-info {
    font-size: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: inline-block;
}

.thanks-next-steps {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.thanks-next-steps h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 4rem;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
}

.thanks-explore {
    padding: 6rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.thanks-explore h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-explore p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
}

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

.btn-explore {
    padding: 1.25rem 3rem;
    background: var(--accent-color);
    color: var(--text-primary);
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-explore:hover {
    background: #d63850;
    transform: scale(1.05);
}

.btn-explore-secondary {
    padding: 1.25rem 3rem;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-explore-secondary:hover {
    background: var(--accent-color);
    color: white;
}

.thanks-contact {
    padding: 6rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-contact h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-contact p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #555;
}

.thanks-contact a {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: underline;
}

.legal-page {
    padding: 8rem 2rem 4rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 1.125rem;
    color: #888;
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

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

.legal-section li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

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

.cookies-table td {
    font-size: 1rem;
    color: #555;
}

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

    .hero-visual-overlap {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 500px;
        margin-top: 3rem;
    }

    .intro-offset,
    .problem-amplify,
    .about-story-asymmetric,
    .about-approach,
    .contact-main-section {
        flex-direction: column;
    }

    .intro-block-left,
    .problem-visual-shift,
    .problem-text-asymmetric,
    .approach-visual,
    .approach-content {
        transform: none;
    }

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

@media (max-width: 768px) {
    .nav-floating {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 2rem;
        border-radius: 20px;
        display: none;
        width: 90%;
        max-width: 400px;
    }

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

    .hero-offset-block {
        margin-left: 0;
        transform: none;
    }

    .form-container-offset {
        transform: none;
        padding: 2rem;
    }

    .form-offset-1,
    .form-offset-2,
    .form-offset-3,
    .form-offset-4 {
        transform: none;
    }

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

    .service-detail {
        padding: 2rem;
        transform: none;
    }

    .service-detail-offset-1,
    .service-detail-offset-2 {
        transform: none;
    }

    .about-hero-offset {
        flex-direction: column;
    }

    .about-hero-text,
    .about-hero-image {
        transform: none;
    }

    .contact-visual-block {
        transform: none;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        padding: 0;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }

    .services-grid-asymmetric {
        gap: 1.5rem;
    }

    .service-card {
        transform: none;
    }

    .service-card:hover {
        transform: translateY(-10px);
    }
}