/* ========================================
   Tablex Website - Main Stylesheet
   Based on Design Mockups
   ======================================== */

/* CSS Variables */
:root {
    --primary: #008e66;
    --primary-dark: #007755;
    --text-color: #333;
    --text-light: #555;
    --text-muted: #888;
    --bg-light: #f8f8f8;
    --white: #fff;
    --border-color: #707070;
    --max-width: 1000px;
    --max-width-large: 1220px;
    --max-width-small: 808px;
    font-family: Roboto Condensed;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-anchor: none;
}

body {
    font-family: 'Roboto Condensed', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: normal;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* Prevent CLS - reserve space for images */
img[width][height] {
    /*! height: auto; */
}

ul, ol {
    list-style: none;
}

/* Screen reader only - visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-color);
}

h1 {
	font-size: 28px;
	font-weight: 700;
	color: #000;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

p {
    margin-bottom: 1em;
    color: var(--text-color);
	line-height:1.4;
	font-size:14px;
	font-weight:300;
	font-style:italic;
	}
	
	.plarge{
		margin-bottom: 1em;
    color: var(--text-color);
	line-height:1.4;
	font-size:18px;
	font-weight:300;
	font-style:italic;
	}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.bg-light { background: var(--bg-light); }

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* ========================================
   Header & Navigation
   ======================================== */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Footer placeholder */
#footer-placeholder {
    background: var(--white);
}

.header-top {
    text-align: center;
    padding: 20px 30px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    max-height: 300px;
    overflow: hidden;
}

.header-tagline {
    font-size: 16px;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 10px;
}

.logo {
    display: inline-block;
}

.logo img {
    width: 320px;
    height: auto;
}

/* Shrink header on scroll */
.site-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .header-top {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    pointer-events: none;
}

.site-header.no-transition .header-top {
    transition: none;
}

/* Navigation */
.main-nav {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.nav-list {
    display: flex;
    align-items: stretch;
}

.nav-list li {
    display: flex;
}

.nav-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 clamp(10px, 2vw, 30px);
    color: var(--text-color);
    font-size: clamp(13px, 1.2vw, 18px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease-out, color 0.3s ease-out;
    border-left: 1px solid var(--border-color);
    white-space: nowrap;
    background: var(--white);
}

.nav-list li:last-child a {
    border-right: 1px solid var(--border-color);
}

.nav-list a:hover {
    background: #008D66;
    color: var(--white);
}

.nav-list a.active {
    background: #008D66;
    color: var(--white);
}

/* Nav Logo (in navigation bar) */
.nav-logo {
    display: none;
    align-items: center;
    padding: 8px 20px;
    border-right: 1px solid var(--border-color);
}

.nav-logo:hover {
    background: transparent;
}

.nav-logo img {
    height: 15px;
    width: auto;
}

.site-header.scrolled .nav-logo {
    display: flex !important;
}

/* Hamburger Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    margin-left: auto;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-color);
    margin: 6px 0;
    transition: 0.3s ease;
    transform-origin: center;
}

/* Hamburger to X animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--primary);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--primary);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 30px;
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--primary);
}

.mobile-menu-close:hover {
    color: var(--primary-dark);
}

.mobile-menu-list {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.mobile-menu-list a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    transition: color 0.2s;
}

.mobile-menu-list a:hover,
.mobile-menu-list a.active {
    color: var(--primary);
}

.mobile-menu-logo {
    margin-top: auto;
    padding: 20px;
}

.mobile-menu-logo img {
    width: 40px;
    height: 40px;
    opacity: 0.5;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo img {
    width: 50%;
    height: 50%;
    opacity: 0.6;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 20px auto 0;
    padding: 20px 30px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
	min-height:50px;
	align-content:center;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

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

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

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

/* ========================================
   Info Box
   ======================================== */
.info-box {
    background: var(--primary);
    color: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
}

.info-box strong {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.info-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 14px;
}

/* ========================================
   Support Section
   ======================================== */
.support-section {
    position: relative;
    z-index: 1;
    padding: 0;
    margin-top: 80px;
}

.support-card {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: 0;
    text-align: center;
    transform: translateY(50%);
}

.support-card h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.support-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-style: italic;
}

.support-image {
    width: 100%;
    overflow: hidden;
}

.support-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 0;
}

.contact-box {
    max-width: var(--max-width-small);
    margin: 0 auto;
    border: 1px solid var(--border-color);
    background: var(--white);
    position: relative;
    z-index: 10;
    margin-bottom: -80px;
}

.contact-box-image img {
    display: block;
    width: 100%;
    height: auto;
}

.contact-box-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 25px 30px;
    align-items: end;
}

.contact-box-info > :first-child {
    align-self: start;
}

.contact-box-info h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-box-info p {
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: #000;
    margin: 0;
    line-height: 1.6;
}

.contact-box-info a {
    color: #000;
    font-weight: 500;
    font-style: normal;
}

.contact-box-sub {
    font-size: 10px !important;
    font-weight: 500 !important;
    font-style: normal !important;
    margin-top: 4px !important;
}

.contact-map {
    height: 480px;
    margin-top: -80px;
    background: var(--bg-light);
}

.contact-map iframe,
.contact-map canvas {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-map-section {
    padding-bottom: 0;
}

/* ========================================
   References Section
   ======================================== */
.references {
    padding: 80px 0;
}

.reference-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
}

.reference-logo img {
    width: 100%;
    height: auto;
}

.reference-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 400;
    font-family: Georgia, serif;
}

.reference-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   Sections
   ======================================== */
section {
    padding: 0px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-header h1 {
    margin-bottom: 15px;
}

.section-header p {
    max-width: 550px;
    margin: 0 auto;
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
}

/* ========================================
   Hero Banner
   ======================================== */
.hero-banner {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-banner .container {
    max-width: calc(808px + 60px);
}

.hero + .hero-banner {
    padding-top: 0;
    margin-bottom: 0;
}

.hero-banner img {
    max-width: 808px;
    width: 100%;
    height: auto;
}

.hero-banner-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

/* ========================================
   Intro Section
   ======================================== */
.intro-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.intro-content {
    display: grid;
    grid-template-columns: 396px 1fr;
    gap: 50px;
    
    max-width: var(--max-width-large);
    margin: 0 auto;
    padding: 0 30px;
}

.intro-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0px;
    color: #008D66;
    margin-bottom: 12px;
}

.intro-heading {
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    color: #000;
    margin-bottom: 20px;
}

.intro-desc {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    line-height: 22px;
    color: #000;
}

.intro-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.intro-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ========================================
   Tools Section
   ======================================== */
.tools-section {
    background: #F8F8F8;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.tools-container {
    max-width: var(--max-width-large);
    margin: 0 auto;
    padding: 0 30px;
}

.tools-heading {
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
}

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

.tool-card {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    min-height: 165px;
}

.tool-icon {
    width: 25px;
    height: 25px;
    margin-bottom: 10px;
}

.tool-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #000;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 5px;
}

.tool-desc {
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    line-height: 17px;
    color: #000;
    margin: 0;
}

.tool-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    padding: 30px;
}

.tool-cta-link {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #008D66;
    text-decoration: none;
}

.tool-cta-link:hover {
    color: var(--primary-dark);
}

.tool-cta-desc {
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    line-height: 17px;
    color: #000;
    margin: 5px 0 0 0;
}

@media (max-width: 992px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Available Section
   ======================================== */
.available-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.available-container {
    max-width: var(--max-width-large);
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 396px;
    gap: 50px;
    align-items: center;
}

.available-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.available-text {
    text-align: right;
	align-self:end;
}

.available-heading {
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    color: #000;
    margin-bottom: 20px;
}

.available-desc {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    line-height: 22px;
    color: #000;
    margin-bottom: 5px;
}

.available-platforms {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: nowrap;
	padding-top:20px;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid #707070;
    border-radius: 5px;
    color: #000;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.platform-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.platform-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.platform-link span {
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    text-transform: uppercase;
    line-height: 17px;
}

@media (max-width: 992px) {
    .available-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .available-text {
        text-align: center;
    }
    .available-platforms {
        justify-content: center;
    }
}

/* ========================================
   Support Teaser Section
   ======================================== */
.support-teaser {
    background: #F8F8F8;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.support-teaser-container {
    max-width: var(--max-width-small);
    margin: 0 auto;
    padding: 0 30px;
}

.support-teaser-heading {
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    color: #000;
    margin-bottom: 20px;
}

.support-teaser-desc {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    line-height: 22px;
    color: #000;
    max-width: 396px;
    margin: 0 auto 25px;
}

.support-teaser-hours {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
    color: #008D66;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.support-teaser-hours-notfall {
    font-weight: 600;
    color: #008D66;
    margin-top: 0px;
}

.support-teaser-channels {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 35px;
}

.support-teaser-channel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid #707070;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    line-height: 17px;
    color: #000;
    text-transform: uppercase;
}

/* ========================================
   Tablini Banner
   ======================================== */
.tablini-banner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 30px;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tablini-banner > img {
    width: 100%;
	max-width:808px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.tablini-banner-action {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    max-width: 808px;
    margin: 20px auto 0;
}

/* ========================================
   Tablini Detail Section
   ======================================== */
.tablini-detail {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.tablini-detail-container {
    max-width: var(--max-width-large);
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 396px 1fr;
    gap: 50px;
    align-items: start;
}

.tablini-detail-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0px;
    color: #008D66;
    margin-bottom: 12px;
}

.tablini-detail-heading {
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    color: #000;
    margin-bottom: 20px;
}

.tablini-detail-desc {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    line-height: 22px;
    color: #000;
}

.tablini-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tablini-detail-image img {
    width: 100%;
   
    height: auto;
}

@media (max-width: 992px) {
    .tablini-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tablini-detail-image {
        max-width: 400px;
        margin: 0 auto;
    }
}


/* ========================================
   Customers Section
   ======================================== */
.customers-section {
    background: #F8F8F8;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.customers-container {
    max-width: var(--max-width-small);
    margin: 0 auto;
    padding: 0 30px;
}

.customers-heading {
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.customer-logo {
    background: #fff;
    border-radius: 14px;
    width: 100%;
    height: 127px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.customer-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 992px) {
    .customers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   Pricing Teaser Section
   ======================================== */
.pricing-teaser {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pricing-teaser-container {
    max-width: var(--max-width-small);
    margin: 0 auto;
    padding: 0 30px;
}

.pricing-teaser-heading {
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    color: #000;
    margin-bottom: 30px;
}

.pricing-teaser-price {
    font-size: 40px;
    font-weight: 600;
    color: #008D66;
    line-height: 1;
    margin-bottom: 10px;
}

.pricing-teaser-amount {
    font-size: 100px;
}

.pricing-teaser-sub {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    line-height: 22px;
    color: #000;
    margin-bottom: 35px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding: 60px 0;
    padding-bottom: 0;
    margin-top: 60px;
    overflow: visible;
}

.hero-content {
    display: grid;
    grid-template-columns: auto minmax(285px, 1fr);
    gap: 50px;
    align-items: start;
}

.hero-text h1 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero-text h2 {
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-color);
}

.hero-image img {
    display: block;
    max-width: 100%;
}

.hero-card {
    position: relative;
    z-index: 10;
    align-self: end;
    transform: translateY(80px);
}

/* ========================================
   Cards
   ======================================== */
.card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-muted);
	font-style: italic;
}

.card .btn {
    margin-top: 5px;
	
}

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

.card-grid .card {
    border-radius: 12px;
}

/* Outline Card */
.card-outline-primary {
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 0;
    box-shadow: none;
}

.card-outline-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 142, 102, 0.15);
}

/* Green Card */
.card-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #006b4d 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 142, 102, 0.25);
}

.card-primary:hover {
    box-shadow: 0 12px 35px rgba(0, 142, 102, 0.35);
}

.card-primary h3,
.card-primary p,
.card-primary strong {
    color: var(--white);
}

.card-primary p {
    opacity: 0.95;
    color: var(--white);
}

/* ========================================
   Feature List (Funktionen)
   ======================================== */
.feature-list {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
}

.feature-item {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 50px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-color);
    align-items: baseline;
}

.feature-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-color);
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========================================
   Pricing Hero
   ======================================== */
.pricing-hero {
    padding: 220px 0;
}

.pricing-hero .container {
    max-width: var(--max-width-large);
}

.pricing-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.pricing-hero-text h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: none;
    letter-spacing: 0;
	max-width:296px;
	color:var(--text-color);
}

.pricing-hero-text p {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: var(--text-color);
	max-width:296px;
}

.pricing-hero-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ========================================
   Pricing Cards
   ======================================== */
.pricing-cards-section {
    background: var(--bg-light);
    padding: 140px 0;
}

.pricing-cards-wrapper {
    max-width: 808px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-card {
    border-radius: 22px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	background:white;
	gap:30px;

}

.pricing-card-primary {
    background: #008d66;
    color: #fff;
    padding: 60px;
}

.pricing-card-primary h3 {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #fff;
}

.pricing-card-primary p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
	font-style:italic;
	font-weight:300;
}

.pricing-card-link {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.7);
    margin-top: 24px;
}

.pricing-card-price {
    font-size: 2.2rem;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 30px;
}

.pricing-card-primary .pricing-card-price {
    color: #fff;
}

.pricing-card-price-green {
    color: var(--primary);
}

.pricing-card-white {
    background: #fff;
    border: 1px solid #e0e0e0;
    color: var(--text-color);
}

.pricing-card-white h3 {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-color);
}

.pricing-card-white p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-plus {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    margin-right: 4px;
}

.pricing-card-optional {
    flex-direction: column;
    align-items: stretch;
}

.pricing-card-optional h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.pricing-optional-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-optional-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-optional-table tr {
    border-bottom: 1px solid #eee;
}

.pricing-optional-table tr:last-child {
    border-bottom: none;
}

.pricing-optional-table td {
    padding: 10px 0;
    font-size: 0.85rem;
}

.pricing-opt-name {
    color: var(--text-color);
    font-weight: 300;
}

.pricing-opt-interval {
    color: var(--text-muted);
    text-align: center;
}

.pricing-opt-price {
    color: var(--text-color);
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

/* ========================================
   Products (Tablini)
   ======================================== */
.product-list {
    max-width: 800px;
    margin: 0 auto;
}

.product-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
    padding: 35px 0;
    border-bottom: 1px solid var(--border-color);
}

.product-item:last-child {
    border-bottom: none;
}

.product-image img {
    display: block;
    max-width: 100%;
}

.product-info h3 {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.product-info .price {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

/* Tablini Hero */
.tablini-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.tablini-hero-container {
    max-width: var(--max-width-large);
    margin: 0 auto;
    padding: 140px 15px;
    display: grid;
    grid-template-columns: 396px 1fr;
    gap: 50px;
    align-items: start;
}

.tablini-logo-img {
    width: 120px;
    height: auto;
}

/* Tablini Page */
.tablini-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 30px 30px 60px;
}

.tablini-intro {
    margin-bottom: 0;
}

.tablini-intro h1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
	color:var(--text-color);
}

.tablini-intro p {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    max-width: 500px;
    color: var(--text-color);
}

.tablini-brand {
    margin-top: 30px;
    text-align: left;
}

.tablini-brand img {
    height: 40px;
    width: auto;
}

.tablini-logo-text {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--text-color);
}

/* Tablini Grid */
.tablini-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.tablini-item {
    background: var(--white);
    overflow: hidden;
}

.tablini-image img {
    display: block;
    width: 100%;
    max-width: 808px;
    aspect-ratio: 808 / 501;
    object-fit: cover;
}

.tablini-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    max-width: 808px;
}

.tablini-details h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.tablini-details .price {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
    font-weight: 300;
    font-style: italic;
}

.tablini-actions {
    display: flex;
    gap: 15px;
}

.tablini-actions .btn {
    padding: 12px 40px;
    font-size: 14px;
    border-radius: 5px;
}

.btn-outline {
    display: inline-block;

    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease;
}

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

/* ========================================
   Contact Cards
   ======================================== */
.contact-cards {
display: grid;
  grid-template-columns: 600px 260px 260px;
  column-gap: 20px;
  row-gap: 30px;
  max-width: var(--max-width-large);
  margin: 0 auto;
  align-items: stretch;
}

.contact-card {
    padding: 45px 35px;
    background: var(--white);
    border: 1px solid var(--primary);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
}


.contact-card-cta {
    font-weight: 500 !important;
    font-style: normal !important;
    margin-top: auto;
}

.contact-card-link a {
    color: var(--primary);
    font-weight: 600;
    font-style: normal;
}

.contact-card .btn {
    margin-top: 15px;
    align-self: center;
	white-space:nowrap;
}

.contact-card-primary {
    background: var(--primary);
    border-color: transparent;
    border-radius: 10px;
}

.contact-card-primary h3,
.contact-card-primary p,
.contact-card-primary a {
    color: var(--white);
}

.contact-card-primary .contact-card-link a {
    color: var(--white);
}

.btn-outline-white {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid var(--white);
    border-radius: 5px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

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

/* ========================================
   About Section
   ======================================== */
.about-page-section {
    padding: 80px 0;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 0;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-image img {
    display: block;
    max-width: 100%;
}

.about-section-reverse {
    direction: rtl;
}

.about-section-reverse > * {
    direction: ltr;
}

.about-highlight {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 0;
    margin-top: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.badge-green {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    margin-top: 15px;
    font-size: 0.8rem;
}

.badge-green strong {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.badge-green span {
    opacity: 0.9;
    font-size: 0.8rem;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 500px;
    margin: 0 auto;
}

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

.team-member img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.team-member p {
    color: var(--primary);
    font-size: 0.85rem;
    margin: 0;
}

/* Team - About Page */
.about-team-section {
    text-align: center;
}

.about-team-photo {
    max-width: 800px;
    margin: 0 auto 40px;
}

.about-team-photo img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.about-team-names {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.about-team-member {
    text-align: center;
}

.about-team-member h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.about-team-member p {
    color: var(--primary);
    font-size: 0.85rem;
    margin: 0;
}

/* ========================================
   Stats Section
   ======================================== */
.stats-section {
    background: var(--bg-light);
    padding: 50px 0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* ========================================
   References
   ======================================== */
.references {
    padding: 60px 0;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
}

.reference-item {
    padding: 0 20px;
}

.reference-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.reference-logo img {
    max-height: 50px;
    max-width: 150px;
}

.reference-quote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.reference-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.reference-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
}

.reference-dots span.active {
    background: var(--primary);
}

/* ========================================
   Start / CTA Section
   ======================================== */
.starten-page {
    padding: 60px 0 80px;
}

.start-card {
    display: flex;
    border: 1px solid var(--border-color);
    max-width: 960px;
    margin: 0 auto;
    min-height: 650px;
}

.start-card-left {
    flex: 0 0 380px;
    background: rgba(0, 141, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.start-cta-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white) !important;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: background 0.2s, box-shadow 0.2s;
    text-align: center;
    line-height: 1.4;
}

.start-cta-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: var(--white) !important;
}

.start-card-right {
    flex: 1;
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.start-card-right-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.start-card-label {
    
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align:right;
	padding:5px 10px;
    margin-bottom: 12px;
    justify-content: right;
}
.start-card-heading {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    line-height: 1.2;
}

.start-card-desc {
    font-size: 17px;
    font-style: italic;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 28px;
}

.start-card-trial {
    margin-top: auto;
}

.trial-bold {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.trial-sub {
    display: block;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    color: var(--text-light);
    margin-top: 4px;
}

/* ========================================
   Map
   ======================================== */
.contact-map {
    height: 350px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
    height: 35px;
    
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--text-color);
	visibility:collapse;
}

.footer-nav {
    display: flex;
    gap: 35px;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding: 8px 30px;
    margin: 0 auto;
    max-width: var(--max-width);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ========================================
   Info Box (Green)
   ======================================== */
.info-box {
    background: var(--primary);
    color: var(--white);
    padding: 25px 30px;
    margin-top: 25px;
}

.info-box strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.info-box p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 0.9rem;
}

/* ========================================
   Legal Content (Impressum, Datenschutz)
   ======================================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: 40px;
}

.legal-content h3 {
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
    list-style: disc;
}

.legal-content ul li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1400px) {
    .nav-list a {
        padding: 16px 50px;
    }
    .header-top {
        margin-left: 15%;
    }
}

@media (max-width: 1200px) {
    .nav-list a {
        padding: 16px 35px;
    }
    .header-top {
        margin-left: 10%;
    }
}

@media (max-width: 992px) {
    .nav-list a {
        padding: 16px 20px;
    }
    .header-top {
        margin-left: 5%;
    }
    .hero-content,
    .about-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .start-card {
        flex-direction: column;
    }

    .start-card-left {
        flex: 0 0 auto;
        padding: 30px 20px;
    }

    .start-card-right {
        padding: 30px 25px;
    }

    .start-card-heading {
        font-size: 26px;
    }

    .start-card-desc {
        font-size: 15px;
    }

    .hero-image {
        order: -1;
        text-align: center;
    }

    .hero-image img {
        max-width: 500px;
        margin: 0 auto;
    }

    .card-grid,
    .reference-grid,
    .tablini-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tablini-list {
        max-width: 500px;
    }

    .stats-grid {
        gap: 40px;
    }

    .pricing-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-hero-image {
        text-align: center;
    }

    .pricing-hero-image img {
        max-width: 500px;
        margin: 0 auto;
    }
}

.neukunde-section {
    padding: 60px 0;
}

.neukunde-section h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.neukunde-desc {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-muted);
}

@media (max-width: 1100px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tablini-hero-container {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
    }

    .tablini-hero {
        min-height: auto;
    }

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

    .tablini-intro p {
        max-width: 100%;
    }

    .tablini-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .tablini-actions {
        flex-wrap: wrap;
    }

    .tablini-list {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 900px) {
    .header-top {
        padding: 20px;
        text-align: left;
    }

    .logo img {
        width: 200px;
    }

    .header-tagline {
        font-size: 14px;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }

    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .nav-list {
        display: none;
    }

    .nav-logo {
        display: flex !important;
        flex: 1;
        justify-content: center;
    }

    .nav-container {
        padding: 0 10px;
        min-height: 50px;
    }

    .main-nav {
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    section {
        padding: 50px 0;
    }

    .container {
        padding: 0 20px;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .product-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
    }

    .pricing-card:not(.pricing-card-optional) {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .pricing-card-price {
        margin-left: 0;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-team-names {
        gap: 40px;
    }

    .about-page-section {
        padding: 50px 0;
    }

    .btn {
        padding: 12px 24px;

    }

    .support-teaser-channels {
        flex-wrap: wrap;
        gap: 10px;
    }

    .pricing-teaser-amount {
        font-size: 50px;
    }

    .pricing-cards-section {
        padding: 60px 0;
    }

    .pricing-cards-wrapper {
        padding: 0 15px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card-primary {
        padding: 30px 20px;
    }

    .contact-box-info {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }

    .contact-box-info a,
    .contact-box-info p {
        white-space: nowrap;
    }

    .contact-map {
        height: 300px;
        margin-top: -40px;
    }

    .available-platforms {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2.5rem;
    }

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

    .contact-card {
        padding: 35px 25px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

/* ========================================
   Forms
   ======================================== */

.tx-form {
    max-width: 100%;
}

.form-container {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 142, 102, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.btn-block {
    width: 100%;
}

/* Form Messages */
.form-error {
    background: #fee;
    color: #c00;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success h3 {
    margin: 20px 0 10px;
    color: var(--primary);
}

.form-success p {
    color: var(--text-light);
}

.form-success .reference-id {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
}

/* Loading Spinner */
.spinner-small {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

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

/* Tab Navigation */
.tab-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 40px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 7px;
    font-family: inherit;
}

.tab-btn:first-child {
    border-right: none;
    border-radius: 7px 0 0 7px;
}

.tab-btn:last-child {
    border-left: none;
    border-radius: 0 7px 7px 0;
}

.tab-btn:hover {
    color: var(--text-color);
}

.tab-btn.active {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    border-color: var(--primary);
}

.starten-page .tab-content-wrapper {
    position: relative;
}

.tab-content {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.tab-content.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

/* Kontakt Page */
.kontakt-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 15px;
}

/* ========================================
   Funktionen Page
   ======================================== */

.funk-hero-section {
    padding: 140px 0 40px;
}

.funk-showcase-section {
    padding: 140px 0;
}

.funk-showcase-section .container {
    max-width: var(--max-width-large);
}

.funk-showcase-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 12px;
	max-width:293px;
}

.funk-showcase-subtitle {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: #000;
    margin-bottom: 30px;
	max-width:293px;
}

.funk-showcase {
    display: grid;
    grid-template-columns: 293px 1fr;
    gap: 80px;
    align-items: start;
}

.funk-toggle-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.funk-toggle-btn {
    display: block;
    width: 293px;
    height: 50px;
    padding: 0 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--white);
    color: var(--text-color);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    text-align: center;
}

.funk-toggle-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
	
}

.funk-toggle-btn.active {
    background: #008D66;
    color: var(--white);
    border-color: #008D66;
	font-weight:600;
	
}

.funk-showcase-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.funk-showcase-right img {
    display: block;
    max-width: 808px;
    width: 100%;
    height: auto;
    
}

.funk-partners-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.funk-partners-heading {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    text-align: center;
    margin-bottom: 40px;
}

.funk-partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.funk-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 187px;
    height: 127px;
    background: #fff;
    border-radius: 14px;
    padding: 0px 30px;
}

.funk-partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.funk-overview-section {
    padding: 80px 0;
    background: #F8F8F8;
}

.funk-overview-heading {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    text-align: left;
    margin-bottom: 50px;
}

.funk-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
}

.funk-overview-category {
    background: #fff;
    border-radius: 14px;
    padding: 25px 30px;
}

.funk-overview-category--wide {
    grid-column: 1 / -1;
}

.funk-overview-cat-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #008D66;
    margin-bottom: 12px;
}

.funk-overview-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.funk-overview-list li {
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: var(--text-color);
}

@media (max-width: 992px) {
    .funk-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .funk-showcase-left {
        text-align: center;
    }

    .funk-toggle-btn {
        width: 100%;
    }

    .funk-toggle-buttons {
        max-width: 320px;
        margin: 0 auto;
    }

    .funk-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
    }

    .funk-overview-category--wide {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .funk-overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .funk-partners-logos {
        gap: 20px;
    }

    .funk-partner-logo {
        width: 120px;
        height: 60px;
    }
}
