/* ===========================
   MOTUS – motus-fit.com
   Hauptstylesheet
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --navy:   #0D1F3C;
    --gold:   #F5C518;
    --teal:   #1E9EC8;
    --white:  #FFFFFF;
    --light:  #F9FAFB;
    --text:   #111827;
    --gray:   #6B7280;
    --border: #E5E7EB;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
p  { font-size: 1rem; color: var(--gray); line-height: 1.7; }

.section-badge {
    display: inline-block;
    background: rgba(201,168,76,0.12);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title { color: var(--text); margin-bottom: 16px; }
.section-sub   { font-size: 1.05rem; color: var(--gray); max-width: 580px; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}
.btn-gold:hover { background: #b8963f; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201,168,76,0.3); }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }

.btn-white {
    background: var(--white);
    color: var(--navy);
}
.btn-white:hover { background: var(--light); transform: translateY(-1px); }

/* ===========================
   DOT PATTERN BACKGROUND
   =========================== */
.dots-bg {
    background-color: var(--white);
    background-image: radial-gradient(circle, #d1d5db 1px, transparent 1px);
    background-size: 24px 24px;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0 5%;
}

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

.nav-logo img {
    height: 48px;
    width: auto;
}
.nav-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 36px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
    position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 32px 5%;
    flex-direction: column;
    gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 16px; text-align: center; justify-content: center; }

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    padding: 80px 5% 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 72px);
}

.hero-inner {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content { }
.hero-content h1 { margin-bottom: 24px; }
.hero-content h1 span { color: var(--gold); }
.hero-content p { font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-media { display: flex; justify-content: center; }

.video-wrap {
    position: relative;
    width: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(13,27,42,0.25);
}
.video-wrap iframe {
    width: 100%;
    height: 568px;
    border: none;
    display: block;
}

.hero-trust {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item i { color: var(--gold); font-size: 1.1rem; }
.trust-item span { font-size: 0.9rem; font-weight: 500; color: var(--gray); }

/* ===========================
   SECTION WRAPPER
   =========================== */
.section {
    padding: 96px 5%;
}
.section-center {
    text-align: center;
}
.section-center .section-sub { margin: 0 auto 48px; }
.container { max-width: 1200px; margin: 0 auto; }

/* ===========================
   SERVICES GRID
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.3s ease;
    cursor: default;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.service-icon {
    width: 56px; height: 56px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-icon i {
    font-size: 1.4rem;
    color: var(--gold);
}

.service-card h3 { margin-bottom: 12px; color: var(--text); }
.service-card p  { font-size: 0.9rem; }

/* ===========================
   PROCESS / HOW IT WORKS
   =========================== */
.process-section {
    background: var(--navy);
    color: var(--white);
}
.process-section .section-badge {
    background: rgba(255,255,255,0.1);
    color: var(--gold);
    border-color: rgba(201,168,76,0.3);
}
.process-section .section-title { color: var(--white); }
.process-section .section-sub   { color: rgba(255,255,255,0.7); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 56px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 14%; right: 14%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
}

.step { text-align: center; position: relative; }
.step-number {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}
.step h3 { color: var(--white); margin-bottom: 12px; }
.step p   { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ===========================
   ABOUT TEASER
   =========================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 520px;
}
.about-badge-float {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--gold);
    color: var(--navy);
    padding: 20px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
    line-height: 1.4;
}
.about-badge-float strong { font-size: 2rem; display: block; }

.about-content .section-badge { margin-top: 0; }
.about-content h2 { margin-bottom: 20px; }
.about-content p  { margin-bottom: 16px; }

.about-checks {
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.check-item i { color: var(--gold); font-size: 0.9rem; }
.check-item span { font-size: 0.95rem; color: var(--text); font-weight: 500; }

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section { background: var(--light); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    transition: background 0.2s;
}
.faq-question:hover { background: var(--light); }
.faq-question i { color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-question i { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    background: var(--navy);
    background-image: radial-gradient(circle at 20% 50%, rgba(0,180,200,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(201,168,76,0.1) 0%, transparent 50%);
    text-align: center;
    padding: 96px 5%;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 36px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 64px 5% 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-logo img { height: 48px; margin-bottom: 16px; }
.footer-logo p { font-size: 0.85rem; max-width: 240px; }

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul a {
    font-size: 0.9rem;
    color: var(--gray);
    transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 0.9rem;
    transition: all 0.2s;
}
.social-btn:hover { background: var(--gold); color: var(--navy); }

.footer-bottom {
    max-width: 1200px;
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--gray); margin: 0; }
.footer-bottom a { color: var(--gray); }
.footer-bottom a:hover { color: var(--gold); }

/* ===========================
   LEGAL PAGES (Impressum, Datenschutz, AGB)
   =========================== */
.legal-hero {
    background: var(--navy);
    padding: 80px 5% 64px;
    text-align: center;
}
.legal-hero h1 { color: var(--white); font-size: 2.5rem; }
.legal-hero p { color: rgba(255,255,255,0.6); margin-top: 12px; }

.legal-content {
    max-width: 800px;
    margin: 64px auto;
    padding: 0 5%;
}
.legal-content h2 {
    font-size: 1.4rem;
    margin: 40px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.legal-content h3 {
    font-size: 1rem;
    margin: 24px 0 8px;
}
.legal-content p {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--gray);
}
.legal-content strong { color: var(--text); }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { margin-bottom: 32px; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.contact-item i {
    width: 40px; height: 40px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.contact-item div span { font-size: 0.8rem; color: var(--gray); display: block; }
.contact-item div strong { font-size: 0.95rem; color: var(--text); }

.calendly-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    min-height: 600px;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-hero {
    padding: 80px 5%;
    background: var(--light);
}
.about-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-hero-img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 20px;
}
.about-hero-content h1 span { color: var(--gold); }
.about-hero-content p { margin: 20px 0 12px; }

.about-second-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin-top: 40px;
}

/* ===========================
   LEISTUNGEN PAGE
   =========================== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.service-detail:nth-child(even) .service-detail-content { order: 2; }
.service-detail:nth-child(even) .service-detail-visual  { order: 1; }

.service-detail-visual {
    background: var(--navy);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}
.service-detail-visual img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}
.service-detail-visual i {
    font-size: 5rem;
    color: var(--gold);
}

.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content p  { margin-bottom: 20px; }

.service-benefits {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}
.benefit::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 5%;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    .hero { padding: 48px 5% 64px; min-height: auto; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-media { order: -1; }
    .video-wrap { width: 260px; }
    .video-wrap iframe { height: 462px; }

    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 32px; }
    .process-steps::before { display: none; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-badge-float { display: none; }

    .faq-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; }
    .about-hero-inner { grid-template-columns: 1fr; }
    .service-detail { grid-template-columns: 1fr; }
    .service-detail:nth-child(even) .service-detail-content { order: unset; }
    .service-detail:nth-child(even) .service-detail-visual  { order: unset; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-trust { gap: 16px; }
}
