/* ============================================
   Local Fonts (Plus Jakarta Sans – selbst gehostet,
   keine Übertragung an Google-Server, DSGVO-konform)
   ============================================ */
/* latin-ext (Ä Ö Ü ß und erweiterte lateinische Zeichen) */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
                   U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
                   U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                   U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin (Grundzeichen inkl. €, Anführungszeichen etc.) */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('fonts/plus-jakarta-sans-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                   U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                   U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
                   U+FEFF, U+FFFD;
}

/* ============================================
   Variables & Reset
   ============================================ */
:root {
    --white: #FFFFFF;
    --bg: #F8FAFC;
    --bg-warm: #FFF9F5;
    --surface: #FFFFFF;
    --surface-alt: #F1F5F9;
    --text: #0F172A;
    --text-mid: #334155;
    --text-muted: #64748B;
    --text-dim: #94A3B8;
    --primary: #2563EB;
    --primary-light: #3B82F6;
    --primary-bg: #EFF6FF;
    --accent: #F97316;
    --accent-bg: #FFF7ED;
    --green: #16A34A;
    --green-bg: #F0FDF4;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -2px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 50px -10px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Section Headings
   ============================================ */
.section-head {
    text-align: center;
    margin-bottom: 56px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.section-head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
}

.section-head p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.hl {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border: none;
    border-radius: 10px;
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}

.btn-primary:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.35);
}

.btn-glass {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-glass:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: var(--radius);
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 0;
    transition: all 0.3s var(--ease);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    box-shadow: var(--shadow-xs);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 500;
    z-index: 101;
}

.logo strong { font-weight: 800; }

.logo-mark {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 10px;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: all 0.2s var(--ease);
}

.nav-links a:hover {
    color: var(--text);
    background: var(--surface-alt);
}

.nav-cta {
    background: var(--primary) !important;
    color: white !important;
}

.nav-cta:hover {
    background: #1D4ED8 !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: var(--bg-warm);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(37,99,235,0.12);
    top: -150px;
    right: -100px;
    animation: morphA 15s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(249,115,22,0.1);
    bottom: -100px;
    left: -80px;
    animation: morphB 18s ease-in-out infinite;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(22,163,74,0.08);
    top: 40%;
    left: 50%;
    animation: morphC 12s ease-in-out infinite;
}

@keyframes morphA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px,20px) scale(1.1); } }
@keyframes morphB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-25px) scale(1.05); } }
@keyframes morphC { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-15px,15px) scale(0.95); } }

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

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--green-bg);
    border: 1px solid rgba(22,163,74,0.15);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 20px;
}

.pill-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.text-highlight {
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -4px;
    right: -4px;
    height: 35%;
    background: rgba(249,115,22,0.15);
    border-radius: 4px;
    z-index: -1;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    border: 2px solid var(--white);
    margin-left: -8px;
}

.avatar:first-child { margin-left: 0; }

.trust-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.trust-stars span {
    font-weight: 700;
    font-size: 0.88rem;
    margin-left: 4px;
}

.trust-count {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-showcase {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 440px;
}

.device {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
}

.device-laptop {
    width: 240px;
    height: 170px;
    top: 10%;
    left: 5%;
    animation: floatA 6s ease-in-out infinite;
}

.device-phone {
    width: 110px;
    height: 170px;
    bottom: 15%;
    right: 10%;
    animation: floatB 7s ease-in-out infinite;
}

.device-tablet {
    width: 150px;
    height: 190px;
    top: 35%;
    right: 25%;
    animation: floatC 8s ease-in-out infinite;
}

.device svg {
    width: 60%;
    height: 60%;
}

@keyframes floatA { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(0deg); } }
@keyframes floatB { 0%,100% { transform: translateY(0) rotate(3deg); } 50% { transform: translateY(-10px) rotate(1deg); } }
@keyframes floatC { 0%,100% { transform: translateY(0) rotate(1deg); } 50% { transform: translateY(-15px) rotate(-1deg); } }

.showcase-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.badge-speed {
    top: 5%;
    right: 5%;
    color: var(--accent);
}

.badge-check {
    bottom: 8%;
    left: 10%;
    color: var(--green);
}

/* ============================================
   Marquee
   ============================================ */
.marquee-strip {
    background: var(--primary);
    color: white;
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    animation: marquee 30s linear infinite;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.marquee-track .dot {
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   Services
   ============================================ */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: hsl(var(--accent-h), 80%, 55%);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease);
    transform-origin: left;
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--accent-h), 80%, 96%);
    color: hsl(var(--accent-h), 80%, 45%);
    border-radius: var(--radius);
    margin-bottom: 20px;
    transition: all 0.3s var(--ease);
}

.svc-card:hover .svc-icon {
    background: hsl(var(--accent-h), 80%, 50%);
    color: white;
    transform: scale(1.05) rotate(-3deg);
}

.svc-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.svc-card > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.svc-tags span {
    padding: 4px 10px;
    background: var(--surface-alt);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ============================================
   Why Us / Features
   ============================================ */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feat-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease);
    position: relative;
}

.feat-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md), 0 0 0 1px var(--primary);
}

.feat-num {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.3;
}

.feat-card:hover .feat-num { opacity: 0.6; }

.feat-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feat-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Process / Timeline
   ============================================ */
.process {
    padding: 100px 0;
}

.timeline {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 23px;
    width: 2px;
    background: var(--border);
}

.tl-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}

.tl-step:last-child { margin-bottom: 0; }

.tl-marker {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border: 2px solid var(--border);
    border-radius: 50%;
    color: var(--primary);
    z-index: 1;
    transition: all 0.3s var(--ease);
}

.tl-step:hover .tl-marker {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(37,99,235,0.1);
}

.tl-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.tl-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.tl-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Reviews
   ============================================ */
.reviews {
    padding: 100px 0;
    background: var(--white);
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.review-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s var(--ease);
}

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

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.review-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
    min-width: 0;
}

.review-meta strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-meta .review-stars {
    margin-bottom: 0;
    margin-top: 3px;
}

.google-badge {
    flex-shrink: 0;
    margin-left: auto;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.review-card > p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 12px;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.review-tags span {
    font-size: 0.75rem;
    background: var(--surface-alt);
    color: var(--text-muted);
    border-radius: 100px;
    padding: 3px 10px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-author strong {
    font-size: 0.88rem;
}

.review-author span {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-left: 4px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.faq-item:hover { border-color: var(--primary); }

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-sm);
}

.faq-item summary {
    padding: 18px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-dim);
    transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-item p {
    padding: 0 24px 18px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    animation: fadeDown 0.3s var(--ease);
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Contact
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--white);
}

/* Channels */
.contact-channels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.25s var(--ease);
    background: var(--bg);
}

.channel:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.channel-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.channel-whatsapp .channel-icon { background: #E7F5E7; color: #25D366; }
.channel-signal .channel-icon { background: #E8EDFF; color: #3A76F0; }
.channel-phone .channel-icon { background: var(--primary-bg); color: var(--primary); }
.channel-email .channel-icon { background: var(--accent-bg); color: var(--accent); }

.channel-whatsapp:hover { border-color: #25D366; }
.channel-signal:hover { border-color: #3A76F0; }
.channel-phone:hover { border-color: var(--primary); }
.channel-email:hover { border-color: var(--accent); }

.channel-text strong {
    display: block;
    font-size: 0.92rem;
}

.channel-text span {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.channel-arrow {
    margin-left: auto;
    flex-shrink: 0;
    color: var(--text-dim);
    transition: transform 0.25s;
}

.channel:hover .channel-arrow {
    transform: translateX(3px);
    color: var(--text-mid);
}

/* Divider */
.contact-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.contact-divider span {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500;
    white-space: nowrap;
}

/* Form Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

.contact-form {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.form-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
    padding-bottom: 0;
}

.form-section-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-mid);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    margin-bottom: 14px;
}

.field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-mid);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    transition: all 0.2s var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--text-dim);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

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

/* Radio Group */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s var(--ease);
}

.radio-option:hover { border-color: var(--primary); }
.radio-option:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-bg);
    color: var(--primary);
}

.radio-option input { accent-color: var(--primary); }

/* Checkbox */
.checkbox-label {
    display: flex !important;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.82rem !important;
    color: var(--text-muted) !important;
    cursor: pointer;
}

.checkbox-label input { margin-top: 2px; accent-color: var(--primary); }

.link {
    color: var(--primary);
    text-decoration: underline;
}

/* Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.sidebar-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.sidebar-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hours-grid span:nth-child(odd) {
    font-weight: 600;
    color: var(--text-mid);
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}

.ql-wa { color: #25D366; background: rgba(37,211,102,0.08); }
.ql-wa:hover { background: rgba(37,211,102,0.15); }
.ql-signal { color: #3A76F0; background: rgba(58,118,240,0.08); }
.ql-signal:hover { background: rgba(58,118,240,0.15); }
.ql-phone { color: var(--primary); background: var(--primary-bg); }
.ql-phone:hover { background: rgba(37,99,235,0.12); }

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--text);
    color: var(--text-dim);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 14px;
    color: var(--white);
}

.footer-brand .logo-mark {
    background: var(--primary);
}

.footer-brand > p {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 260px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-col li { margin-bottom: 6px; }

.footer-col a {
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

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

/* ============================================
   Floating Contact Buttons
   ============================================ */
.fab-group {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 90;
}

.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.25s var(--ease);
}

.fab-btn:hover {
    transform: scale(1.12) translateX(-4px);
}

.fab-btn-wa {
    background: #25D366;
    box-shadow: 0 4px 16px rgba(37,211,102,0.45);
    animation: fabPulse 3s ease-in-out infinite;
}

.fab-btn-wa:hover {
    box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

.fab-btn-signal {
    background: #3A76F0;
    box-shadow: 0 4px 16px rgba(58,118,240,0.4);
}

.fab-btn-signal:hover {
    box-shadow: 0 6px 24px rgba(58,118,240,0.5);
}

.fab-btn-email {
    background: var(--accent);
    box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}

.fab-btn-email:hover {
    box-shadow: 0 6px 24px rgba(249,115,22,0.45);
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 4px 16px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ============================================
   Animations
   ============================================ */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    animation: slideUp 0.7s var(--ease) forwards;
}

.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.35s; }
.d4 { animation-delay: 0.5s; }

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.services-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.24s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.30s; }
.services-grid .reveal:nth-child(7) { transition-delay: 0.36s; }
.services-grid .reveal:nth-child(8) { transition-delay: 0.42s; }
.services-grid .reveal:nth-child(9) { transition-delay: 0.48s; }

.features-row .reveal:nth-child(2) { transition-delay: 0.08s; }
.features-row .reveal:nth-child(3) { transition-delay: 0.16s; }
.features-row .reveal:nth-child(4) { transition-delay: 0.24s; }
.features-row .reveal:nth-child(5) { transition-delay: 0.32s; }
.features-row .reveal:nth-child(6) { transition-delay: 0.40s; }

.timeline .reveal:nth-child(2) { transition-delay: 0.1s; }
.timeline .reveal:nth-child(3) { transition-delay: 0.2s; }
.timeline .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { display: none; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-row { grid-template-columns: repeat(2, 1fr); }
    .reviews-carousel { grid-template-columns: repeat(2, 1fr); }
    .contact-channels { grid-template-columns: repeat(2, 1fr); }
    .fab-btn { width: 50px; height: 50px; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-sidebar { position: static; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        border-left: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 28px 28px;
        gap: 4px;
        transition: right 0.3s var(--ease);
        box-shadow: var(--shadow-xl);
    }

    .nav-links.open { right: 0; }
    .nav-links a { padding: 12px 16px; font-size: 0.95rem; }

    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .services-grid { grid-template-columns: 1fr; }
    .features-row { grid-template-columns: 1fr; }
    .reviews-carousel { grid-template-columns: 1fr; }
    .contact-channels { grid-template-columns: 1fr; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }

    .radio-group { flex-direction: column; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 120px 0 60px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .hero-btns .btn { justify-content: center; }
    .contact-form { padding: 24px; }
    .svc-card { padding: 24px; }
    .feat-card { padding: 24px; }
}
