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

:root {
    --primary-color: #1a4d6d;
    --secondary-color: #2d7ba8;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

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

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

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

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

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 90%;
}

.nav-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: 0.3s;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

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

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-offset-left {
    flex: 1;
    max-width: 600px;
    margin-left: 5%;
    z-index: 2;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-hero:hover {
    background: #ff8555;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 50%;
    z-index: 1;
}

.hero-image-overlap img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transform: rotate(3deg);
}

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

.intro-narrow {
    max-width: 700px;
    margin: 0 auto 0 10%;
}

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

.intro-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.problem-amplify {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 6rem 4rem;
    background: var(--bg-white);
}

.problem-visual {
    flex: 0 0 45%;
}

.problem-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.problem-text-offset {
    flex: 1;
    padding-left: 2rem;
}

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

.problem-text-offset p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.inline-cta {
    margin-top: 2rem;
}

.cta-link {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    transition: all 0.3s;
}

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

.trust-layered {
    padding: 6rem 4rem;
    background: var(--primary-color);
    color: var(--text-light);
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-stats-block {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.trust-text-overlap {
    flex: 1;
}

.trust-text-overlap h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.trust-text-overlap p {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.categories-header-offset {
    max-width: 600px;
    margin: 0 0 3rem 8%;
}

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

.categories-header-offset p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

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

.category-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.category-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
}

.card-large {
    flex: 1 1 calc(50% - 1rem);
    min-width: 350px;
}

.card-medium {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
}

.card-small {
    flex: 1 1 calc(33.33% - 1.5rem);
    min-width: 280px;
}

.testimonial-offset {
    padding: 6rem 4rem;
    background: var(--bg-white);
    display: flex;
    gap: 3rem;
}

.testimonial-quote-large {
    flex: 1;
    padding-right: 2rem;
}

.testimonial-quote-large blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-dark);
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
}

.testimonial-quote-large cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-style: normal;
    color: var(--text-gray);
}

.testimonial-small-stack {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-small-stack blockquote {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-small-stack cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: normal;
}

.insight-reveal {
    padding: 6rem 4rem;
    background: var(--bg-light);
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-content-offset {
    flex: 1;
    padding-right: 2rem;
}

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

.insight-content-offset p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.insight-image-overlap {
    flex: 0 0 40%;
}

.insight-image-overlap img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: rotate(-2deg);
}

.services-preview-asymmetric {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.section-title-offset {
    font-size: 2.8rem;
    margin: 0 0 3rem 8%;
    color: var(--primary-color);
}

.services-cards-stacked {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-offset-1 {
    margin-left: 0;
}

.service-offset-2 {
    margin-left: 8%;
}

.service-offset-3 {
    margin-left: 4%;
}

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

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

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

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

.cta-service:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.benefits-layered {
    padding: 6rem 4rem;
    background: var(--bg-light);
    display: flex;
    gap: 4rem;
    align-items: center;
}

.benefits-text-block {
    flex: 1;
}

.benefits-text-block h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.benefits-list-custom {
    list-style: none;
}

.benefits-list-custom li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
}

.benefits-list-custom li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.benefits-visual-offset {
    flex: 0 0 40%;
}

.benefits-visual-offset img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.urgency-block {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
}

.urgency-content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-content-center h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.urgency-content-center p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-urgency {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s;
}

.cta-urgency:hover {
    background: #ff8555;
    transform: scale(1.05);
}

.form-section-asymmetric {
    padding: 6rem 4rem;
    background: var(--bg-light);
    display: flex;
    gap: 4rem;
}

.form-intro-offset {
    flex: 0 0 35%;
}

.form-intro-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-intro-offset p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.form-container-offset {
    flex: 1;
}

.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

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

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

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

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

.final-cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    padding: 1.2rem 2rem;
    z-index: 999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.final-cta-sticky.show {
    display: block;
}

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

.sticky-cta-text {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky-cta {
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-sticky-cta:hover {
    background: #ff8555;
}

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

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

.footer-col h5,
.footer-col h6 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-col-wide {
    flex: 1 1 350px;
}

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

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

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.page-hero-offset {
    padding: 10rem 2rem 4rem;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto 0 8%;
}

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

.hero-lead {
    font-size: 1.4rem;
    color: var(--text-gray);
}

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

.story-content-narrow {
    flex: 1;
    max-width: 650px;
}

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

.story-content-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.story-image-offset {
    flex: 0 0 40%;
}

.story-image-offset img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.mission-asymmetric {
    padding: 6rem 4rem;
    background: var(--bg-light);
    display: flex;
    gap: 4rem;
    align-items: center;
}

.mission-visual {
    flex: 0 0 40%;
}

.mission-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.mission-text-offset {
    flex: 1;
    padding-left: 2rem;
}

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

.mission-text-offset p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.values-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.value-card:nth-child(2) {
    margin-top: 3rem;
}

.value-card:nth-child(3) {
    margin-top: -2rem;
}

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

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

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

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

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

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

.team-member {
    flex: 0 0 280px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-member h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.team-role {
    padding: 0 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.team-member p:last-child {
    padding: 0.5rem 1.5rem 1.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.process-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

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

.process-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.process-steps-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    box-shadow: var(--shadow);
}

.process-step:nth-child(even) {
    margin-left: 5%;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    flex-shrink: 0;
}

.process-step h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

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

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

.achievements-layout {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.achievement-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

.achievement-item p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

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

.cta-content-offset {
    max-width: 700px;
    margin: 0 auto 0 8%;
    text-align: left;
}

.cta-content-offset h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content-offset p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button-large:hover {
    background: #ff8555;
    transform: scale(1.05);
}

.page-hero-services {
    padding: 10rem 2rem 4rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    text-align: center;
}

.hero-services-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.services-intro-offset {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.services-intro-text {
    max-width: 800px;
    margin: 0 auto 0 8%;
}

.services-intro-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.services-main {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.services-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-full {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.service-card-full:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.service-card-full:nth-child(even) {
    margin-left: 5%;
}

.service-featured {
    border: 3px solid var(--accent-color);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header {
    padding: 2.5rem 2.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

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

.service-body {
    padding: 0 2.5rem 2.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.service-body h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: var(--text-gray);
}

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

.btn-service-select {
    width: 100%;
    padding: 1.1rem;
    background: var(--secondary-color);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

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

.service-free {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
}

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

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

.comparison-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table thead {
    background: var(--primary-color);
    color: var(--text-light);
}

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

.comparison-table th {
    font-weight: 600;
}

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

.faq-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

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

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

.form-services-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.form-services-container > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.service-order-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    width: auto;
}

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

.btn-submit-large:hover {
    background: #ff8555;
    transform: translateY(-2px);
}

.page-hero-contact {
    padding: 10rem 2rem 4rem;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
}

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

.hero-contact-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-main-section {
    padding: 6rem 4rem;
    background: var(--bg-white);
}

.contact-layout-split {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.contact-detail p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

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

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

.alternatives-content {
    max-width: 1100px;
    margin: 0 auto;
}

.alternatives-content h3 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    text-align: center;
}

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

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

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

.alternative-item p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.cta-link-alt {
    color: var(--accent-color);
    font-weight: 600;
}

.faq-contact-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.faq-compact {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    border-radius: 8px;
}

.map-overlay p {
    font-size: 1.2rem;
    margin: 0;
}

.thanks-section {
    min-height: 70vh;
    padding: 10rem 2rem 4rem;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
}

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

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.thanks-details p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.thanks-info {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    text-align: left;
}

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

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.thanks-steps li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

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

.btn-thanks-primary,
.btn-thanks-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.btn-thanks-primary {
    background: var(--accent-color);
    color: var(--text-light);
}

.btn-thanks-primary:hover {
    background: #ff8555;
    transform: translateY(-2px);
}

.btn-thanks-secondary {
    background: var(--secondary-color);
    color: var(--text-light);
}

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

.thanks-contact {
    margin-top: 2rem;
}

.thanks-contact p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.legal-page {
    padding: 10rem 2rem 4rem;
    background: var(--bg-light);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.legal-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.8rem;
}

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.cookies-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.02);
}

@media (max-width: 1024px) {
    .hero-text-block h1 {
        font-size: 2.8rem;
    }

    .hero-image-overlap {
        width: 45%;
    }

    .problem-amplify,
    .trust-layered,
    .benefits-layered,
    .insight-reveal,
    .story-section,
    .mission-asymmetric {
        flex-direction: column;
    }

    .problem-visual,
    .trust-stats-block,
    .benefits-visual-offset,
    .insight-image-overlap,
    .story-image-offset,
    .mission-visual {
        flex: 1 1 100%;
    }

    .form-section-asymmetric {
        flex-direction: column;
    }

    .form-intro-offset {
        flex: 1 1 100%;
    }

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

    .testimonial-small-stack {
        flex: 1 1 100%;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-white);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        display: none;
    }

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

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

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

    .hero-image-overlap {
        position: relative;
        width: 100%;
        right: 0;
        top: 0;
        margin-top: 3rem;
    }

    .hero-offset-left {
        margin-left: 0;
    }

    .intro-narrow {
        margin: 0 auto;
    }

    .intro-narrow h2 {
        font-size: 2rem;
    }

    .categories-header-offset {
        margin: 0 0 3rem;
    }

    .categories-header-offset h2 {
        font-size: 2.2rem;
    }

    .section-title-offset {
        margin: 0 0 2rem;
        font-size: 2.2rem;
    }

    .service-offset-2,
    .service-offset-3 {
        margin-left: 0;
    }

    .problem-amplify,
    .trust-layered,
    .testimonial-offset,
    .benefits-layered,
    .insight-reveal,
    .form-section-asymmetric,
    .story-section,
    .mission-asymmetric,
    .contact-main-section {
        padding: 4rem 2rem;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .service-card-full:nth-child(even) {
        margin-left: 0;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }

    .cta-content-offset {
        margin: 0 auto;
        text-align: center;
    }

    .process-step:nth-child(even) {
        margin-left: 0;
    }

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

    .thanks-container h1 {
        font-size: 2.2rem;
    }

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

    .btn-thanks-primary,
    .btn-thanks-secondary {
        width: 100%;
    }
}

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

    .nav-brand {
        font-size: 1rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}