/* ============================================
   gRemote — Produktpage Styles
   Ergänzt verkooyen.org style.css
   ============================================ */

:root {
    --gr-dark: #0a0e1a;
    --gr-navy: #111827;
    --gr-blue: #1a3a5c;
    --gr-volt: #502379;
    --gr-green: #00ff88;
    --gr-accent: #00d4ff;
    --gr-card-bg: #ffffff;
    --gr-border: #e0e0e0;
    --gr-text: #2a2a3e;
    --gr-text-muted: #6a6a7e;
    --gr-radius: 12px;
    --gr-radius-sm: 8px;
    --gr-transition: 0.3s ease;
}

/* == gRemote Hero == */
.gremote-hero {
    background: linear-gradient(135deg, var(--gr-dark) 0%, var(--gr-navy) 50%, var(--gr-blue) 100%);
    color: #fff;
    padding: 4rem 1.5rem 3.5rem;
    overflow: hidden;
    position: relative;
}

.gremote-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gremote-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--gr-green);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

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

@keyframes gremote-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
}

.gremote-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.gremote-hero-slogan {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.gremote-highlight {
    color: var(--gr-green);
    font-weight: 600;
}

.gremote-hero-sub {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

.gremote-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.gremote-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.gremote-stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.gremote-stat-unit {
    font-size: 1.2rem;
    color: var(--gr-green);
    font-weight: 600;
}

.gremote-stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

/* == Problem / Lösung == */
.gremote-problem-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.gremote-problem-card {
    border-radius: var(--gr-radius);
    padding: 2rem;
    border: 1px solid var(--gr-border);
}

.gremote-problem-bad {
    background: #fff5f5;
    border-color: #ffcdd2;
}

.gremote-problem-good {
    background: #f0fff4;
    border-color: #c8e6c4;
}

.gremote-problem-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.gremote-problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gr-dark);
}

.gremote-problem-card ul {
    list-style: disc;
    padding-left: 1.25rem;
}

.gremote-problem-card ul li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: var(--gr-text);
    font-size: 0.95rem;
}

.gremote-problem-arrow {
    color: var(--gr-volt);
    font-size: 2rem;
}

.gremote-problem-arrow svg {
    width: 48px;
    height: 24px;
}

/* == Dashboard == */
.gremote-dashboard-frame {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--gr-radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--gr-border);
}

.gremote-dashboard-bar {
    background: var(--gr-dark);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gremote-db-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.gremote-db-dot.red { background: #ff5f57; }
.gremote-db-dot.yellow { background: #ffbd2e; }
.gremote-db-dot.green { background: #28c940; }

.gremote-db-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.gremote-dashboard-img {
    width: 100%;
    display: block;
}

.gremote-dashboard-caption {
    text-align: center;
    color: var(--gr-text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* == Features == */
.gremote-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gremote-feature-card {
    background: var(--gr-card-bg);
    border: 1px solid var(--gr-border);
    border-radius: var(--gr-radius);
    padding: 2rem;
    transition: all var(--gr-transition);
    position: relative;
    overflow: hidden;
}

.gremote-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gr-volt);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--gr-transition);
}

.gremote-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

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

.gremote-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.gremote-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--gr-dark);
}

.gremote-feature-card p {
    color: var(--gr-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* == Tech Table == */
.gremote-tech-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.gremote-tech-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--gr-radius);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.gremote-tech-table thead {
    background: var(--gr-dark);
    color: #fff;
}

.gremote-tech-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
}

.gremote-tech-table td {
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid var(--gr-border);
    font-size: 0.95rem;
    color: var(--gr-text);
}

.gremote-tech-table tbody tr:last-child td {
    border-bottom: none;
}

.gremote-tech-table tbody tr:hover {
    background: #f8f9fa;
}

.gremote-accent-green {
    color: #00a75f;
    font-weight: 600;
}

/* == DSGVO == */
.gremote-dsgvo-section {
    background: linear-gradient(135deg, #f0fff4 0%, #e8f5e9 100%);
}

.gremote-dsgvo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gremote-dsgvo-point {
    background: #fff;
    border-radius: var(--gr-radius);
    padding: 2rem;
    border: 1px solid #c8e6c4;
    position: relative;
}

.gremote-dsgvo-num {
    font-size: 2rem;
    font-weight: 800;
    color: #00a75f;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.gremote-dsgvo-point h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--gr-dark);
}

.gremote-dsgvo-point p {
    color: var(--gr-text-muted);
    line-height: 1.6;
    font-size: 0.92rem;
}

.gremote-dsgvo-point code {
    background: #f0f0f0;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

/* == BSFZ == */
.gremote-bsfz-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.gremote-bsfz-seal {
    text-align: center;
    position: relative;
}

.gremote-bsfz-seal-img {
    max-width: 200px;
    height: auto;
    border-radius: var(--gr-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gremote-seal-ribbon {
    display: inline-block;
    background: var(--gr-volt);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.gremote-bsfz-list {
    list-style: none;
    padding: 0;
}

.gremote-bsfz-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gr-border);
    color: var(--gr-text);
    font-size: 0.95rem;
}

.gremote-bsfz-list li:last-child {
    border-bottom: none;
}

.gremote-bsfz-list li strong {
    color: var(--gr-dark);
}

/* == Use Cases == */
.gremote-usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gremote-usecase-card {
    background: #fff;
    border: 1px solid var(--gr-border);
    border-radius: var(--gr-radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--gr-transition);
}

.gremote-usecase-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--gr-volt);
}

.gremote-usecase-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gremote-usecase-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--gr-dark);
}

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

/* == Pricing == */
.gremote-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gremote-pricing-card {
    background: #fff;
    border: 1px solid var(--gr-border);
    border-radius: var(--gr-radius);
    padding: 2rem;
    position: relative;
    transition: all var(--gr-transition);
}

.gremote-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.gremote-pricing-featured {
    border-color: var(--gr-volt);
    border-width: 2px;
}

.gremote-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gr-volt);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.gremote-pricing-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gr-dark);
    margin-bottom: 0.5rem;
}

.gremote-pricing-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gr-dark);
    margin-bottom: 0.25rem;
}

.gremote-pricing-amount {
    font-size: 2.5rem;
}

.gremote-pricing-period {
    color: var(--gr-text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.gremote-pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.gremote-pricing-features li {
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--gr-border);
    font-size: 0.9rem;
    color: var(--gr-text);
}

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

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

/* == Kontakt == */
.gremote-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.gremote-contact-info {
    padding: 2rem 0;
}

.gremote-contact-row {
    display: flex;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gr-border);
}

.gremote-contact-label {
    width: 130px;
    font-weight: 600;
    color: var(--gr-dark);
    font-size: 0.9rem;
}

.gremote-contact-value {
    color: var(--gr-text-muted);
    font-size: 0.95rem;
}

.gremote-contact-value a {
    color: var(--gr-volt);
}

.gremote-contact-form-wrap {
    background: #fff;
    border: 1px solid var(--gr-border);
    border-radius: var(--gr-radius);
    padding: 2rem;
}

.gremote-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gremote-form-group {
    display: flex;
    flex-direction: column;
}

.gremote-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gr-dark);
    margin-bottom: 0.35rem;
}

.gremote-form-group input,
.gremote-form-group textarea {
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--gr-border);
    border-radius: var(--gr-radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color var(--gr-transition);
}

.gremote-form-group input:focus,
.gremote-form-group textarea:focus {
    outline: none;
    border-color: var(--gr-volt);
    box-shadow: 0 0 0 3px rgba(80, 35, 121, 0.1);
}

.gremote-form-group textarea {
    resize: vertical;
}

.gremote-form-disclaimer {
    font-size: 0.75rem;
    color: var(--gr-text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

.gremote-form-success {
    background: #f0fff4;
    border: 1px solid #c8e6c4;
    border-radius: var(--gr-radius);
    padding: 1.5rem;
    text-align: center;
}

.gremote-form-success p {
    color: #00a75f;
    font-weight: 600;
}

.gremote-form-error {
    background: #fff5f5;
    border: 1px solid #ffcdd2;
    border-radius: var(--gr-radius-sm);
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.gremote-form-error p {
    color: #c62828;
    font-size: 0.9rem;
}

/* == Responsive == */
@media (max-width: 768px) {
    .gremote-problem-grid {
        grid-template-columns: 1fr;
    }

    .gremote-problem-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }

    .gremote-bsfz-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gremote-contact-layout {
        grid-template-columns: 1fr;
    }

    .gremote-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gremote-hero {
        padding: 2.5rem 1rem;
    }

    .gremote-hero-title {
        font-size: 2rem;
    }

    .gremote-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .gremote-stat-num {
        font-size: 1.75rem;
    }
}