/* ===========================
   Global Styles & Reset
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===========================
   Brand Name Styling
   =========================== */
.brand-name {
    color: var(--primary-color);
    font-weight: 800;
}

.brand-name .brand-dot,
.logo .brand-dot,
.brand-dot {
    color: #dc3545 !important;
}

:root {
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --dark: #212529;
    --light: #f8f9fa;
    --white: #ffffff;
    --border-radius: 12px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.navbar .nav-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 3rem !important;
}

.navbar .logo {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: var(--primary-color) !important;
    text-decoration: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    width: auto !important;
}

.navbar .logo img {
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.navbar .logo .brand-name {
    margin: 0 !important;
    padding: 0 !important;
}

.navbar .nav-menu {
    display: flex !important;
    list-style: none !important;
    gap: 1.25rem !important; /* tighter spacing between menu items */
    align-items: center !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    padding: 0 0 0 2.75rem !important; /* extra space between logo and first link */
    flex-shrink: 0 !important;
}

.navbar .nav-menu li {
    margin: 0 !important;
    padding: 0 !important;
}

@media (min-width: 768px) {
    .navbar .nav-menu {
        position: relative !important;
        top: 7px !important; /* leicht nach unten, um mit Logo/Button bündig zu wirken */
    }
}

.navbar .nav-menu a {
    text-decoration: none !important;
    color: var(--dark) !important;
    font-weight: 500 !important;
    transition: var(--transition) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 6px !important;
    margin: 0 !important;
}

.navbar .nav-menu a:hover {
    color: var(--primary-color) !important;
    background-color: rgba(0, 123, 255, 0.05) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--dark);
    border-color: var(--dark);
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

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

.stat strong {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 800;
}

.stat span {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Mockup Visual */
.mockup-container {
    position: relative;
    filter: drop-shadow(var(--shadow-lg));
}

.mockup-screen {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.mockup-header {
    background: #f5f5f5;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

.mockup-dots span:nth-child(1) { background-color: #ff5f56; }
.mockup-dots span:nth-child(2) { background-color: #ffbd2e; }
.mockup-dots span:nth-child(3) { background-color: #27c93f; }

.mockup-url {
    flex: 1;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.mockup-content {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mockup-map {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 250px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.mockup-map::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mockup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-input {
    background: #f5f5f5;
    height: 40px;
    border-radius: 6px;
    animation: pulse 2s ease-in-out infinite;
}

.mockup-input:nth-child(2) {
    animation-delay: 0.2s;
}

.mockup-button {
    background: var(--primary-color);
    height: 45px;
    border-radius: 6px;
    margin-top: 8px;
    animation: pulse 2s ease-in-out infinite;
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* ===========================
   Features Section
   =========================== */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.feature-card p {
    color: var(--secondary-color);
    line-height: 1.8;
}

/* ===========================
   Use Cases Section
   =========================== */
.use-cases {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.use-cases .section-header h2,
.use-cases .section-header p {
    color: var(--white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.use-case-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

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

.use-case-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.use-case-card p {
    opacity: 0.9;
    line-height: 1.8;
}

/* ===========================
   Benefits Section
   =========================== */
.benefits {
    padding: 100px 0;
    background: var(--white);
}

.benefits-content {
    max-width: 1100px;
    margin: 0 auto;
}

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

.benefits-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
}

.benefits-text h2 {
    grid-column: 1 / -1;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
}

.benefit-check {
    width: 40px;
    height: 40px;
    background: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--secondary-color);
    line-height: 1.8;
}

/* ===========================
   Pricing Section
   =========================== */
.pricing {
    padding: 100px 0;
    background: var(--light);
}

.pricing-card-wrapper {
    display: flex;
    justify-content: center;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    width: 100%;
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card.agency {
    border-color: #ff6b35;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

.pricing-badge.agency-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.pricing-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.pricing-price {
    text-align: center;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: super;
    color: var(--secondary-color);
}

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

.price-period {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.pricing-description {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1rem;
    min-height: 48px;
}

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

.pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--light);
    color: var(--dark);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

.pricing-note {
    text-align: center;
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.pricing-vat-note {
    text-align: center;
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

/* Responsive Pricing Cards */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        gap: 2.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .price-amount {
        font-size: 3rem;
    }
}

/* ===========================
   Demo Section
   =========================== */
.demo {
    padding: 100px 0;
    background: var(--white);
}

.demo-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

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

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

.demo-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.demo-step p {
    color: var(--secondary-color);
    line-height: 1.8;
}

.code-example {
    background: #1e1e1e;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.code-tabs {
    display: flex;
    background: #2d2d2d;
    border-bottom: 1px solid #3d3d3d;
}

.code-tab {
    padding: 1rem 2rem;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.code-tab.active {
    color: var(--white);
    background: #1e1e1e;
}

.code-tab:hover {
    color: var(--white);
}

.code-content {
    position: relative;
}

.code-block {
    display: none;
    padding: 2rem;
    margin: 0;
    overflow-x: auto;
}

.code-block.active {
    display: block;
}

.code-block code {
    color: #d4d4d4;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===========================
   CTA Section
   =========================== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

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

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

.cta-content > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row:has(input[type="text"]):has(input[type="email"]),
.form-row:has(input[type="text"]):has(input[type="tel"]) {
    grid-template-columns: 1fr 1fr;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--white);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
}

.checkbox-label span {
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form .btn {
    width: auto;
    min-width: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Volle Breite nur auf Mobile */
@media (max-width: 768px) {
    .contact-form .btn {
        width: 100%;
    }
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.9;
}

.contact-success {
    display: none;
    opacity: 0;
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    background: rgba(40, 167, 69, 0.12);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #0f5132;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: opacity 0.2s ease;
}

.contact-success.visible {
    display: block;
    opacity: 1;
}

/* ===========================
   ROI Calculator Section
   =========================== */
.roi-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.roi-calculator {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.roi-input {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.roi-input label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.roi-input input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 50%, #e0e0e0 50%, #e0e0e0 100%);
    outline: none;
    -webkit-appearance: none;
    margin: 1.5rem 0;
    cursor: pointer;
}

.roi-input input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.4);
    transition: var(--transition);
}

.roi-input input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.6);
}

.roi-input input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.4);
    transition: var(--transition);
}

.roi-input input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.6);
}

.roi-display {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0 1.5rem;
    text-align: center;
}

.roi-number {
    font-size: 2.5rem;
}

.roi-hint {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.roi-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.roi-result-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.roi-result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.roi-result-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

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

.roi-result-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.roi-result-highlight h3 {
    color: var(--white);
}

.roi-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.roi-result-highlight .roi-label {
    color: rgba(255, 255, 255, 0.95);
}

.roi-description {
    color: var(--secondary-color);
    line-height: 1.8;
    font-size: 0.95rem;
}

.roi-result-highlight .roi-description {
    color: rgba(255, 255, 255, 0.85);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .mockup-content {
        grid-template-columns: 1fr;
    }

    .roi-calculator {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-text {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

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

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

    .section-header p {
        font-size: 1rem;
    }

    .features,
    .use-cases,
    .benefits,
    .roi-section,
    .pricing,
    .demo,
    .cta {
        padding: 60px 0;
    }

    .features-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .roi-input {
        padding: 2rem;
    }

    .roi-display {
        font-size: 1.5rem;
    }

    .roi-number {
        font-size: 2rem;
    }

    .roi-result-card h3 {
        font-size: 2rem;
    }

    .demo-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .code-tabs {
        overflow-x: auto;
    }

    .code-tab {
        padding: 1rem;
        white-space: nowrap;
    }

    .form-row:has(input[type="text"]):has(input[type="email"]),
    .form-row:has(input[type="text"]):has(input[type="tel"]) {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

    .stat strong {
        font-size: 1.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .price-amount {
        font-size: 3rem;
    }
}

/* ============================================================================
   Demo Section
   ============================================================================ */
.demo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.demo-section .section-header {
    margin-bottom: 3rem;
}

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

#findme-root {
    min-height: 600px;
}

#findme-root .leaflet-container {
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .demo-section {
        padding: 60px 0;
    }
    
    #findme-root {
        padding: 1rem !important;
        min-height: 500px;
    }
}

/* ============================================================================
   Hero Logo Styles
   ============================================================================ */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 123, 255, 0.2));
    animation: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 1024px) {
    .hero-logo {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .logo-container {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .hero-logo {
        max-height: 300px;
    }
}
