/* ========================================
   RESET & 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: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

ul {
    list-style-position: inside;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-content a {
    color: #60a5fa;
}

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

/* ========================================
   NAVIGATION
   ======================================== */

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #4b5563;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary,
.btn-secondary,
.btn-cta,
.btn-cta-large,
.btn-submit,
.btn-service,
.btn-inline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    color: #ffffff;
}

.btn-secondary {
    background-color: #6b7280;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #4b5563;
    color: #ffffff;
}

.btn-cta,
.btn-service,
.btn-submit {
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-cta:hover,
.btn-service:hover,
.btn-submit:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-cta-large {
    background-color: #2563eb;
    color: #ffffff;
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn-cta-large:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-inline {
    background: none;
    color: #2563eb;
    padding: 0.5rem 0;
    font-weight: 600;
}

.btn-inline:hover {
    color: #1d4ed8;
}

/* ========================================
   HERO SECTIONS - SPLIT LAYOUT
   ======================================== */

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 2rem;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 600px;
}

/* ========================================
   SPLIT-SCREEN SECTIONS
   ======================================== */

.intro-split,
.story-split,
.tech-split,
.insight-reveal,
.final-cta-split,
.overview-split {
    display: flex;
    align-items: center;
    padding: 5rem 2rem;
    gap: 4rem;
}

.split-visual,
.split-content,
.story-visual,
.story-content,
.tech-visual,
.tech-content,
.insight-visual,
.insight-content,
.cta-visual,
.cta-content,
.overview-visual,
.overview-content {
    flex: 1;
}

.split-content h2,
.story-content h2,
.tech-content h2,
.insight-content h2,
.cta-content h2,
.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.split-content p,
.story-content p,
.tech-content p,
.insight-content p,
.overview-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* Stat Cards */
.stat-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
}

/* ========================================
   SECTIONS
   ======================================== */

.problem-amplification,
.trust-building,
.benefits-reveal,
.mission-section,
.values-section,
.team-section,
.technology-section,
.services-overview,
.services-detailed,
.comparison-section,
.guarantee-section,
.faq-section,
.contact-main,
.map-section,
.contact-faq,
.urgency-section,
.thanks-hero,
.next-steps,
.thanks-resources,
.thanks-testimonial,
.thanks-guarantee,
.legal-content {
    padding: 5rem 2rem;
}

.problem-amplification {
    background-color: #fef2f2;
}

.trust-building {
    background-color: #f0f9ff;
}

.mission-section {
    background-color: #f9fafb;
}

.urgency-section {
    background-color: #fef3c7;
}

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

/* ========================================
   CONTENT BLOCKS
   ======================================== */

.container-narrow {
    max-width: 900px;
}

.problem-grid,
.trust-grid,
.values-grid,
.team-grid,
.resources-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.problem-item,
.trust-item,
.value-card,
.team-member,
.resource-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.problem-icon,
.member-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.problem-icon svg {
    width: 100%;
    height: 100%;
}

/* ========================================
   FEATURE STACK
   ======================================== */

.feature-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #2563eb;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.feature-number {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-inline {
    background-color: #f9fafb;
    padding: 5rem 2rem;
}

.testimonial {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.testimonial-author strong {
    color: #111827;
    font-size: 1.125rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* ========================================
   SERVICES
   ======================================== */

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

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

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}

.price-period {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

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

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 1.5rem;
}

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

.btn-service {
    width: 100%;
}

/* Service Detail Cards */
.service-detail-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.service-detail-card.featured-service {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: #10b981;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-detail-subtitle {
    color: #6b7280;
    font-size: 1rem;
}

.service-detail-price {
    text-align: right;
}

.price-large {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
    line-height: 1;
}

.price-small {
    font-size: 1rem;
    color: #6b7280;
}

.service-detail-body {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.service-detail-description {
    flex: 1;
    min-width: 300px;
}

.service-detail-description h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.service-detail-description li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-detail-description li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-detail-cta {
    min-width: 200px;
}

/* ========================================
   FORMS
   ======================================== */

.form-section,
.contact-form-side {
    padding: 5rem 2rem;
}

.form-container,
.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

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

.form-intro,
.form-intro-text {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

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

/* Contact Info */
.contact-info-block {
    margin-bottom: 2.5rem;
}

.contact-info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #111827;
}

.contact-info-block p {
    color: #4b5563;
    line-height: 1.8;
}

.contact-info-block a {
    color: #2563eb;
}

.info-note {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.5rem;
}

/* ========================================
   TIMELINE
   ======================================== */

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #2563eb;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:before {
    content: "";
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #2563eb;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.25rem;
}

.timeline-text {
    color: #4b5563;
}

/* ========================================
   TEAM
   ======================================== */

.member-avatar svg {
    width: 100%;
    height: 100%;
}

.member-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ========================================
   TECHNOLOGY STATS
   ======================================== */

.tech-stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.tech-stat {
    flex: 1;
    min-width: 120px;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.tech-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.tech-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* ========================================
   PROCESS FLOW
   ======================================== */

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.process-number {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: #2563eb;
}

/* ========================================
   CTA SECTIONS
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    text-align: center;
    padding: 5rem 2rem;
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-cta {
    background-color: #ffffff;
    color: #2563eb;
}

.cta-section .btn-cta:hover {
    background-color: #f3f4f6;
    color: #1d4ed8;
}

.cta-section .btn-secondary {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.cta-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* CTA Stats */
.cta-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-stat {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.cta-stat-label {
    color: #6b7280;
}

.urgency-content {
    text-align: center;
}

.urgency-content h2 {
    color: #92400e;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.125rem;
    color: #78350f;
    margin-bottom: 1.5rem;
}

/* ========================================
   STICKY CTA
   ======================================== */

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

.sticky-cta-btn {
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
}

/* ========================================
   COMPARISON TABLE
   ======================================== */

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
    background-color: #f3f4f6;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    font-weight: 600;
    color: #111827;
}

.comparison-table td {
    color: #4b5563;
}

/* ========================================
   GUARANTEE
   ======================================== */

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

.guarantee-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.guarantee-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.guarantee-box {
    background-color: #ecfdf5;
    border: 2px solid #10b981;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
}

.guarantee-box h3 {
    color: #065f46;
    margin-bottom: 1rem;
}

.guarantee-box p {
    color: #047857;
}

/* ========================================
   FAQ
   ======================================== */

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

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid #2563eb;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #111827;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #4b5563;
    margin: 0;
}

/* ========================================
   THANKS PAGE
   ======================================== */

.thanks-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

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

.thanks-container h1 {
    color: #111827;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.service-confirmation {
    margin-top: 2rem;
}

.selected-service-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.selected-service-box h3 {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.25rem;
    color: #2563eb;
    font-weight: 600;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #4b5563;
    margin: 0;
}

/* ========================================
   PAGE HERO
   ======================================== */

.page-hero {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 5rem 2rem;
    text-align: center;
}

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

.page-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   MAP
   ======================================== */

.map-placeholder {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.map-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-note {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    font-style: italic;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-header {
    background-color: #f9fafb;
    padding: 4rem 2rem;
    text-align: center;
}

.legal-header h1 {
    color: #111827;
    margin-bottom: 0.5rem;
}

.legal-date {
    color: #6b7280;
    font-size: 0.875rem;
}

.legal-content {
    padding: 4rem 2rem;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #111827;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
    list-style: disc;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */

.main-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #d1d5db;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

/* ========================================
   BENEFITS LIST
   ======================================== */

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

.benefits-list li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

.tech-features {
    list-style: none;
}

.tech-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.tech-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

/* ========================================
   INSIGHT LABEL
   ======================================== */

.insight-label {
    display: inline-block;
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .story-split,
    .tech-split,
    .insight-reveal,
    .final-cta-split,
    .overview-split,
    .contact-layout {
        flex-direction: column;
    }

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

    .service-detail-header {
        flex-direction: column;
    }

    .service-detail-price {
        text-align: left;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 1rem 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

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

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

    .service-card {
        width: 100%;
    }

    .problem-grid,
    .trust-grid,
    .values-grid,
    .team-grid,
    .resources-grid {
        flex-direction: column;
    }

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

    .sticky-cta-btn {
        display: block;
        text-align: center;
        width: 100%;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }

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

    .contact-info-side,
    .contact-form-side {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container,
    .container-narrow {
        padding: 0 1rem;
    }

    .hero-content,
    .intro-split,
    .story-split,
    .tech-split {
        padding: 3rem 1.5rem;
    }

    .btn-cta,
    .btn-service,
    .btn-submit {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .price-amount,
    .stat-number {
        font-size: 2rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}