/* ============================
   VARIABLES
   ============================ */
:root {
    --black: #000000;
    --gray-900: #1d1d1f;
    --gray-800: #2d2d2d;
    --gray-600: #6e6e73;
    --gray-400: #a1a1a6;
    --gray-200: #e8e8ed;
    --gray-100: #f5f5f7;
    --white: #ffffff;
    --accent: #339999;
    --accent-light: #3db3b3;
}

/* ============================
   BASE
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================
   INTRO OVERLAY
   ============================ */
#intro-overlay {
    position: fixed;
    inset: 0;
    background: var(--gray-900);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* Animated gradient background for intro */
#intro-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(51, 153, 153, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(61, 179, 179, 0.2) 0%, transparent 40%);
    animation: introGlow 2s ease-in-out infinite alternate;
}

@keyframes introGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

#intro-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.intro-logo-wrapper {
    position: relative;
    z-index: 1;
}

.intro-logo {
    width: 160px;
    height: 160px;
    filter: drop-shadow(0 0 60px rgba(51, 153, 153, 0.5));
    animation: introScale 1.8s ease-out forwards;
}

@keyframes introScale {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    30% {
        opacity: 1;
        transform: scale(1.05) rotate(0deg);
    }
    50% {
        transform: scale(1.08) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1.15) rotate(0deg);
    }
}

/* ============================
   NAVIGATION
   ============================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 48px;
    background: rgba(29, 29, 31, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.6s ease;
}

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

.nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.nav.scrolled .nav-brand {
    color: var(--gray-900);
}

.nav.scrolled .nav-links a {
    color: var(--gray-600);
}

.nav.scrolled .nav-links a:hover {
    color: var(--gray-900);
}

.nav.scrolled .nav-cta {
    color: var(--accent) !important;
}

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

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.legal-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
}

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

.legal-nav .nav-links a {
    font-weight: 600;
}

.nav-cta {
    color: var(--accent) !important;
}

.nav-cta:hover {
    color: var(--accent-light) !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav.scrolled .nav-toggle-bar {
    background: var(--gray-900);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Dropdown */
.mobile-menu {
    position: fixed;
    top: 52px;
    right: 20px;
    background: var(--gray-900);
    z-index: 99;
    border-radius: 16px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transform-origin: top right;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Scrolled state - light menu */
.mobile-menu.scrolled {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Scrolled state - light links */
.mobile-menu.scrolled .mobile-menu-link {
    color: var(--gray-700);
}

.mobile-menu.scrolled .mobile-menu-link:hover,
.mobile-menu.scrolled .mobile-menu-link:active {
    background: var(--gray-100);
    color: var(--gray-900);
}

.mobile-menu-link.mobile-cta {
    color: var(--accent);
    background: rgba(51, 153, 153, 0.15);
    margin-top: 4px;
}

.mobile-menu-link.mobile-cta:hover,
.mobile-menu-link.mobile-cta:active {
    background: var(--accent);
    color: var(--white);
}

.mobile-menu.scrolled .mobile-menu-link.mobile-cta {
    color: var(--accent);
    background: rgba(51, 153, 153, 0.1);
}

.mobile-menu.scrolled .mobile-menu-link.mobile-cta:hover,
.mobile-menu.scrolled .mobile-menu-link.mobile-cta:active {
    background: var(--accent);
    color: var(--white);
}

/* ============================
   HERO
   ============================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    background: var(--gray-900);
    overflow: hidden;
}

/* Animated Background */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(51, 153, 153, 0.8) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation: float1 20s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(100, 180, 180, 0.6) 0%, transparent 70%);
    top: 50%;
    right: -15%;
    animation: float2 25s ease-in-out infinite;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(61, 179, 179, 0.7) 0%, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation: float3 18s ease-in-out infinite;
}

.orb-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(80, 200, 200, 0.5) 0%, transparent 70%);
    top: 20%;
    right: 20%;
    animation: float4 22s ease-in-out infinite;
}

.orb-5 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(51, 153, 153, 0.6) 0%, transparent 70%);
    bottom: 20%;
    left: -5%;
    animation: float5 28s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(100px, 50px) scale(1.1); }
    50% { transform: translate(50px, 100px) scale(0.9); }
    75% { transform: translate(-50px, 50px) scale(1.05); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-80px, -60px) scale(1.15); }
    50% { transform: translate(-120px, 40px) scale(0.95); }
    75% { transform: translate(-40px, -80px) scale(1.1); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -80px) scale(1.2); }
    66% { transform: translate(-40px, -40px) scale(0.85); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    20% { transform: translate(-60px, 40px) scale(1.1); }
    40% { transform: translate(-100px, -20px) scale(0.9); }
    60% { transform: translate(-40px, -60px) scale(1.15); }
    80% { transform: translate(20px, -30px) scale(0.95); }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, -60px) scale(1.2); }
}

/* Mesh Grid Overlay */
.mesh-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 680px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

/* Logo + Brand Row */
.hero-brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.hero-brand-row.animate {
    animation: heroRowIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.hero-logo-container {
    flex-shrink: 0;
}

.hero-logo {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 10px 40px rgba(51, 153, 153, 0.4));
}

.hero-brand {
    font-size: clamp(3.5rem, 12vw, 6.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Tagline with animated words */
.hero-tagline {
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 600;
    margin-bottom: 28px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0 10px;
    letter-spacing: -0.01em;
    line-height: 1.3;
    white-space: nowrap;
}

.tagline-word {
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.tagline-word.accent {
    color: var(--accent-light);
    text-shadow: 0 0 30px rgba(51, 153, 153, 0.5), 0 2px 20px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.hero-tagline.animate .tagline-word {
    animation: wordFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tagline.animate .tagline-word:nth-child(1) { animation-delay: 0.1s; }
.hero-tagline.animate .tagline-word:nth-child(2) { animation-delay: 0.2s; }
.hero-tagline.animate .tagline-word:nth-child(3) { animation-delay: 0.3s; }
.hero-tagline.animate .tagline-word:nth-child(4) { animation-delay: 0.4s; }

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

/* Description */
.hero-description {
    max-width: 540px;
    margin: 0 auto 30px;
    padding: 0 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.hero-description-eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-description-lede {
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin: 0;
    font-weight: 600;
}

.hero-description-sub {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.4;
}

.hero-description.animate {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.hero-cta.animate {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-icon svg {
    width: 100%;
    height: 100%;
}

/* Primary Button - Glowing effect */
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    box-shadow:
        0 4px 15px rgba(51, 153, 153, 0.4),
        0 0 0 0 rgba(51, 153, 153, 0);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-light) 0%, #4dc9c9 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 30px rgba(51, 153, 153, 0.5),
        0 0 40px rgba(51, 153, 153, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Ghost Button - Text only with underline effect */
.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    border: none;
    padding: 16px 20px;
    gap: 8px;
}

.btn-ghost .btn-text {
    position: relative;
}

.btn-ghost .btn-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ghost:hover {
    color: var(--white);
    transform: none;
}

.btn-ghost:hover .btn-text::after {
    width: 100%;
}

.btn-icon-down {
    width: 18px;
    height: 18px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-icon-down svg {
    width: 100%;
    height: 100%;
}

.btn-ghost:hover .btn-icon-down {
    transform: translateY(4px);
}

/* Secondary Button - Glass effect (kept for other uses) */
.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

.hero-scroll.animate {
    animation: fadeIn 0.6s ease forwards;
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.scroll-line {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* ============================
   SECTIONS COMMON
   ============================ */
.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    line-height: 1.15;
}

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

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

/* ============================
   FEATURES INTRO
   ============================ */
.features-intro {
    padding: 180px 24px 100px;
    background: var(--white);
    text-align: center;
}

.features-intro-content {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.features-intro-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.features-intro-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: 24px;
}

.features-intro-text {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================
   FEATURES GRID (Mini Cards)
   ============================ */
.features-grid-section {
    padding: 0 24px 140px;
    background: var(--white);
}

.features-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card-mini {
    display: block;
    text-decoration: none;
    background: var(--gray-100);
    padding: 40px 28px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.feature-card-mini.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.feature-card-mini::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(51, 153, 153, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card-mini::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(51, 153, 153, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card-mini:hover {
    background: var(--white);
    transform: translateY(-8px);
    border-color: rgba(51, 153, 153, 0.2);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(51, 153, 153, 0.1);
}

.feature-card-mini:hover::before {
    opacity: 1;
}

.feature-card-mini:hover::after {
    opacity: 1;
}

.feature-icon-mini {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--accent);
    background: rgba(51, 153, 153, 0.1);
    border-radius: 14px;
    padding: 10px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.feature-card-mini:hover .feature-icon-mini {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(51, 153, 153, 0.3);
}

.feature-icon-mini svg {
    width: 100%;
    height: 100%;
}

.feature-card-mini h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-card-mini:hover h3 {
    color: var(--gray-900);
}

/* Touch device optimizations */
@media (hover: none) {
    .feature-card-mini:hover {
        transform: none;
        background: var(--gray-100);
        border-color: transparent;
        box-shadow: none;
    }

    .feature-card-mini:hover::before,
    .feature-card-mini:hover::after {
        opacity: 0;
    }

    .feature-card-mini:hover .feature-icon-mini {
        background: rgba(51, 153, 153, 0.1);
        color: var(--accent);
        transform: none;
        box-shadow: none;
    }

    .feature-card-mini:active {
        transform: scale(0.98);
        background: var(--white);
    }

    .feature-card-mini:active .feature-icon-mini {
        background: var(--accent);
        color: var(--white);
    }

    .btn:hover {
        transform: none;
    }

    .btn:active {
        transform: scale(0.98);
    }

    .btn-primary:hover {
        box-shadow: 0 4px 15px rgba(51, 153, 153, 0.4);
    }
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================
   FEATURE DETAIL SECTIONS
   ============================ */
.feature-detail {
    padding: 160px 24px;
    background: var(--white);
    scroll-margin-top: 80px;
}

.feature-detail.alt {
    background: var(--gray-100);
}

.feature-detail-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.feature-detail-inner.reverse {
    direction: rtl;
}

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

.feature-detail-content {
    max-width: 480px;
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-detail-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.feature-detail-visual {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.feature-detail-visual.animate {
    opacity: 1;
    transform: translateX(0);
}

.feature-detail .section-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(51, 153, 153, 0.1);
    border-radius: 100px;
    margin-bottom: 24px;
    font-size: 0.8rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.3s ease;
}

@media (min-width: 1025px) {
    .feature-detail .section-label:hover {
        transform: scale(1.05);
        background: rgba(51, 153, 153, 0.15);
    }
}

.feature-detail-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: 24px;
}

.feature-detail-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 40px;
}

.feature-detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-detail-content.animate .feature-detail-list li {
    opacity: 1;
    transform: translateY(0);
}

.feature-detail-content.animate .feature-detail-list li:nth-child(1) {
    transition-delay: 0.3s;
}

.feature-detail-content.animate .feature-detail-list li:nth-child(2) {
    transition-delay: 0.4s;
}

.feature-detail-content.animate .feature-detail-list li:nth-child(3) {
    transition-delay: 0.5s;
}

.feature-detail-content.animate .feature-detail-list li:nth-child(4) {
    transition-delay: 0.6s;
}

.list-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--white);
    background: var(--accent);
    border-radius: 50%;
    padding: 5px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-icon svg {
    width: 100%;
    height: 100%;
}

/* Feature Visual Mockups */
.feature-detail-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-visual-placeholder {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1/1;
    background: var(--gray-100);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 1025px) {
    .feature-visual-placeholder:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow:
            0 8px 12px rgba(0, 0, 0, 0.05),
            0 20px 40px rgba(0, 0, 0, 0.08),
            0 0 0 1px rgba(51, 153, 153, 0.1);
    }
}

.feature-detail.alt .feature-visual-placeholder {
    background: var(--white);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.03),
        0 20px 40px rgba(0, 0, 0, 0.06);
}

/* ============================
   APP MOCKUP STYLES
   ============================ */
.mockup-app {
    width: 100%;
    height: 100%;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.mockup-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.mockup-app-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.mockup-app-date,
.mockup-app-count,
.mockup-app-period {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
}

.mockup-app-icon {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
}

.mockup-app-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Status Badges */
.mockup-status-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mockup-status-badge.paid {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.mockup-status-badge.pending {
    background: rgba(251, 191, 36, 0.1);
    color: #d97706;
}

/* ============================
   BAUTAGESBERICHT MOCKUP
   ============================ */
.mockup-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-field-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mockup-field-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-900);
}

.mockup-weather {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.weather-icon {
    font-size: 1.2rem;
}

.mockup-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.mockup-check-item .check-box {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid var(--gray-300);
    flex-shrink: 0;
}

.mockup-check-item.done .check-box {
    background: var(--accent);
    border-color: var(--accent);
    position: relative;
}

.mockup-check-item.done .check-box::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
}

.mockup-check-item.done span:last-child {
    color: var(--gray-900);
}

.mockup-personnel {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.personnel-badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 12px;
    background: var(--gray-200);
    border-radius: 100px;
    color: var(--gray-700);
}

/* ============================
   RECHNUNG MOCKUP
   ============================ */
.mockup-invoice-meta {
    display: flex;
    gap: 32px;
}

.invoice-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 0.7rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-900);
}

.mockup-invoice-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.invoice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-name {
    font-size: 0.85rem;
    color: var(--gray-700);
}

.item-price {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-900);
}

.mockup-invoice-total {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
}

.invoice-subtotal,
.invoice-tax {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.invoice-grand-total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    padding-top: 8px;
    border-top: 2px solid var(--gray-900);
    margin-top: 4px;
}

/* ============================
   KUNDENVERWALTUNG MOCKUP
   ============================ */
.mockup-customer-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.customer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.customer-info {
    flex: 1;
}

.customer-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.customer-meta {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.mockup-customer-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.customer-stat {
    background: var(--gray-100);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
}

.feature-detail.alt .customer-stat {
    background: var(--gray-200);
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mockup-customer-projects {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--gray-100);
    border-radius: 10px;
}

.feature-detail.alt .project-item {
    background: var(--gray-200);
}

.project-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.project-status.active {
    background: #22c55e;
}

.project-status.done {
    background: var(--gray-400);
}

.project-name {
    flex: 1;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-900);
}

.project-date {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ============================
   PDF SIGNATUR MOCKUP
   ============================ */
.mockup-pdf-preview {
    background: var(--gray-200);
    border-radius: 12px;
    padding: 16px;
}

.feature-detail.alt .mockup-pdf-preview {
    background: var(--gray-100);
}

.pdf-page {
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.pdf-header-bar {
    height: 8px;
    width: 50%;
    background: var(--accent);
    border-radius: 4px;
    margin-bottom: 16px;
}

.pdf-line {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    margin-bottom: 8px;
}

.pdf-line.short { width: 40%; }
.pdf-line.medium { width: 70%; }

.mockup-signature-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.signature-label {
    font-size: 0.7rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.signature-pad {
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: 12px;
    padding: 12px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-detail.alt .signature-pad {
    background: var(--gray-50);
    border-color: var(--gray-200);
}

.signature-svg {
    width: 100%;
    max-width: 180px;
    height: auto;
}

.signature-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.mockup-pdf-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.pdf-action-btn {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.pdf-action-btn.secondary {
    background: var(--gray-200);
    color: var(--gray-600);
}

.pdf-action-btn.primary {
    background: var(--accent);
    color: white;
}

/* ============================
   FOTO GALERIE MOCKUP (NEW)
   ============================ */

/* Header Actions */
.mockup-photo-header-actions {
    display: flex;
    gap: 6px;
}

.photo-filter-btn {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 100px;
    color: var(--gray-500);
    background: var(--gray-200);
    cursor: pointer;
    transition: all 0.2s ease;
}

.photo-filter-btn.active {
    background: var(--accent);
    color: white;
}

/* Upload Progress */
.photo-upload-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(51, 153, 153, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(51, 153, 153, 0.15);
}

.upload-progress-icon {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    animation: uploadPulse 1.5s ease-in-out infinite;
}

.upload-progress-icon svg {
    width: 16px;
    height: 16px;
}

@keyframes uploadPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.upload-progress-info {
    flex: 1;
    min-width: 0;
}

.upload-progress-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.upload-progress-bar {
    height: 4px;
    background: rgba(51, 153, 153, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.upload-progress-fill {
    width: 65%;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    animation: progressGrow 2s ease-in-out infinite;
}

@keyframes progressGrow {
    0% { width: 30%; }
    50% { width: 75%; }
    100% { width: 30%; }
}

/* New Photo Grid */
.mockup-photo-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.photo-item-new {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.photo-item-new.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.photo-image {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Colorful Photo Gradients */
.photo-gradient-1 {
    background: linear-gradient(145deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.photo-gradient-2 {
    background: linear-gradient(145deg, #f5af19 0%, #f12711 100%);
}

.photo-gradient-3 {
    background: linear-gradient(145deg, #11998e 0%, #38ef7d 100%);
}

.photo-gradient-4 {
    background: linear-gradient(145deg, #4facfe 0%, #00f2fe 100%);
}

.photo-gradient-5 {
    background: linear-gradient(145deg, #fa709a 0%, #fee140 100%);
}

/* Photo Overlay with Camera Icon */
.photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.photo-overlay svg {
    width: 36px;
    height: 36px;
}

/* Photo Info (Title + Tag) */
.photo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.photo-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.photo-tag {
    font-size: 0.6rem;
    font-weight: 600;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 100px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Photo Selection Check */
.photo-check {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 8px rgba(51, 153, 153, 0.4);
}

.photo-check svg {
    width: 12px;
    height: 12px;
}

/* More Photos Button */
.photo-item-new.more {
    background: var(--gray-900);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-item-new.more:hover {
    background: var(--gray-800);
}

.more-count {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.more-text {
    font-size: 0.65rem;
    color: var(--gray-400);
    margin-top: 2px;
}

/* New Timeline */
.photo-timeline-new {
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-900);
}

.timeline-total {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.timeline-entries {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timeline-entry {
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    flex-shrink: 0;
}

.timeline-dot.active {
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(51, 153, 153, 0.2);
}

.timeline-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-day {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-700);
}

.timeline-photos {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.timeline-entry:first-child .timeline-day {
    color: var(--accent);
    font-weight: 600;
}

.timeline-entry:first-child .timeline-photos {
    color: var(--accent);
}

/* ============================
   LIQUIDITÄT MOCKUP
   ============================ */
.mockup-balance {
    text-align: center;
    padding-bottom: 16px;
}

.balance-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.balance-amount.positive {
    color: #16a34a;
}

.balance-change {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.change-icon.up {
    color: #16a34a;
}

.mockup-chart-container {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 16px 0;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    gap: 8px;
}

.chart-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.bar-fill {
    width: 100%;
    background: var(--gray-300);
    border-radius: 6px 6px 0 0;
    margin-top: auto;
    transition: all 0.3s ease;
}

.chart-bar-item.active .bar-fill {
    background: var(--accent);
}

.bar-label {
    font-size: 0.7rem;
    color: var(--gray-500);
}

.mockup-finance-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.finance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--gray-100);
    border-radius: 12px;
}

.feature-detail.alt .finance-item {
    background: var(--gray-200);
}

.finance-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

.finance-item.income .finance-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.finance-item.expense .finance-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.finance-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.finance-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
}

.mockup-info .mockup-line:last-child {
    margin-bottom: 0;
}

/* Signature Mockup */
.mockup-signature {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mockup-doc {
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.mockup-sig {
    padding: 16px;
    border: 2px dashed var(--gray-300);
    border-radius: 12px;
    color: var(--gray-400);
}

/* Photos Mockup */
.mockup-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mockup-photo {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    border-radius: 12px;
}

.mockup-photo:first-child {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

/* Chart Mockup */
.mockup-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    height: 180px;
    padding: 0;
}

.chart-bar {
    flex: 1;
    background: var(--gray-300);
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
}

.chart-bar.accent {
    background: var(--accent);
}

.chart-bar:hover {
    filter: brightness(0.95);
}

/* ============================
   HIGHLIGHT
   ============================ */
.highlight {
    padding: 300px 24px;
    background: var(--gray-900);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/highlight-hintergrund.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.highlight-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(29, 29, 31, 0.92) 0%,
        rgba(29, 29, 31, 0.82) 50%,
        rgba(29, 29, 31, 0.92) 100%
    );
}

/* Glow Effect */
.highlight-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(
        ellipse at center,
        rgba(51, 153, 153, 0.25) 0%,
        rgba(51, 153, 153, 0.1) 30%,
        transparent 70%
    );
    filter: blur(60px);
    pointer-events: none;
    animation: highlightPulse 6s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.highlight-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.highlight-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 24px;
}

.highlight-title .text-gradient {
    display: inline;
    background: linear-gradient(135deg, var(--accent) 0%, #5dd5d5 50%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description Sub */
.hero-description-sub {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
}

/* ============================
   USP SECTION
   ============================ */
.usp-section {
    padding: 180px 24px;
    background: var(--gray-100);
}

.usp-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.usp-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 60px;
}

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

.usp-item {
    padding: 32px 24px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.usp-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(51, 153, 153, 0.1) 0%, rgba(51, 153, 153, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usp-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent);
}

.usp-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.usp-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ============================
   FEATURE CATEGORIES
   ============================ */
.features-category {
    margin-bottom: 48px;
}

.features-category:last-child {
    margin-bottom: 0;
}

.features-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 0 8px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.status-badge.available {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.status-badge.in-progress {
    background: rgba(251, 191, 36, 0.12);
    color: #d97706;
}

.status-badge.planned {
    background: rgba(99, 102, 241, 0.12);
    color: #6366f1;
}

.category-line {
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

/* ============================
   MID-PAGE CTA
   ============================ */
.mid-cta-section {
    padding: 180px 24px;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
    text-align: center;
}

.mid-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.mid-cta-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.mid-cta-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.mid-cta-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ============================
   TARGET AUDIENCE SECTION
   ============================ */
.target-audience-section {
    padding: 120px 24px 220px 24px;
    background: var(--white);
}

.target-audience-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

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

.target-item {
    padding: 32px 20px;
    background: var(--gray-100);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.target-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.target-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.target-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent);
}

.target-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.target-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ============================
   VALUES SECTION
   ============================ */
.values-section {
    padding: 180px 24px;
    background: var(--gray-900);
}

.values-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.values-section .section-label {
    color: var(--accent);
}

.values-section .section-title {
    color: var(--white);
}

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

.value-item {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.value-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(51, 153, 153, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
}

.value-item h3 {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
    padding: 120px 24px;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.about-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: var(--gray-100);
    border-radius: 24px;
    text-align: left;
}

.about-avatar {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-avatar span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.about-avatar.company {
    background: var(--gray-900);
}

.about-avatar.company svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
}

.about-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.about-role {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 12px;
}

.about-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.65;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-link:hover {
    color: var(--accent-light);
}

.about-link svg {
    width: 16px;
    height: 16px;
}

/* ============================
   SOFT LAUNCH BADGE
   ============================ */
.soft-launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 24px;
    background: rgba(51, 153, 153, 0.1);
    border: 1px solid rgba(51, 153, 153, 0.2);
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
}

.soft-launch-badge svg {
    width: 18px;
    height: 18px;
}

.highlight-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 580px;
    font-weight: 400;
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
    padding: 180px 24px 300px;
    background: var(--gray-100);
    text-align: center;
}

.cta-content {
    max-width: 560px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.cta-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin: 16px 0 40px;
}

.cta-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.cta-form input {
    flex: 1;
    padding: 18px 24px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    background: var(--gray-100);
    color: var(--gray-900);
    transition: all 0.2s ease;
}

.cta-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
}

.cta-form input::placeholder {
    color: var(--gray-400);
}

.cta-form button {
    padding: 18px 32px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    background: var(--gray-900);
    color: var(--white);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.cta-form button:hover {
    background: var(--black);
    transform: scale(1.02);
}

.cta-note {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* ============================
   FOOTER
   ============================ */
.footer {
    padding: 80px 24px 32px;
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(51, 153, 153, 0.3) 50%,
        transparent 100%
    );
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

/* Brand Column */
.footer-brand-column {
    max-width: 320px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

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

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    line-height: 1.5;
}

.footer-company {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-company-link {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-company-link:hover {
    color: var(--accent-light);
}

.footer-company-link strong {
    font-weight: 600;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================
   LEGAL PAGES
   ============================ */
.legal-page {
    min-height: 100vh;
    background: var(--white);
    color: var(--gray-900);
    padding: 140px 24px 120px;
}

.legal-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.legal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

.legal-back:hover {
    color: var(--accent-light);
}

.legal-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

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

.legal-card {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.legal-card h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.legal-intro {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.legal-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px 24px;
    margin: 0 0 16px;
}

.legal-list dt {
    font-weight: 700;
    margin-bottom: 6px;
}

.legal-list dd {
    margin: 0 0 4px;
    color: var(--gray-600);
}

.legal-section {
    margin-bottom: 18px;
}

.legal-section h2 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.legal-section p {
    color: var(--gray-700);
    line-height: 1.6;
}

.legal-list-bullets {
    margin: 0 0 8px 18px;
    color: var(--gray-700);
    line-height: 1.6;
}

.legal-note {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ============================
   RESPONSIVE
   ============================ */

/* Tablet Large (iPad Pro etc.) */
@media (max-width: 1024px) {
    /* Disable animations on tablet/mobile for performance */
    .feature-detail-content,
    .feature-detail-visual,
    .feature-card-mini,
    .features-intro-content,
    .highlight-content,
    .cta-content {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* USP Section */
    .usp-section {
        padding: 80px 24px;
    }

    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .usp-title {
        margin-bottom: 40px;
    }

    .usp-item h3 {
        font-size: 1rem;
    }

    .usp-item p {
        font-size: 0.85rem;
    }

    /* Target Audience */
    .target-audience-section {
        padding: 80px 24px;
    }

    .target-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Values */
    .values-section {
        padding: 80px 24px;
    }

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

    /* About */
    .about-section {
        padding: 80px 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Mid CTA */
    .mid-cta-section {
        padding: 80px 24px;
    }

    .feature-detail-list li {
        opacity: 1 !important;
        transform: none !important;
        transition: background 0.3s ease, transform 0.2s ease !important;
    }

    .feature-detail {
        padding: 120px 24px;
    }

    .feature-detail-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature-detail-inner.reverse {
        direction: ltr;
    }

    .feature-detail-content {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .feature-detail-title {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
    }

    .feature-detail-text {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .feature-detail .section-label {
        margin-bottom: 20px;
    }

    .feature-detail-list {
        text-align: left;
        max-width: 450px;
        margin: 0 auto;
        gap: 16px;
    }

    .feature-detail-list li {
        font-size: 0.95rem;
    }

    .feature-visual-placeholder {
        max-width: 400px;
        margin: 0 auto;
    }

    .mockup-app {
        padding: 18px;
    }

    .mockup-app-title {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 60px 24px 24px;
    }

    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }

    .footer-column:last-child {
        grid-column: span 1;
    }
}

/* Tablet Small (iPad Mini, iPad 768px) */
@media (max-width: 850px) {
    .feature-detail {
        padding: 100px 24px;
    }

    .feature-detail-inner {
        gap: 40px;
    }

    .feature-detail-content {
        max-width: 500px;
    }

    .feature-detail-title {
        font-size: 1.65rem;
        margin-bottom: 16px;
    }

    .feature-detail-text {
        font-size: 0.95rem;
        margin-bottom: 28px;
        line-height: 1.65;
    }

    .feature-detail-list {
        max-width: 400px;
        gap: 14px;
    }

    .feature-detail-list li {
        font-size: 0.9rem;
        gap: 12px;
    }

    .list-icon {
        width: 22px;
        height: 22px;
        padding: 4px;
    }

    .feature-visual-placeholder {
        max-width: 360px;
    }

    .mockup-app {
        padding: 16px;
    }

    .mockup-app-header {
        padding-bottom: 12px;
        margin-bottom: 14px;
    }

    .mockup-app-title {
        font-size: 0.85rem;
    }

    .mockup-app-body {
        gap: 12px;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand-column {
        grid-column: span 2;
        max-width: 100%;
    }
}
/* Mobile Large */
@media (max-width: 768px) {
    /* Navigation */
    .nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

    .mobile-menu {
        right: 24px;
    }

    /* USP Section Mobile */
    .usp-section {
        padding: 60px 24px;
    }

    .usp-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }

    .usp-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .usp-item {
        padding: 24px 20px;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .usp-icon {
        margin: 0;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .usp-item h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .usp-item p {
        font-size: 0.8rem;
    }

    /* Feature Categories Mobile */
    .features-category-header {
        margin-bottom: 16px;
    }

    .status-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    /* Target Audience Mobile */
    .target-audience-section {
        padding: 60px 24px;
    }

    .target-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 32px;
    }

    .target-item {
        padding: 24px 16px;
    }

    .target-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    .target-item h3 {
        font-size: 0.9rem;
    }

    .target-item p {
        font-size: 0.8rem;
    }

    /* Values Mobile */
    .values-section {
        padding: 60px 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .values-grid .value-item:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .value-item {
        padding: 20px;
    }

    .value-icon {
        width: 40px;
        height: 40px;
    }

    .value-item h3 {
        font-size: 0.9rem;
    }

    /* About Mobile */
    .about-section {
        padding: 60px 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 20px;
        gap: 16px;
    }

    .about-avatar {
        width: 64px;
        height: 64px;
    }

    .about-avatar.company svg {
        width: 28px;
        height: 28px;
    }

    .about-info h3 {
        font-size: 1.1rem;
    }

    .about-text {
        font-size: 0.9rem;
    }

    .about-link {
        font-size: 0.85rem;
    }

    /* Mid CTA Mobile */
    .mid-cta-section {
        padding: 60px 24px;
    }

    .mid-cta-title {
        font-size: 1.35rem;
    }

    .mid-cta-text {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .btn-large {
        padding: 16px 28px;
        font-size: 1rem;
    }

    /* Soft Launch Badge Mobile */
    .soft-launch-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
        padding: 100px 24px 60px;
    }

    .hero-brand-row {
        flex-direction: column;
        gap: 14px;
    }

    .hero-logo {
        width: 64px;
        height: 64px;
    }

    .hero-brand {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .hero-tagline {
        font-size: clamp(1.25rem, 4.5vw, 1.6rem);
        gap: 6px 10px;
        line-height: 1.4;
        flex-wrap: wrap;
        white-space: normal;
    }

    .hero-description {
        max-width: 420px;
        padding: 0 10px;
        gap: 8px;
        margin-bottom: 24px;
        box-shadow: none;
    }

    .hero-description-eyebrow {
        font-size: 0.74rem;
    }

    .hero-description-lede {
        font-size: 1rem;
        line-height: 1.45;
    }

    .hero-description-sub {
        font-size: 0.84rem;
    }

    /* Legal */
    .legal-page {
        padding: 110px 22px 80px;
    }

    .legal-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .legal-card {
        padding: 24px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .btn-ghost {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .hero-scroll {
        display: none;
    }

    /* Background Orbs */
    .gradient-orb {
        filter: blur(60px);
    }

    .orb-1, .orb-2 {
        width: 250px;
        height: 250px;
    }

    .orb-3, .orb-4, .orb-5 {
        width: 180px;
        height: 180px;
    }

    /* Features Intro */
    .features-intro {
        padding: 100px 28px 60px;
    }

    .features-intro-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .features-intro-text {
        font-size: 1rem;
    }

    /* Features Grid */
    .features-grid-section {
        padding: 0 28px 80px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .feature-card-mini {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .feature-icon-mini {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
        border-radius: 10px;
        padding: 8px;
    }

    .feature-card-mini h3 {
        font-size: 0.85rem;
    }

    /* Feature Details */
    .feature-detail {
        padding: 80px 28px;
        scroll-margin-top: 60px;
    }

    .feature-detail-inner {
        gap: 40px;
    }

    .feature-detail .section-label {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .feature-detail-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 16px;
    }

    .feature-detail-text {
        font-size: 1rem;
        margin-bottom: 28px;
        line-height: 1.6;
    }

    .feature-detail-list {
        padding: 15px 30px;
        gap: 14px;
        max-width: 100%;
    }

    .feature-detail-list li {
        font-size: 0.85rem;
        gap: 12px;
    }

    .list-icon {
        width: 22px;
        height: 22px;
        padding: 4px;
    }

    /* Mockups */
    .feature-visual-placeholder {
        max-width: 280px;
        aspect-ratio: 1/1.1;
        border-radius: 20px;
    }

    .mockup-app {
        padding: 14px;
    }

    .mockup-app-header {
        padding-bottom: 10px;
        margin-bottom: 12px;
    }

    .mockup-app-title {
        font-size: 0.75rem;
    }

    .mockup-app-body {
        gap: 10px;
    }

    .mockup-field-label {
        font-size: 0.6rem;
    }

    .mockup-field-value {
        font-size: 0.75rem;
    }

    .mockup-check-item {
        font-size: 0.8rem;
        gap: 8px;
    }

    .mockup-check-item .check-box {
        width: 16px;
        height: 16px;
    }

    .personnel-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    /* Invoice Mockup */
    .mockup-invoice-meta {
        gap: 20px;
    }

    .meta-label {
        font-size: 0.65rem;
    }

    .meta-value {
        font-size: 0.85rem;
    }

    .mockup-invoice-items {
        gap: 10px;
        padding: 12px 0;
    }

    .item-name, .item-price {
        font-size: 0.8rem;
    }

    .invoice-subtotal, .invoice-tax {
        font-size: 0.75rem;
    }

    .invoice-grand-total {
        font-size: 0.9rem;
    }

    /* Customer Mockup */
    .customer-avatar {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }

    .customer-name {
        font-size: 0.9rem;
    }

    .customer-meta {
        font-size: 0.75rem;
    }

    .mockup-customer-stats {
        gap: 10px;
    }

    .customer-stat {
        padding: 12px;
        border-radius: 10px;
    }

    .stat-value {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .project-item {
        padding: 10px;
        border-radius: 8px;
        gap: 10px;
    }

    .project-name {
        font-size: 0.8rem;
    }

    .project-date {
        font-size: 0.7rem;
    }

    /* PDF Mockup */
    .mockup-pdf-preview {
        padding: 12px;
        border-radius: 10px;
    }

    .pdf-page {
        padding: 12px;
        border-radius: 6px;
    }

    .pdf-header-bar {
        height: 6px;
        margin-bottom: 12px;
    }

    .pdf-line {
        height: 5px;
        margin-bottom: 6px;
    }

    .signature-pad {
        min-height: 60px;
        padding: 10px;
        border-radius: 10px;
    }

    .signature-meta {
        font-size: 0.7rem;
    }

    .mockup-pdf-actions {
        gap: 8px;
    }

    .pdf-action-btn {
        padding: 10px;
        font-size: 0.75rem;
        border-radius: 8px;
    }

    /* Photo Mockup (New) */
    .mockup-photo-header-actions {
        gap: 4px;
    }

    .photo-filter-btn {
        font-size: 0.6rem;
        padding: 4px 8px;
    }

    .photo-upload-progress {
        padding: 10px 12px;
        gap: 10px;
        border-radius: 10px;
    }

    .upload-progress-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }

    .upload-progress-icon svg {
        width: 14px;
        height: 14px;
    }

    .upload-progress-text {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }

    .upload-progress-bar {
        height: 3px;
    }

    .mockup-photo-grid-new {
        gap: 6px;
    }

    .photo-item-new {
        border-radius: 8px;
    }

    .photo-overlay svg {
        width: 28px;
        height: 28px;
    }

    .photo-info {
        padding: 8px;
    }

    .photo-title {
        font-size: 0.7rem;
    }

    .photo-tag {
        font-size: 0.55rem;
        padding: 2px 6px;
    }

    .photo-check {
        width: 16px;
        height: 16px;
        top: 4px;
        right: 4px;
    }

    .photo-check svg {
        width: 10px;
        height: 10px;
    }

    .more-count {
        font-size: 1rem;
    }

    .more-text {
        font-size: 0.55rem;
    }

    .photo-timeline-new {
        padding-top: 10px;
    }

    .timeline-header {
        margin-bottom: 10px;
    }

    .timeline-title {
        font-size: 0.7rem;
    }

    .timeline-total {
        font-size: 0.65rem;
    }

    .timeline-entries {
        gap: 8px;
    }

    .timeline-entry {
        gap: 8px;
    }

    .timeline-dot {
        width: 6px;
        height: 6px;
    }

    .timeline-day {
        font-size: 0.75rem;
    }

    .timeline-photos {
        font-size: 0.7rem;
    }

    /* Liquidity Mockup */
    .mockup-balance {
        padding-bottom: 12px;
    }

    .balance-label {
        font-size: 0.7rem;
    }

    .balance-amount {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    .balance-change {
        font-size: 0.75rem;
    }

    .chart-bars {
        height: 80px;
        gap: 6px;
    }

    .bar-label {
        font-size: 0.65rem;
    }

    .mockup-finance-summary {
        gap: 10px;
    }

    .finance-item {
        padding: 10px;
        border-radius: 10px;
        gap: 10px;
    }

    .finance-icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }

    .finance-label {
        font-size: 0.65rem;
    }

    .finance-value {
        font-size: 0.85rem;
    }

    /* Highlight */
    .highlight {
        padding: 120px 28px;
    }

    .highlight-glow {
        width: 500px;
        height: 350px;
        filter: blur(50px);
    }

    .highlight-title {
        font-size: clamp(1.35rem, 5.5vw, 2rem);
        margin-bottom: 20px;
        line-height: 1.25;
    }

    .highlight-text {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 480px;
        margin: 0 auto;
    }

    /* CTA */
    .cta-section {
        padding: 140px 28px 120px;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .cta-description {
        font-size: 1rem;
        margin: 12px 0 28px;
    }

    .cta-form {
        flex-direction: column;
        gap: 10px;
    }

    .cta-form input {
        padding: 16px 20px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .cta-form button {
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .cta-note {
        font-size: 0.8rem;
    }

    /* Footer */
    .footer {
        padding: 60px 28px 28px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-brand-column {
        grid-column: span 1;
        max-width: 100%;
        text-align: center;
    }

    .footer-brand-logo {
        justify-content: center;
    }

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

    .footer-brand-name {
        font-size: 1.25rem;
    }

    .footer-tagline,
    .footer-company {
        font-size: 0.85rem;
    }

    .footer-column {
        text-align: center;
        align-items: center;
    }

    .footer-heading {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-links a:hover {
        transform: none;
    }

    .footer-bottom {
        padding-top: 24px;
    }

    .footer-copy {
        font-size: 0.8rem;
    }

    /* Legal */
    .legal-page {
        padding: 120px 20px 90px;
    }

    .legal-card {
        padding: 28px;
    }
}

/* Mobile Small */
@media (max-width: 420px) {
    .nav {
        padding: 0 20px;
    }

    .mobile-menu {
        right: 20px;
        left: 20px;
        min-width: auto;
    }

    .hero {
        padding: 90px 20px 50px;
    }

    .hero-brand-row {
        flex-direction: row;
        gap: 12px;
    }

    .hero-brand {
        font-size: 2.25rem;
    }

    .hero-logo {
        width: 48px;
        height: 48px;
    }

    .hero-tagline {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px 8px;
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .hero-description {
        max-width: 100%;
        padding: 14px 16px;
        gap: 8px;
        margin-bottom: 22px;
        border-radius: 14px;
    }

    .hero-description-eyebrow {
        font-size: 0.72rem;
    }

    .hero-description-lede {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .hero-description-meta {
        gap: 6px;
    }

    .hero-pill {
        font-size: 0.78rem;
        padding: 6px 9px;
    }

    .hero-description-sub {
        font-size: 0.82rem;
    }

    /* Legal */
    .legal-page {
        padding: 90px 20px 70px;
    }

    .legal-card {
        padding: 20px;
        border-radius: 14px;
    }

    .legal-brand img {
        width: 32px;
        height: 32px;
    }

    .legal-card h1 {
        font-size: 1.6rem;
    }

    .legal-section h2 {
        font-size: 1rem;
    }

    .features-intro {
        padding: 100px 24px 60px;
    }

    .features-grid-section {
        padding: 0 24px 80px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .feature-card-mini {
        padding: 20px 12px;
        border-radius: 16px;
    }

    .feature-icon-mini {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }

    .feature-card-mini h3 {
        font-size: 0.75rem;
    }

    .feature-detail {
        padding: 60px 24px;
    }

    .feature-detail-title {
        font-size: 1.35rem;
    }

    .feature-detail-text {
        font-size: 0.95rem;
    }

    .feature-detail-list li {
        font-size: 0.85rem;
    }

    .mockup-app {
        padding: 16px;
    }

    .mockup-app-title {
        font-size: 0.85rem;
    }

    .mockup-status-badge {
        font-size: 0.6rem;
        padding: 4px 8px;
    }

    /* Hide some mockup details on very small screens */
    .timeline-entries .timeline-entry:last-child {
        display: none;
    }

    .mockup-customer-projects .project-item:last-child {
        display: none;
    }

    /* Photo Mockup Small */
    .photo-upload-progress {
        padding: 8px 10px;
        gap: 8px;
    }

    .upload-progress-icon {
        width: 24px;
        height: 24px;
    }

    .upload-progress-icon svg {
        width: 12px;
        height: 12px;
    }

    .upload-progress-text {
        font-size: 0.65rem;
    }

    .mockup-photo-grid-new {
        gap: 4px;
    }

    .photo-item-new {
        border-radius: 6px;
    }

    .photo-overlay svg {
        width: 24px;
        height: 24px;
    }

    .photo-info {
        padding: 6px;
    }

    .photo-title {
        font-size: 0.6rem;
    }

    .photo-tag {
        display: none;
    }

    .more-count {
        font-size: 0.85rem;
    }

    .more-text {
        font-size: 0.5rem;
    }

    .highlight {
        padding: 80px 20px;
    }

    .highlight-glow {
        width: 300px;
        height: 200px;
        filter: blur(40px);
    }

    .highlight-title {
        font-size: 1.25rem;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .highlight-title br {
        display: none;
    }

    .highlight-text {
        font-size: 0.85rem;
        line-height: 1.55;
        padding: 0 4px;
        max-width: 380px;
        margin: 0 auto;
    }

    .cta-section {
        padding: 120px 24px;
    }

    /* Footer */
    .footer {
        padding: 50px 24px 24px;
    }

    .footer-main {
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-brand-logo {
        gap: 10px;
    }

    .footer-logo {
        width: 28px;
        height: 28px;
    }

    .footer-brand-name {
        font-size: 1.1rem;
    }

    .footer-tagline,
    .footer-company {
        font-size: 0.8rem;
    }

    .footer-heading {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .footer-links {
        gap: 8px;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-copy {
        font-size: 0.75rem;
    }
}

/* Safe area for notched phones */
@supports (padding-top: env(safe-area-inset-top)) {
    .nav {
        padding-top: env(safe-area-inset-top);
    }

    .mobile-menu {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .footer {
        padding-bottom: calc(32px + env(safe-area-inset-bottom));
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 28px 40px;
    }

    .hero-logo {
        width: 50px;
        height: 50px;
    }

    .hero-brand {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .hero-description {
        display: none;
    }

    .hero-cta {
        flex-direction: row;
        max-width: none;
    }

    .btn {
        width: auto;
        padding: 12px 24px;
    }
}
