/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Floating Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #2c2c2c;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: #ffffff;
    list-style: none;
    padding: 5rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

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

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-menu a {
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

/* Hero Visual Section */
.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero-text-overlay {
    position: absolute;
    bottom: 15%;
    left: 5%;
    right: 5%;
    color: #ffffff;
    z-index: 10;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    background: #ffffff;
    color: #2c2c2c;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

/* Story Section */
.intro-story {
    padding: 6rem 5%;
    background: #f9f9f9;
}

.story-narrow {
    max-width: 650px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-narrow p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

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

.link-arrow {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c2c2c;
    border-bottom: 2px solid #2c2c2c;
    display: inline-block;
}

/* Problem Amplify Split Section */
.problem-amplify {
    padding: 5rem 5%;
    background: #ffffff;
}

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.split-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.split-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.7;
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
    font-style: italic;
}

/* Insight Section */
.insight-section {
    padding: 6rem 5%;
    background: #1a1a1a;
    color: #ffffff;
}

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

.insight-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
}

.lead-text {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    text-align: center;
    opacity: 0.9;
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.insight-card {
    text-align: center;
}

.insight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
}

.insight-card h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.insight-card p {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.6;
}

/* Story Visual */
.story-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 3rem 5%;
}

.story-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.story-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.story-text-box {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.story-text-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.story-text-box p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.7;
    font-style: italic;
}

.quote-author {
    font-weight: 600;
    font-style: normal;
    margin-top: 1.5rem;
}

/* Trust Social */
.trust-social {
    padding: 6rem 5%;
    background: #f4f4f4;
}

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

.trust-social h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid #2c2c2c;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

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

.testimonial-author strong {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

/* Benefits Reveal */
.benefits-reveal {
    padding: 6rem 5%;
    background: #ffffff;
}

.benefits-reveal h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-large {
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
}

.benefit-large img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.benefit-text {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 2rem;
    width: 100%;
}

.benefit-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-text p {
    font-size: 1.0625rem;
    line-height: 1.6;
}

.benefit-small {
    background: #f9f9f9;
    padding: 2rem;
    border-left: 3px solid #2c2c2c;
}

.benefit-small h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-small p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* CTA Sections */
.cta-sticky-trigger {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
}

.cta-visual-box {
    text-align: center;
    color: #ffffff;
    max-width: 650px;
    margin: 0 auto;
}

.cta-visual-box h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-visual-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #2c2c2c;
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: 3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    opacity: 1;
}

/* Services Section */
.services-section {
    padding: 6rem 5%;
    background: #fafafa;
}

.services-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 4rem;
}

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

.service-card {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 3px solid #2c2c2c;
}

.service-card.premium {
    border: 3px solid #d4af37;
}

.badge-popular,
.badge-premium {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2c2c2c;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 10;
    border-radius: 2px;
}

.badge-premium {
    background: #d4af37;
    color: #1a1a1a;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
    color: #444;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #2c2c2c;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #2c2c2c;
}

.price-note {
    font-size: 1rem;
    color: #777;
}

.btn-select-service {
    width: 100%;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #1a1a1a;
}

/* Urgency Section */
.urgency-section {
    padding: 4rem 5%;
    background: #fff8e1;
}

.urgency-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem;
    background: #ffffff;
    border: 2px solid #ffb74d;
    box-shadow: 0 5px 20px rgba(255, 183, 77, 0.2);
}

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

.urgency-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.urgency-box p {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    color: #555;
}

.urgency-box strong {
    color: #e65100;
    font-weight: 800;
}

.btn-urgency {
    display: inline-block;
    background: #e65100;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.btn-urgency:hover {
    background: #bf360c;
    opacity: 1;
}

/* Form Section */
.form-section {
    padding: 6rem 5%;
    background: #f4f4f4;
}

.form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    font-size: 1.0625rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9375rem;
}

.checkbox-group a {
    color: #2c2c2c;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1rem;
    font-size: 1.0625rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #1a1a1a;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5% 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer-brand h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.9375rem;
    opacity: 0.8;
}

.footer-links h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    font-size: 0.9375rem;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1rem 5%;
    z-index: 999;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    transition: bottom 0.3s ease;
}

.sticky-cta.visible {
    bottom: 0;
}

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

.sticky-text {
    font-size: 1rem;
    font-weight: 600;
}

.btn-sticky {
    background: #ffffff;
    color: #2c2c2c;
    padding: 0.75rem 2rem;
    font-weight: 700;
    border-radius: 3px;
    white-space: nowrap;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    font-size: 0.9375rem;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-cookie.accept {
    background: #4caf50;
    color: #ffffff;
}

.btn-cookie.reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie:hover {
    opacity: 0.8;
}

/* Page Hero (for subpages) */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin-top: 70px;
}

.page-hero.small {
    height: 40vh;
    min-height: 300px;
}

/* About Page */
.about-story {
    padding: 6rem 5%;
    background: #ffffff;
}

.about-story h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

.about-story p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.team-section {
    padding: 6rem 5%;
    background: #f9f9f9;
}

.team-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    background: #ffffff;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    color: #777;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
}

.values-section {
    padding: 6rem 5%;
    background: #ffffff;
}

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

.values-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.value-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.cta-section {
    padding: 5rem 5%;
    background: #2c2c2c;
}

.cta-box {
    text-align: center;
    color: #ffffff;
    max-width: 650px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

/* Services Page */
.services-intro {
    padding: 4rem 5%;
    background: #ffffff;
}

.services-intro h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.services-detailed {
    padding: 4rem 5%;
    background: #fafafa;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.service-detail-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: 2rem;
}

.service-detail-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-tag {
    display: inline-block;
    background: #2c2c2c;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-radius: 3px;
}

.badge-inline {
    display: inline-block;
    background: #ffb74d;
    color: #1a1a1a;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    margin-left: 1rem;
    border-radius: 2px;
}

.badge-inline.premium {
    background: #d4af37;
}

.service-detail-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
    color: #444;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #2c2c2c;
}

.btn-service {
    display: inline-block;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1rem;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #1a1a1a;
    opacity: 1;
}

.btn-service.premium {
    background: #d4af37;
    color: #1a1a1a;
}

.btn-service.premium:hover {
    background: #c19b2d;
}

.comparison-section {
    padding: 4rem 5%;
    background: #ffffff;
}

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

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9375rem;
}

.comparison-table th {
    background: #2c2c2c;
    color: #ffffff;
    font-weight: 700;
}

.comparison-table tr.highlighted {
    background: #f9f9f9;
}

.comparison-table tr.premium-row {
    background: #fff8e1;
}

.faq-section {
    padding: 6rem 5%;
    background: #f9f9f9;
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.faq-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

/* Contact Page */
.contact-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.contact-item a {
    color: #2c2c2c;
    text-decoration: underline;
}

.note {
    font-size: 0.9375rem;
    color: #777;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-additional h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-additional p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: #f9f9f9;
    padding: 2.5rem;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.map-section {
    height: 400px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    padding: 2rem;
}

.map-overlay p {
    font-size: 1.125rem;
    color: #2c2c2c;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: 6rem 5% 4rem;
    background: #ffffff;
    margin-top: 70px;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.updated {
    font-size: 0.9375rem;
    color: #777;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.25rem;
}

.legal-page ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.legal-page ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.legal-page a {
    color: #2c2c2c;
    text-decoration: underline;
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.thanks-container {
    background: #ffffff;
    padding: 3rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}

.thanks-container h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.thanks-detail {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.selected-service {
    background: #f9f9f9;
    padding: 1rem;
    margin: 1.5rem 0;
    border-left: 3px solid #2c2c2c;
}

.service-selected {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

.thanks-note {
    font-size: 0.9375rem;
    color: #777;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary {
    display: inline-block;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 3px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2c2c2c;
    padding: 1rem 2rem;
    font-weight: 700;
    border: 2px solid #2c2c2c;
    border-radius: 3px;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

    .hero-text-overlay {
        left: 8%;
        right: auto;
        max-width: 600px;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        display: flex;
        flex-direction: row;
        gap: 2rem;
    }

    .hamburger {
        display: none;
    }

    .nav-menu li {
        margin-bottom: 0;
    }

    .split-layout {
        flex-direction: row;
        align-items: center;
    }

    .split-image {
        flex: 1;
    }

    .split-content {
        flex: 1;
    }

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

    .insight-grid {
        flex-direction: row;
        gap: 2rem;
    }

    .testimonials-flow {
        flex-direction: row;
    }

    .benefits-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-large {
        flex: 1 1 100%;
    }

    .benefit-small {
        flex: 1 1 calc(50% - 1rem);
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1.5rem);
    }

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

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

    .service-detail-image {
        flex: 1;
        height: auto;
    }

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

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 1.5rem);
    }

    .values-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .contact-layout {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

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

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 2rem);
    }

    .team-member {
        flex: 1 1 calc(25% - 2.25rem);
    }

    .benefit-small {
        flex: 1 1 calc(33.333% - 1.33rem);
    }
}