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

:root {
    --primary-color: #2c5282;
    --secondary-color: #1a365d;
    --accent-color: #4299e1;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --transition: all 0.3s ease;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px 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: 20px;
}

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

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 14px;
}

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

.btn-accept:hover {
    background-color: #38a169;
}

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

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

.cookie-link {
    color: white;
    text-decoration: underline;
    font-size: 14px;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content,
.hero-visual {
    flex: 1;
    min-width: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-visual {
    position: relative;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary,
.cta-outline {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 82, 130, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.cta-outline {
    background-color: white;
    color: var(--primary-color);
    border-color: var(--border-color);
}

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

.trust-strip {
    background-color: var(--secondary-color);
    padding: 24px 0;
    text-align: center;
}

.trust-text {
    color: white;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

.intro-split,
.split-visual,
.split-content,
.about-split,
.approach-split,
.why-different,
.services-preview,
.service-split {
    display: flex;
}

.intro-split,
.about-split,
.approach-split,
.why-different,
.services-preview {
    min-height: 500px;
    align-items: stretch;
}

.intro-split.reverse,
.approach-split.reverse,
.why-different.reverse-split,
.service-detail.reverse {
    flex-direction: row-reverse;
}

.split-visual,
.split-content {
    flex: 1;
    min-width: 0;
}

.split-visual {
    overflow: hidden;
    position: relative;
}

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

.split-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--secondary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

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

.split-content ul {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.split-content ul li {
    margin-bottom: 16px;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.split-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
}

.methodology-section,
.values-section,
.expertise-section,
.pricing-faq {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
}

.section-header.centered p {
    margin: 0 auto;
}

.phase-grid,
.values-grid,
.faq-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.phase-card,
.value-card,
.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.phase-card:hover,
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.phase-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 16px;
}

.phase-card h3,
.value-card h3,
.faq-item h4 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.phase-card p,
.value-card p,
.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.service-list li {
    background-color: white;
    padding: 20px;
    margin-bottom: 16px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-list strong {
    color: var(--secondary-color);
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
}

.service-desc {
    display: block;
    font-size: 15px;
    color: var(--text-light);
    margin-top: 8px;
}

.case-insight {
    padding: 80px 0;
    background-color: var(--primary-color);
}

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

.insight-content blockquote {
    border: none;
    padding: 0;
}

.insight-content p {
    font-size: 28px;
    line-height: 1.6;
    color: white;
    font-style: italic;
    margin-bottom: 24px;
}

.insight-content cite {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

.difference-points {
    margin-top: 40px;
}

.diff-point {
    margin-bottom: 32px;
}

.diff-point h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.diff-point p {
    font-size: 16px;
    color: var(--text-light);
}

.form-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    margin-top: 16px;
}

.final-cta,
.cta-section,
.services-cta {
    padding: 100px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.final-cta h2,
.cta-section h2,
.services-cta h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta p,
.cta-section p,
.services-cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta-primary,
.cta-section .cta-primary,
.services-cta .cta-primary {
    background-color: var(--success-color);
}

.final-cta .cta-primary:hover,
.cta-section .cta-primary:hover,
.services-cta .cta-primary:hover {
    background-color: #38a169;
}

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: slideInUp 0.4s ease;
}

.sticky-btn {
    background-color: var(--success-color);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(72, 187, 120, 0.4);
    transition: var(--transition);
}

.sticky-btn:hover {
    background-color: #38a169;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(72, 187, 120, 0.5);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 16px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.legal-date {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.industry-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.industry-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.industry-item h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.industry-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.team-philosophy,
.philosophy-content {
    padding: 80px 0;
    background-color: white;
}

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

.philosophy-content h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.philosophy-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-intro {
    padding: 60px 0;
    background-color: white;
}

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

.intro-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-detail {
    padding: 80px 0;
    background-color: white;
}

.service-detail:nth-child(even) {
    background-color: var(--bg-light);
}

.service-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail.reverse .service-split {
    flex-direction: row-reverse;
}

.service-info,
.service-visual {
    flex: 1;
    min-width: 0;
}

.service-info h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.price {
    font-size: 36px;
    color: var(--success-color);
    font-weight: 800;
    margin-bottom: 12px;
}

.service-duration {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.service-info p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-info h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.service-info ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.service-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-visual {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-visual img {
    width: 100%;
    height: auto;
}

.flagship-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
    margin: 24px 0;
}

.contact-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
}

.contact-info,
.contact-form-wrapper {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h4 {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

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

.contact-note {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

.contact-form-wrapper {
    background-color: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 32px;
    font-weight: 700;
}

.contact-expectations {
    padding: 80px 0;
    background-color: white;
}

.contact-expectations h2 {
    text-align: center;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.expectations-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
}

.expect-item {
    flex: 1;
    text-align: center;
}

.expect-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 24px;
}

.expect-item h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

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

.thanks-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--success-color) 0%, #38a169 100%);
}

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

.thanks-content h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.thanks-service {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.thanks-next {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-next p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.thanks-contact {
    color: white;
    font-size: 16px;
}

.thanks-contact a {
    color: white;
    text-decoration: underline;
}

.thanks-resources {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.thanks-resources h2 {
    text-align: center;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.resource-cards {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
}

.resource-card {
    flex: 1;
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.resource-card h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

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

.legal-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0 60px;
}

.legal-hero h1 {
    text-align: center;
    font-size: 42px;
    color: white;
    margin-bottom: 12px;
    font-weight: 800;
}

.legal-content {
    padding: 80px 0;
    background-color: white;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-text h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-text p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-text ul {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-text ul li {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background-color: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--secondary-color);
}

.cookie-table td {
    color: var(--text-light);
}

.cookie-controls {
    margin: 32px 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .about-split,
    .approach-split,
    .why-different,
    .services-preview,
    .service-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .approach-split.reverse,
    .why-different.reverse-split,
    .service-detail.reverse .service-split {
        flex-direction: column;
    }

    .hero-content,
    .split-content,
    .service-info {
        padding: 60px 40px;
    }

    .hero-visual {
        min-height: 400px;
    }

    .contact-container {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hamburger {
        display: flex;
    }

    .hero-text h1,
    .page-hero h1 {
        font-size: 36px;
    }

    .split-content h2,
    .section-header h2 {
        font-size: 28px;
    }

    .hero-content,
    .split-content,
    .form-wrapper,
    .contact-form-wrapper,
    .service-info {
        padding: 40px 30px;
    }

    .phase-grid,
    .values-grid,
    .industry-list {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

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

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

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