/* =============================================
   treeinspired.com — Styles
   ============================================= */

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

:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafb;
    --color-bg-card: #ffffff;
    --color-text: #1a1a2e;
    --color-text-muted: #6b7280;
    --color-text-light: #9ca3af;
    --color-primary: #0d9488;
    --color-primary-light: #14b8a6;
    --color-primary-dark: #0f766e;
    --color-primary-bg: #f0fdfa;
    --color-accent: #3b82f6;
    --color-app: #e8564a;
    --color-border: #e5e7eb;
    --color-border-light: #f3f4f6;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
}

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

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-top: 16px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    gap: 8px;
}

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

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

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

.btn-ghost:hover {
    border-color: var(--color-text);
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-1px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.nav.scrolled {
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-img {
    width: 36px;
    height: 36px;
}

.logo-img-footer {
    width: 32px;
    height: 32px;
}

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

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

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

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

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

/* --- Hero --- */
.hero {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--color-primary-bg) 0%, var(--color-bg) 60%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-top: 20px;
    max-width: 480px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
}

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

.hero-device-phone {
    position: relative;
    z-index: 2;
}

/* --- Device Frames --- */
.device-frame {
    border-radius: var(--radius-xl);
    background: #1a1a2e;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.05);
}

.device-phone {
    width: 280px;
    border-radius: 36px;
    padding: 12px;
}

.device-phone .device-screen {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
}

.device-tablet {
    width: 440px;
    border-radius: 24px;
}

.device-tablet .device-screen {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.device-mac {
    width: 100%;
    max-width: 560px;
    border-radius: 12px;
    padding: 8px 8px 28px;
    position: relative;
}

.device-mac::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #333;
    border-radius: 4px;
}

.device-mac .device-screen {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.device-screen {
    background: var(--color-bg);
    width: 100%;
    height: 100%;
}

/* --- App Icon Images --- */
.app-icon-img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
}

/* --- Screenshot Images in Device Frames --- */
.device-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Apps Section --- */
.apps {
    padding: 120px 0;
    background: var(--color-bg-alt);
}

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

.app-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border-light);
}

.app-card-featured {
    border-color: var(--color-primary);
    background: linear-gradient(180deg, var(--color-primary-bg) 0%, var(--color-bg-card) 40%);
}

.app-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}

.app-card-icon {
    margin-bottom: 20px;
}

.app-card h3 {
    margin-bottom: 4px;
}

.app-card-platforms {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.app-card-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.app-card-features {
    margin-bottom: 24px;
}

.app-card-features li {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.app-card-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.8rem;
}

/* --- Kompendium Features --- */
.kompendium {
    padding: 120px 0;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-row-reverse {
    direction: rtl;
}

.feature-row-reverse > * {
    direction: ltr;
}

.feature-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}

.feature-text h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

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

.feature-visual {
    display: flex;
    justify-content: center;
}

.multi-device-showcase {
    display: flex;
    justify-content: center;
    width: 100%;
}

.kompendium-cta {
    text-align: center;
    margin-top: 80px;
}

/* --- Team --- */
.team {
    padding: 120px 0;
    background: var(--color-bg-alt);
}

.team-grid {
    display: flex;
    justify-content: center;
}

.team-card {
    text-align: center;
    max-width: 360px;
    padding: 40px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

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

.team-avatar {
    margin-bottom: 24px;
}

.avatar-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.avatar-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-card h3 {
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.9375rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    padding: 80px 0 0;
    background: var(--color-text);
    color: #e5e7eb;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    margin-top: 12px;
    font-size: 0.9375rem;
    color: #9ca3af;
}

.footer-brand .nav-logo {
    color: #fff;
}

.footer h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: #d1d5db;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact address {
    font-size: 0.9375rem;
    color: #d1d5db;
    line-height: 1.7;
}

.footer-email {
    display: inline-block;
    margin-top: 12px;
    color: var(--color-primary-light) !important;
    font-weight: 500;
    transition: color var(--transition);
}

.footer-email:hover {
    color: #fff !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: #6b7280;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #6b7280;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: #d1d5db;
}

/* --- Product Page Hero --- */
.product-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--color-primary-bg) 0%, var(--color-bg) 60%);
}

.product-hero-content {
    max-width: 680px;
    margin: 0 auto;
}

.product-hero-icon {
    width: 112px;
    height: 112px;
    border-radius: 26px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-xl);
}

.product-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--color-text);
}

.product-hero-tagline {
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    color: var(--color-text-muted);
    margin-top: 12px;
    font-weight: 400;
}

.product-hero-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-top: 20px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.product-hero .hero-actions {
    justify-content: center;
    margin-top: 32px;
    gap: 14px;
}

.product-hero-platforms {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 18px;
    font-weight: 500;
}

/* --- Section Titles --- */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 520px;
    margin: 0 auto 56px;
    line-height: 1.6;
}

/* --- Highlight Cards --- */
.product-highlights {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

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

.highlight-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border-light);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-primary-bg);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.highlight-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* --- Screenshots Scroll --- */
.product-screenshots {
    padding: 100px 0;
}

.screenshots-scroll {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding: 16px 0 32px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.screenshots-scroll::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    flex-shrink: 0;
    scroll-snap-align: center;
    text-align: center;
}

.screenshot-label {
    margin-top: 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* --- Pro Section --- */
.product-pro {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.pro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.pro-features {
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pro-features li {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.pro-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.pro-visual {
    display: flex;
    justify-content: center;
}

/* --- Home Page (original treeinspired style) --- */
.home-body {
    margin: 0;
    padding: 0;
    background-color: #ebebeb;
    font-family: 'Lato', sans-serif;
    color: #000;
    font-size: 16px;
    line-height: 34px;
    overflow-x: hidden;
}

.home-header {
    display: block;
    max-width: 1280px;
    margin: 40px auto 60px;
    text-align: center;
}

.home-logo {
    max-width: 100%;
    margin: 0 auto;
}

.home-heading {
    margin-bottom: 60px;
    color: #544087;
    font-size: clamp(24px, 5vw, 47px);
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    padding: 0 20px;
}

.home-highlight {
    color: #3a7cff;
}

/* App icon grid */
.home-apps {
    position: relative;
    max-width: 940px;
    margin: 0 auto 80px;
    text-align: center;
}

.home-apps-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 5em 0;
    flex-wrap: wrap;
    padding: 0 20px;
}

.home-app {
    position: relative;
    text-align: center;
}

.home-app-icon {
    width: 200px;
    height: 200px;
    border-radius: 48px;
    box-shadow: 0 0 6px 0 #949494;
    display: block;
    transition: transform 0.2s ease;
}

.home-app a:hover .home-app-icon {
    transform: scale(1.05);
}

/* Hover overlay card — Panic-style */
.home-overlay {
    position: absolute;
    left: 50%;
    bottom: 215px;
    width: 280px;
    padding: 22px 24px 18px;
    border-radius: 14px;
    background-color: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.06);
    color: #1a1a2e;
    line-height: 1.4;
    z-index: 10;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.home-overlay::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 2px;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.04);
}

.home-app:hover .home-overlay {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.home-overlay-title {
    display: block;
    margin-bottom: 6px;
    color: #1a1a2e;
    font-family: 'Lato', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.home-overlay-text {
    display: block;
    font-size: 13.5px;
    line-height: 1.55;
    color: #666;
}

.home-overlay-platform {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #0d9488;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Footer */
.home-footer {
    display: block;
    min-height: 400px;
    background-color: #412e23;
    opacity: 0.88;
    text-align: center;
    font-family: 'Lato', sans-serif;
}

.home-footer-help {
    padding-top: 40px;
    padding-bottom: 40px;
    color: #8a6f5e;
    font-size: 45px;
    font-weight: 300;
}

.home-footer-contact {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-footer-link {
    margin-bottom: 30px;
    text-align: left;
}

.home-footer-link a {
    padding-left: 0;
    color: #bcbcbc;
    font-size: 30px;
    text-decoration: none;
    font-weight: 300;
}

.home-footer-link a:hover {
    color: #fff;
}

/* Mega footer grid */
.home-mega-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 700px;
    margin: 40px auto;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    flex-wrap: wrap;
}

.home-mega-col h4 {
    color: #8a6f5e;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.home-mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-mega-col li {
    line-height: 32px;
}

.home-mega-col a {
    color: #bcbcbc;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-mega-col a:hover {
    color: #fff;
}

.home-footer-meta {
    color: #a1a1a1;
    font-size: 14px;
    font-weight: 300;
    padding: 20px;
}

.home-footer-meta a {
    color: #a1a1a1;
    text-decoration: none;
}

.home-footer-meta a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .home-heading {
        font-size: 32px;
        line-height: 42px;
    }

    .home-app-icon {
        width: 150px;
        height: 150px;
        border-radius: 36px;
    }

    .home-apps-row {
        gap: 24px;
        margin: 3em 0;
        flex-wrap: wrap;
    }

    .home-overlay {
        bottom: 180px;
    }

    .home-overlay-title {
        font-size: 28px;
        line-height: 36px;
    }

    .home-footer-help {
        font-size: 32px;
    }

    .home-footer-link a {
        font-size: 22px;
    }
}

/* =============================================
   Legal Pages
   ============================================= */
.legal-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.legal-page h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.legal-page h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--color-text);
}

.legal-page p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.legal-page ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.legal-page a {
    color: var(--color-primary);
    text-decoration: underline;
}

.legal-page strong {
    color: var(--color-text);
}

.imprint-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
}

.imprint-table td {
    padding: 10px 16px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
}

.imprint-table td:first-child {
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
    width: 200px;
}

.imprint-table a {
    color: var(--color-primary);
    text-decoration: underline;
}

@media (max-width: 480px) {
    .home-heading {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 30px;
    }

    .home-header {
        margin: 30px auto 30px;
    }

    .home-app-icon {
        width: 100px;
        height: 100px;
        border-radius: 24px;
    }

    .home-apps-row {
        gap: 16px;
        margin: 2em 0;
    }

    .home-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        width: auto;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
        padding: 8px 0 0;
        transition: none;
    }

    .home-overlay::after {
        display: none;
    }

    .home-overlay-title {
        font-size: 16px;
        line-height: 22px;
        color: #444;
    }

    .home-overlay-text {
        font-size: 12px;
        display: none;
    }

    .home-overlay-platform {
        font-size: 11px;
    }

    .home-footer-help {
        font-size: 24px;
        padding: 30px 20px;
    }

    .home-footer-link a {
        font-size: 18px;
    }
}

/* --- Pricing Section --- */
.product-pricing {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.pricing-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--transition);
}

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

.pricing-card-featured {
    border-color: var(--color-primary);
    position: relative;
}

.pricing-card h3 {
    margin-bottom: 8px;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}

.pricing-amount span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.pricing-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin: 8px 0 24px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 24px;
}

.pricing-features li {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    padding: 6px 0 6px 24px;
    position: relative;
}

.pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.8rem;
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

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

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-device-tablet {
        display: none;
    }

    .apps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .feature-row,
    .feature-row-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .feature-row-reverse {
        direction: ltr;
    }

    .device-phone {
        width: 240px;
    }

    .device-tablet {
        width: 320px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pro-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .product-icon-img {
        width: 56px;
        height: 56px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 48px auto 0;
    }

    .cybertell-highlights {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--color-border-light);
    }

    .nav-toggle {
        display: flex;
    }

    .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);
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    h1 {
        font-size: 2.25rem;
    }

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

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

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

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

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

    .product-icon-img {
        margin: 0 auto;
    }

    .cybertell-highlights {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-compact {
        padding: 60px 0;
    }

    .apps, .kompendium, .team {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .features-grid {
        gap: 60px;
    }

    .device-phone {
        width: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
