:root {
    --primary-color: #1a1a2e;
    --secondary-color: #e94560;
    --accent-color: #0f3460;
    --text-dark: #16213e;
    --text-light: #f8f9fa;
    --bg-light: #ffffff;
    --bg-gray: #f4f4f4;
    --border-color: #e0e0e0;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.hidden {
    display: none !important;
}

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

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

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

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

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

.btn-nav {
    background: var(--secondary-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.hero-offset {
    margin-top: 90px;
    padding: 5rem 3rem 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-text-block {
    flex: 1;
    padding-left: 8%;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-text-block h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
    max-width: 560px;
}

.btn-hero {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.2);
}

.btn-hero:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
}

.hero-visual {
    flex: 1;
    position: relative;
    margin-top: -2rem;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

.intro-angular {
    padding: 6rem 3rem;
    background: var(--bg-gray);
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.intro-block-left {
    flex: 1;
    padding-left: 5%;
    margin-top: 2rem;
}

.intro-block-left h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--primary-color);
    font-weight: 700;
}

.intro-block-right {
    flex: 1.2;
    padding-right: 8%;
}

.intro-block-right p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.credibility-overlap {
    padding: 5rem 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.cred-image {
    flex: 0.8;
    position: relative;
    margin-left: -3rem;
}

.cred-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.12);
}

.cred-content {
    flex: 1.2;
    padding: 2rem;
    background: white;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.08);
    margin-left: -5rem;
    position: relative;
    z-index: 2;
}

.cred-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cred-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.cred-list {
    list-style: none;
}

.cred-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #444;
}

.cred-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.services-stacked {
    padding: 6rem 3rem;
    background: var(--bg-light);
}

.section-header-offset {
    max-width: 700px;
    margin-left: 10%;
    margin-bottom: 4rem;
}

.section-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.service-card-asymmetric {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 3rem 5%;
    margin-bottom: 3rem;
    position: relative;
}

.service-card-asymmetric.reverse {
    flex-direction: row-reverse;
    margin-left: 10%;
}

.service-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(233, 69, 96, 0.15);
    line-height: 1;
    margin-top: -1rem;
}

.service-details {
    flex: 1.5;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.service-includes span {
    background: var(--bg-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.service-price {
    flex: 0.8;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    align-self: center;
    transform: rotate(-1deg);
}

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

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.5rem;
}

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

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

.btn-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
}

.process-diagonal {
    padding: 6rem 3rem;
    background: var(--accent-color);
    color: white;
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.process-diagonal > * {
    transform: skewY(2deg);
}

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

.process-steps {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.step p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.testimonials-scattered {
    padding: 6rem 3rem;
    background: var(--bg-gray);
}

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

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

.testimonial {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-1 {
    transform: rotate(-1deg);
    margin-top: 2rem;
}

.testimonial-2 {
    transform: rotate(0.5deg);
}

.testimonial-3 {
    transform: rotate(-0.8deg);
    margin-top: 3rem;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.95rem;
    color: #777;
}

.values-offset {
    padding: 6rem 3rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.values-visual {
    flex: 1;
    position: relative;
    margin-right: -2rem;
}

.values-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.12);
}

.values-content {
    flex: 1.2;
    padding: 2rem;
    padding-right: 8%;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

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

.btn-inline {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.faq-alternating {
    padding: 6rem 3rem;
    background: var(--bg-light);
}

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

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

.faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-item:nth-child(even) {
    margin-left: 10%;
}

.faq-item:nth-child(odd) {
    margin-right: 10%;
}

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

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

.contact-form-creative {
    padding: 6rem 3rem;
    background: var(--bg-gray);
}

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

.form-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 1.15rem;
    color: #666;
}

.form-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex-basis: 100%;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    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(--secondary-color);
}

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

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
}

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

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

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

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

.footer-brand p {
    font-size: 1rem;
    opacity: 0.9;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.btn-sticky {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(233, 69, 96, 0.5);
}

.page-hero-offset {
    margin-top: 90px;
    padding: 5rem 3rem 3rem;
    background: var(--bg-gray);
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.page-hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #666;
}

.story-angular {
    padding: 6rem 3rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image {
    flex: 0.9;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.12);
    transform: rotate(-2deg);
}

.story-content {
    flex: 1.1;
    padding: 2rem;
}

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

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

.philosophy-scattered {
    padding: 6rem 3rem;
    background: var(--bg-gray);
}

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

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

.philosophy-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.philosophy-card.card-2 {
    transform: rotate(0.8deg);
    margin-top: 2rem;
}

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

.philosophy-card.card-4 {
    transform: rotate(1deg);
    margin-top: 2rem;
}

.philosophy-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.philosophy-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.expertise-overlap {
    padding: 6rem 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.expertise-content {
    flex: 1.2;
    padding: 2rem;
}

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

.expertise-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expertise-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.expertise-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.expertise-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.expertise-item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.expertise-visual {
    flex: 0.8;
    position: relative;
    margin-right: -3rem;
}

.expertise-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.12);
}

.values-diagonal {
    padding: 6rem 3rem;
    background: var(--bg-gray);
}

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

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

.value-block {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: white;
    border-top: 4px solid var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.approach-stacked {
    padding: 6rem 3rem;
}

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

.approach-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-header p {
    font-size: 1.2rem;
    color: #666;
}

.approach-steps {
    max-width: 900px;
    margin: 0 auto;
}

.approach-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 2rem;
}

.approach-step:nth-child(odd) {
    margin-left: 10%;
}

.approach-step:nth-child(even) {
    margin-right: 10%;
    background: var(--bg-gray);
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.cta-creative {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta-large {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-cta-large:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    padding: 3rem;
    align-items: flex-start;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
    margin-left: 8%;
}

.service-detail-card:nth-child(odd) {
    margin-right: 8%;
}

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

.service-detail-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.12);
}

.service-detail-content {
    flex: 1.3;
}

.service-category {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.service-features {
    margin: 2rem 0;
}

.service-features h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.service-features ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

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

.service-pricing-detail {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-gray);
    border-radius: 8px;
}

.price-from {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.5rem;
}

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

.btn-service-detail {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service-detail:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
}

.services-detailed {
    padding: 6rem 3rem;
}

.custom-project {
    padding: 5rem 3rem;
    background: var(--accent-color);
    color: white;
    text-align: center;
}

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

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

.custom-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.btn-custom {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.packages-offset {
    padding: 6rem 3rem;
    background: var(--bg-gray);
}

.packages-offset h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.packages-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.packages-grid {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.package-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.package-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.package-desc {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

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

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-package {
    display: block;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-package:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
}

.contact-split {
    padding: 6rem 3rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    padding: 2rem;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info-block > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.contact-detail a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.contact-note {
    padding: 1.5rem;
    background: var(--bg-gray);
    border-left: 4px solid var(--secondary-color);
    margin-top: 3rem;
}

.contact-note p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-approach {
    padding: 6rem 3rem;
    background: var(--bg-gray);
}

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

.approach-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-item:nth-child(even) {
    margin-left: 10%;
}

.timeline-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.faq-contact {
    padding: 6rem 3rem;
}

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

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

.faq-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

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

.availability-note {
    padding: 5rem 3rem;
    background: var(--accent-color);
    color: white;
    text-align: center;
}

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

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

.availability-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-availability {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-availability:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.alternative-contact {
    padding: 6rem 3rem;
    background: var(--bg-gray);
}

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

.alternative-grid {
    display: flex;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.alternative-item {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.alternative-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.link-external {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-external:hover {
    color: var(--primary-color);
}

.thanks-hero {
    margin-top: 90px;
    padding: 6rem 3rem;
    background: var(--bg-light);
    text-align: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
}

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

.thanks-lead {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
}

.service-selected {
    background: var(--bg-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.next-steps {
    list-style: decimal;
    padding-left: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.next-steps li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-note {
    background: #fff8dc;
    padding: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    margin: 3rem 0;
}

.thanks-note p {
    margin: 0;
    color: #555;
}

.thanks-resources {
    padding: 5rem 3rem;
    background: var(--bg-gray);
}

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

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

.resource-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.resource-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.resource-card p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-resource {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-resource:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.thanks-testimonial {
    padding: 5rem 3rem;
}

.testimonial-thanks {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-thanks p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-page {
    margin-top: 90px;
    padding: 4rem 3rem;
    background: var(--bg-light);
}

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

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

.legal-intro {
    font-size: 1rem;
    color: #777;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.legal-container ul,
.legal-container ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.8rem;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

.gdpr-table th,
.cookie-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.gdpr-table td,
.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.gdpr-table tr:hover,
.cookie-table tr:hover {
    background: var(--bg-gray);
}

@media (max-width: 968px) {
    .nav-asymmetric {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-offset {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }

    .hero-text-block {
        padding-left: 0;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .intro-angular,
    .story-angular,
    .credibility-overlap,
    .values-offset,
    .expertise-overlap,
    .contact-split {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .intro-block-left,
    .intro-block-right {
        padding: 0;
    }

    .cred-image,
    .values-visual,
    .expertise-visual {
        margin: 0;
    }

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

    .service-card-asymmetric,
    .service-card-asymmetric.reverse {
        flex-direction: column;
        margin-left: 0;
        padding: 2rem 1.5rem;
    }

    .service-price {
        transform: rotate(0);
    }

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

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

    .testimonial-1,
    .testimonial-2,
    .testimonial-3 {
        transform: rotate(0);
        margin-top: 0;
    }

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

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        margin: 0 0 3rem 0;
        padding: 2rem 1.5rem;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

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

    .package-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .form-asymmetric {
        padding: 2rem 1.5rem;
    }

    .form-group {
        min-width: 100%;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }
}