:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f4c75;
    --highlight-color: #3282b8;
    --text-dark: #1a1a2e;
    --text-light: #f5f5f5;
    --text-gray: #6b7280;
    --bg-light: #ffffff;
    --bg-gray: #f9fafb;
    --bg-dark: #1a1a2e;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

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

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--accent-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-split {
    background-color: var(--bg-gray);
    padding: 5rem 2rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    min-width: 0;
}

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

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    min-width: 0;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--text-light);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 76, 117, 0.2);
}

.cta-button:hover {
    background-color: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 76, 117, 0.3);
    color: var(--text-light);
}

.value-split {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    min-width: 0;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.split-text {
    flex: 1;
    min-width: 0;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.text-link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.process-alternating {
    padding: 6rem 2rem;
    background-color: var(--bg-gray);
}

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

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

.process-step {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.process-step.reverse {
    flex-direction: row-reverse;
}

.step-text {
    flex: 1;
    min-width: 0;
}

.step-number {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

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

.step-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.step-visual {
    flex: 1;
    min-width: 0;
}

.step-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

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

.services-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: var(--accent-color);
}

.service-card.featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f9ff 100%);
}

.service-card .badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--highlight-color);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

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

.card-link {
    color: var(--accent-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--highlight-color);
}

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

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

.secondary-button:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 76, 117, 0.2);
}

.social-proof {
    padding: 6rem 2rem;
    background-color: var(--bg-gray);
}

.proof-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.testimonials {
    flex: 1.2;
    min-width: 0;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

blockquote {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

blockquote p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-style: italic;
}

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

.stats {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

.stat-item {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.approach-split {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.industries {
    padding: 6rem 2rem;
    background-color: var(--bg-gray);
    text-align: center;
}

.industries h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.industry-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
}

.industry-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

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

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro {
    flex: 0.8;
    min-width: 0;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.form-intro .note {
    font-size: 0.95rem;
    color: var(--highlight-color);
    font-weight: 600;
}

.form-container {
    flex: 1;
    min-width: 0;
}

.contact-form {
    background-color: var(--bg-gray);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(15, 76, 117, 0.1);
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 76, 117, 0.2);
}

.submit-button:hover {
    background-color: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 76, 117, 0.3);
}

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

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-light);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

.cookie-accept:hover {
    background-color: var(--highlight-color);
}

.cookie-reject {
    background-color: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
}

.cookie-reject:hover {
    background-color: var(--bg-gray);
}

.page-hero {
    background: linear-gradient(135deg, var(--bg-gray) 0%, #e0f2fe 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: block;
}

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

.page-hero p {
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.story-split {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

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

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

.philosophy-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.philosophy-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

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

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

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

.approach-image {
    flex: 1;
    min-width: 0;
}

.approach-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.approach-text {
    flex: 1;
    min-width: 0;
}

.approach-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-list {
    list-style: none;
    margin: 1.5rem 0;
}

.team-list li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.team-list strong {
    color: var(--accent-color);
}

.values {
    padding: 6rem 2rem;
    background-color: var(--bg-gray);
    text-align: center;
}

.values h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
}

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

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

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

.expertise-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.expertise-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.expertise-container p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.expertise-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
}

.stat-block {
    text-align: center;
}

.stat-block .number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-block .label {
    display: block;
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.difference {
    padding: 6rem 2rem;
    background-color: var(--bg-gray);
}

.difference-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.difference-text {
    flex: 1.2;
    min-width: 0;
}

.difference-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.difference-points {
    margin-top: 2rem;
}

.point {
    margin-bottom: 2rem;
}

.point h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.point p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.difference-image {
    flex: 0.8;
    min-width: 0;
}

.difference-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.cta-about {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.cta-content .cta-button {
    background-color: var(--bg-light);
    color: var(--accent-color);
}

.cta-content .cta-button:hover {
    background-color: var(--bg-gray);
    color: var(--highlight-color);
}

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

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

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

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

.service-detail {
    padding: 5rem 2rem;
    background-color: var(--bg-gray);
}

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

.service-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

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

.service-content {
    flex: 1.2;
    min-width: 0;
}

.service-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: var(--highlight-color);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.service-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

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

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1.05rem;
}

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

.service-pricing {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

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

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.service-pricing .price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}

.service-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--text-light);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 76, 117, 0.2);
}

.service-cta:hover {
    background-color: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 76, 117, 0.3);
    color: var(--text-light);
}

.service-image {
    flex: 0.8;
    min-width: 0;
}

.service-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

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

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

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

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

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

.timeline-step {
    background-color: var(--bg-gray);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
}

.timeline-step .step-number {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--accent-color);
    color: var(--text-light);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

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

.timeline-step p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.timeline-step .duration {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--highlight-color);
    font-weight: 600;
    padding: 0.4rem 1rem;
    background-color: rgba(50, 130, 184, 0.1);
    border-radius: 20px;
}

.pricing-factors {
    padding: 6rem 2rem;
    background-color: var(--bg-gray);
    text-align: center;
}

.pricing-factors h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.factor {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
}

.factor h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.factor p {
    color: var(--text-gray);
    line-height: 1.6;
}

.pricing-note {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: italic;
}

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

.info-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.info-text {
    flex: 1.2;
    min-width: 0;
}

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

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

.contact-details {
    margin: 3rem 0;
}

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

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

.detail-item p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.7;
}

.detail-item a {
    color: var(--accent-color);
    font-weight: 600;
}

.detail-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    font-style: italic;
}

.response-time {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.response-time h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.response-time p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.info-image {
    flex: 0.8;
    min-width: 0;
}

.info-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.contact-reasons {
    padding: 6rem 2rem;
    background-color: var(--bg-gray);
    text-align: center;
}

.contact-reasons h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.reason-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
}

.reason-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

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

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

.faq-item {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

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

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

.next-steps {
    padding: 6rem 2rem;
    background-color: var(--bg-gray);
    text-align: center;
}

.next-steps h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.step-box {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
}

.step-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--accent-color);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

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

.thanks-hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    text-align: center;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: var(--success-color);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

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

.thanks-details {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: left;
    margin: 3rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.thanks-details p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.thanks-details strong {
    color: var(--accent-color);
}

.service-confirmation {
    background-color: var(--bg-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
}

.thanks-list {
    list-style: none;
    margin: 1.5rem 0;
}

.thanks-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1.05rem;
}

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

.next-steps-box {
    margin: 3rem 0;
}

.next-steps-box h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.next-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.action-item {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
}

.action-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

.thanks-cta {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.text-button {
    padding: 1rem 2rem;
    color: var(--accent-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-button:hover {
    color: var(--highlight-color);
}

.what-happens-next {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.what-happens-next h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.timeline-item {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
}

.timeline-item .time {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--accent-color);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.thanks-resources {
    padding: 6rem 2rem;
    background-color: var(--bg-gray);
    text-align: center;
}

.thanks-resources h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.resource-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.resource-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

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

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

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

.update-date {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content {
    line-height: 1.8;
}

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

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

.legal-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.legal-section h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 1.5rem 0 0.8rem;
    font-weight: 700;
}

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

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-gray);
}

.legal-section li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

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

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

.contact-box {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

.contact-box h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

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

.cookies-table thead {
    background-color: var(--bg-gray);
}

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

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

.cookies-table td {
    color: var(--text-gray);
}

@media (max-width: 968px) {
    .hero-content,
    .split-container,
    .process-step,
    .proof-split,
    .form-split,
    .service-split,
    .info-split,
    .approach-split,
    .difference-split {
        flex-direction: column;
    }

    .split-container.reverse,
    .process-step.reverse,
    .service-detail.reverse .service-split {
        flex-direction: column;
    }

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

    .split-text h2,
    .section-header h2 {
        font-size: 2rem;
    }

    .expertise-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-light);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: block;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: stretch;
    }

    .cookie-buttons button {
        flex: 1;
    }
}

@media (max-width: 640px) {
    .services-grid,
    .industries-grid,
    .philosophy-grid,
    .values-split,
    .factors-grid,
    .reasons-grid,
    .steps-flow,
    .next-actions,
    .resources-grid {
        flex-direction: column;
    }

    .service-card,
    .industry-item,
    .philosophy-item,
    .value-card,
    .factor,
    .reason-card,
    .step-box,
    .action-item,
    .resource-card {
        min-width: 100%;
    }

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

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

    .split-text h2,
    .section-header h2 {
        font-size: 1.7rem;
    }

    .hero-split,
    .value-split,
    .process-alternating,
    .services-preview,
    .social-proof,
    .approach-split {
        padding: 3rem 1rem;
    }
}