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

:root {
    --primary-color: #3b82f6;
    --secondary-color: #10b981;
    --accent-color: #8b5cf6;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --border-color: #e2e8f0;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
}

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

.nav-links {
    display: none;
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

.hamburger {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.hero-story {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.hero-overlay {
    padding: 3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.hero-narrative {
    max-width: 700px;
    color: white;
}

.hero-narrative h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-visual {
    width: 100%;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.curiosity-hook {
    padding: 4rem 1.5rem;
    background: #fef3c7;
}

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hook-reveal {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--warning-color);
}

.problem-section {
    padding: 4rem 1.5rem;
    background: #f8fafc;
}

.problem-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-text h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.problem-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.problem-emphasis {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--error-color);
    margin: 2rem 0;
}

.pain-points {
    list-style: none;
    margin: 2rem 0;
}

.pain-points li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.pain-points li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-size: 1.3rem;
}

.problem-visual {
    margin-top: 2rem;
}

.chaos-illustration img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.insight-reveal {
    padding: 4rem 1.5rem;
    background: white;
}

.insight-reveal h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.insight-key {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 2rem 0;
    line-height: 1.5;
}

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

.insight-box {
    background: var(--light-color);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary-color);
}

.insight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.story-bridge {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.founder-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    padding: 2rem;
    border-left: 5px solid rgba(255, 255, 255, 0.5);
}

.founder-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.trust-building {
    padding: 4rem 1.5rem;
    background: white;
}

.trust-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.trust-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.trust-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.credential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem;
}

.credential-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.credential-label {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 0.5rem;
    text-align: center;
}

.testimonials-inline {
    padding: 4rem 1.5rem;
    background: #f1f5f9;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    font-size: 0.95rem;
    color: var(--text-color);
    font-style: normal;
    font-weight: 600;
}

.solution-intro {
    padding: 4rem 1.5rem;
    background: white;
}

.solution-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.benefits-cascade {
    background: var(--light-color);
}

.benefit-block {
    display: flex;
    flex-direction: column;
    padding: 3rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-content h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.benefit-result {
    font-weight: 600;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

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

.benefit-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

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

.benefit-visual {
    margin-top: 2rem;
}

.benefit-visual img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

.benefit-left {
    background: white;
}

.benefit-right {
    background: #f8fafc;
}

.social-proof {
    padding: 4rem 1.5rem;
    background: var(--primary-color);
    color: white;
}

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

.social-proof h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.company-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
}

.stat-label {
    font-size: 1rem;
    margin-top: 0.5rem;
    text-align: center;
    opacity: 0.9;
}

.pricing-reveal {
    padding: 4rem 1.5rem;
    background: white;
}

.pricing-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.services-pricing {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-featured {
    border-color: var(--primary-color);
    border-width: 3px;
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-badge.featured {
    background: var(--primary-color);
}

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

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

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

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

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

.service-price {
    display: flex;
    align-items: baseline;
    margin: 2rem 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-color);
    margin-left: 0.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background: #2563eb;
    transform: scale(1.02);
}

.urgency-section {
    padding: 4rem 1.5rem;
    background: #fef3c7;
}

.urgency-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 3px solid var(--warning-color);
    text-align: center;
}

.urgency-box h3 {
    font-size: 1.7rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.urgency-timer {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--error-color);
    margin-top: 1rem;
}

.cta-main {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

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

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-section {
    padding: 5rem 1.5rem;
    background: white;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

.main-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

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

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

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

.btn-submit {
    padding: 1.2rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #2563eb;
    transform: scale(1.02);
}

.final-reassurance {
    padding: 4rem 1.5rem;
    background: var(--light-color);
}

.final-reassurance h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item strong {
    font-size: 1.2rem;
    color: var(--dark-color);
    display: block;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    padding: 1rem 1.5rem;
    z-index: 999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

.sticky-cta.active {
    display: block;
}

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

.sticky-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-sticky:hover {
    background: #2563eb;
}

.site-footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 1.5rem 1.5rem;
}

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

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content p {
    margin-bottom: 1rem;
    text-align: center;
}

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

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

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

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

.btn-cookie-accept:hover {
    background: #059669;
}

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

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

.page-hero {
    margin-top: 70px;
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.services-page {
    padding: 4rem 1.5rem;
    background: var(--light-color);
}

.services-grid {
    display: flex;
    flex-direction: column;
}

.service-card-page {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.service-card-page.service-featured {
    border-color: var(--primary-color);
    border-width: 3px;
}

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

.service-price-large {
    display: flex;
    align-items: baseline;
    margin: 1.5rem 0;
}

.service-details h3 {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
    color: var(--dark-color);
}

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

.service-details ul li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.service-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-oneoff {
    border-color: var(--accent-color);
}

.btn-service-select {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s, transform 0.2s;
}

.btn-service-select:hover {
    background: #2563eb;
    transform: scale(1.02);
}

.services-compare {
    padding: 4rem 1.5rem;
    background: white;
}

.services-compare h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-color);
}

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

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

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

.comparison-table th {
    background: var(--light-color);
    font-weight: 700;
    color: var(--dark-color);
}

.services-cta {
    padding: 4rem 1.5rem;
    background: var(--light-color);
    text-align: center;
}

.services-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.about-story {
    padding: 4rem 1.5rem;
    background: white;
}

.story-block {
    margin-bottom: 3rem;
}

.story-block h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-emphasis {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0;
}

.about-values {
    padding: 4rem 1.5rem;
    background: var(--light-color);
}

.about-values h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-color);
}

.values-grid {
    display: flex;
    flex-direction: column;
}

.value-card {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.about-team {
    padding: 4rem 1.5rem;
    background: white;
}

.about-team h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--dark-color);
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.team-member {
    background: var(--light-color);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    text-align: center;
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    line-height: 1.7;
}

.about-numbers {
    padding: 4rem 1.5rem;
    background: var(--primary-color);
    color: white;
}

.about-numbers h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.numbers-grid {
    display: flex;
    flex-direction: column;
}

.number-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.about-mission {
    padding: 4rem 1.5rem;
    background: white;
}

.about-mission h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.mission-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-cta {
    padding: 4rem 1.5rem;
    background: var(--light-color);
    text-align: center;
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.cta-buttons a {
    margin: 0.5rem 0;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

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

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

.contact-section {
    padding: 4rem 1.5rem;
    background: white;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.contact-item p {
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-top: 0.5rem;
}

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

.contact-faq-list li {
    margin-bottom: 1rem;
    padding-left: 0;
}

.contact-map {
    margin-top: 3rem;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    background: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-overlay h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.contact-alt-options {
    padding: 4rem 1.5rem;
    background: var(--light-color);
}

.contact-alt-options h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-color);
}

.alt-options-grid {
    display: flex;
    flex-direction: column;
}

.option-card {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

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

.contact-cta {
    padding: 4rem 1.5rem;
    background: white;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.legal-page {
    margin-top: 70px;
    padding: 4rem 1.5rem;
    background: white;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.legal-updated {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

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

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

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    overflow-x: auto;
    display: block;
}

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

.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(--dark-color);
}

.thanks-hero {
    margin-top: 70px;
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.thanks-container h1 {
    font-size: 2.2rem;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.thanks-service-info {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

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

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    text-align: center;
}

.step {
    display: flex;
    margin-bottom: 2rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1.5rem;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

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

.thanks-cta {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
}

.thanks-cta a {
    margin: 0.5rem 0;
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #059669;
}

.thanks-extra {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.extra-info {
    color: var(--text-color);
}

.extra-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.extra-info a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero-story {
        flex-direction: row;
        align-items: stretch;
    }

    .hero-overlay {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }

    .hero-narrative h1 {
        font-size: 3rem;
    }

    .problem-wrapper {
        flex-direction: row;
        align-items: center;
    }

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

    .problem-visual {
        flex: 1;
        margin-top: 0;
    }

    .insight-boxes {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .insight-box {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .benefit-block {
        flex-direction: row;
        align-items: center;
    }

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

    .benefit-visual {
        flex: 1;
        margin-top: 0;
    }

    .benefit-right {
        flex-direction: row-reverse;
    }

    .benefit-right .benefit-content {
        padding-right: 0;
        padding-left: 2rem;
    }

    .company-logos {
        flex-direction: row;
        justify-content: space-around;
    }

    .services-pricing {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

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

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

    .cookie-content p {
        margin-bottom: 0;
        text-align: left;
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

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

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .value-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .team-member {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .numbers-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .cta-buttons a {
        margin: 0 0.5rem;
    }

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

    .contact-info {
        flex: 1;
        padding-right: 2rem;
    }

    .contact-map {
        flex: 1;
        margin-top: 0;
    }

    .alt-options-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .option-card {
        flex: 0 0 calc(33.333% - 1rem);
    }

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

    .thanks-cta a {
        margin: 0 0.5rem;
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

    .service-card-page {
        flex: 0 0 calc(33.333% - 1.5rem);
    }
}