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

:root {
    --primary: #2d5af0;
    --primary-dark: #1a3dc4;
    --secondary: #ff6b35;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border: #e0e0e0;
    --success: #28a745;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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: var(--bg-white);
}

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

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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 5%;
}

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

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background: var(--bg-light);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-outline {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    border: 2px solid var(--text-dark);
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--text-dark);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

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

.stat-item strong {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.stat-item span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.problem-split {
    display: flex;
    min-height: 70vh;
}

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

.problem-left,
.problem-right {
    flex: 1;
}

.problem-left {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.problem-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-right {
    padding: 5rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-right h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.problem-right p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.link-arrow:after {
    content: "→";
    transition: transform 0.3s;
}

.link-arrow:hover:after {
    transform: translateX(5px);
}

.insight-block {
    padding: 6rem 5%;
    background: var(--text-dark);
    color: white;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--secondary);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.insight-wrapper h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.insight-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.insight-grid {
    display: flex;
    gap: 2.5rem;
}

.insight-card {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.insight-card p {
    line-height: 1.7;
    opacity: 0.85;
}

.transformation-split {
    display: flex;
    min-height: 75vh;
}

.transform-left {
    flex: 1;
    padding: 5rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transform-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.transform-left > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

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

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

.transform-right {
    flex: 1;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.transform-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-flow {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.testimonials-flow h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.services-showcase {
    padding: 6rem 5%;
}

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

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.15rem;
    color: var(--text-medium);
}

.services-split-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 400px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

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

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

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

.service-content {
    padding: 2.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

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

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
}

.service-price {
    padding: 2rem 2.5rem;
    background: var(--bg-light);
    border-top: 2px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

.btn-select {
    padding: 1rem 3rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

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

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

.form-split {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-item svg {
    color: var(--success);
    flex-shrink: 0;
}

.trust-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.form-right {
    flex: 1;
}

.booking-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    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(--primary);
}

.form-checkbox {
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-checkbox input {
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: var(--text-medium);
}

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

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-strip {
    padding: 5rem 5%;
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.why-now {
    padding: 6rem 5%;
}

.why-now-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.why-now-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.why-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.why-left {
    flex: 1.2;
}

.why-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.why-right {
    flex: 1;
}

.why-right img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 5% 2rem;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

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

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

.sticky-btn {
    display: block;
    padding: 1rem 2.5rem;
    background: var(--secondary);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.5);
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: var(--primary-dark);
}

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

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

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.page-hero {
    padding: 5rem 5%;
    text-align: center;
    background: var(--bg-light);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-split {
    display: flex;
    min-height: 70vh;
}

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

.story-left {
    flex: 1;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-right {
    flex: 1;
    padding: 5rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.values-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

.team-split {
    padding: 6rem 5%;
}

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

.team-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.team-content p {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.team-members {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.member-card {
    flex: 1;
    text-align: center;
}

.member-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background: var(--bg-light);
}

.member-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.member-card p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-card span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.numbers-split {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    background: var(--bg-light);
}

.numbers-left {
    flex: 1;
}

.numbers-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.numbers-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.numbers-right {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.number-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 180px;
}

.number-item strong {
    display: block;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.number-item span {
    color: var(--text-medium);
    font-size: 1rem;
}

.philosophy-section {
    padding: 6rem 5%;
}

.philosophy-wrapper h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.philosophy-split {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.phil-left {
    flex: 1;
}

.phil-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.phil-right {
    flex: 1;
}

.phil-right img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.cta-about {
    padding: 5rem 5%;
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-detail {
    padding: 4rem 5%;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 3rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.service-detail-card.featured-service {
    border-color: var(--primary);
}

.service-detail-card.premium-service {
    border-color: var(--secondary);
}

.service-detail-card.business-service {
    border-color: #6c63ff;
}

.service-split {
    display: flex;
}

.service-info {
    flex: 1.5;
    padding: 3rem;
}

.service-info h2 {
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
}

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

.service-info h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.detail-list {
    list-style: none;
    margin-top: 1rem;
}

.detail-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.detail-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-booking {
    flex: 1;
    background: var(--bg-light);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-box {
    text-align: center;
    margin-bottom: 2rem;
}

.price-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin: 0.5rem 0;
}

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
}

.service-highlights {
    margin-top: 2rem;
    width: 100%;
}

.highlight-item {
    padding: 0.8rem;
    text-align: center;
    background: white;
    border-radius: 6px;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

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

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

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

.comparison-table th {
    background: var(--text-dark);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: var(--bg-light);
}

.guarantee-section {
    padding: 6rem 5%;
}

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

.guarantee-left {
    flex: 1.5;
}

.guarantee-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.guarantee-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.guarantee-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.guarantee-badge {
    text-align: center;
}

.guarantee-badge svg {
    color: var(--success);
    margin-bottom: 1rem;
}

.guarantee-badge span {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.contact-section {
    padding: 4rem 5%;
}

.contact-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-icon svg {
    color: var(--primary);
}

.contact-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-medium);
    line-height: 1.7;
}

.small-note {
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.office-hours-note {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.office-hours-note h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.office-hours-note p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    aspect-ratio: 1.3;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-note {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.location-note p {
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-contact {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.cta-contact {
    padding: 5rem 5%;
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.thanks-section {
    padding: 6rem 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    color: var(--success);
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

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

.thanks-info strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.thanks-steps li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-medium);
}

.thanks-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.thanks-note {
    padding: 1.5rem;
    background: #fff3cd;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-note p {
    color: #856404;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.step-card {
    flex: 1;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

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

.legal-page {
    padding: 4rem 5%;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

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

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

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

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

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-medium);
}

.legal-container ul li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border: 1px solid var(--border);
}

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
}

.browser-guides {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.browser-item {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 250px;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.browser-item h4 {
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.browser-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .hero-split,
    .problem-split,
    .transformation-split,
    .story-split,
    .page-hero-split {
        flex-direction: column;
    }

    .problem-split.reverse,
    .story-split.reverse {
        flex-direction: column;
    }

    .hero-right,
    .problem-left,
    .transform-right,
    .story-left {
        min-height: 50vh;
    }

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

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

    .team-members {
        flex-direction: column;
    }

    .numbers-split {
        flex-direction: column;
    }

    .philosophy-split {
        flex-direction: column;
    }

    .why-split {
        flex-direction: column;
    }

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

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

    .guarantee-split {
        flex-direction: column;
    }

    .service-split {
        flex-direction: column;
    }

    .service-booking {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem 5%;
        box-shadow: var(--shadow);
        transition: left 0.3s;
        gap: 1.5rem;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-card {
        min-width: 100%;
        flex: 1 1 100%;
    }

    .next-steps-grid {
        flex-direction: column;
    }

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

    .faq-item {
        flex: 1 1 100%;
        min-width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .sticky-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .problem-right h2,
    .transform-left h2,
    .story-right h2 {
        font-size: 2rem;
    }

    .insight-wrapper h2,
    .services-header h2 {
        font-size: 2.2rem;
    }

    .booking-form {
        padding: 2rem;
    }
}