/* --- Lokale Webfonts (Pfad zum Elternverzeichnis) --- */
@font-face {
    font-family: 'Clash Display';
    src: url('../fonts/clash-display-400.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Clash Display';
    src: url('../fonts/clash-display-500.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Clash Display';
    src: url('../fonts/clash-display-600.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Clash Display';
    src: url('../fonts/clash-display-700.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

/* --- CSS Variablen & Reset --- */
:root {
    --color-bg-dark: #050505;
    --color-text-dark: #F5F5F5;
    --color-bg-light: #F5F5F5;
    --color-text-light: #050505;
    --font-heading: 'Clash Display', sans-serif;
    --font-mono: 'Courier New', Courier, monospace;

    /* Demo-spezifische Akzentfarben */
    --accent-psychologie: #8B9E7C;
    --accent-fitness: #FF6B2B;
    --accent-kanzlei: #B8976A;
}

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

body,
html {
    width: 100%;
    background-color: var(--color-bg-dark);
    color: var(--color-text-dark);
    font-family: var(--font-heading);
    overscroll-behavior: none;
    cursor: none;
}

h1, h2, h3 {
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
}

.dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-dark);
}

/* SplitType */
.word, .line {
    overflow: hidden;
    vertical-align: top;
    display: inline-block;
}

.char {
    display: inline-block;
}

/* --- Glassmorphismus --- */
.glass-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 3vw 4vw;
    color: var(--color-text-dark);
}

/* --- Custom Cursor --- */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 200000;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 199999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

/* --- Lenis --- */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

#smooth-wrapper {
    position: relative;
    z-index: 2;
    background: var(--color-bg-dark);
    overflow: hidden;
    width: 100%;
}

#smooth-content {
    width: 100%;
    position: relative;
}

/* ============================================
   NAVIGATION
   ============================================ */
.demo-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 3vw;
}

.nav-back {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.nav-back:hover {
    color: #fff;
}

.nav-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.nav-back:hover .nav-arrow {
    transform: translateX(-4px);
}

/* ============================================
   1. HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    max-width: 81vw;
    padding: 2.7vw 3.6vw;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.6), rgba(15, 15, 15, 0.2));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.hero-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.3em;
}

.hero-title {
    font-size: clamp(2.7rem, 8vw, 8rem);
}

.hero-subtitle {
    font-family: var(--font-mono);
    max-width: 580px;
    font-size: 0.9rem;
    opacity: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInUp 1s 2s forwards;
}

.scroll-indicator span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.4);
}

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

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

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

/* ============================================
   2. CATEGORIES SECTION
   ============================================ */
.categories {
    padding: 12vh 5vw 15vh;
    position: relative;
}

.categories-header {
    text-align: center;
    margin-bottom: 8vh;
}

.categories-header h2 {
    font-size: clamp(2.5rem, 6vw, 6rem);
    margin-bottom: 1.5rem;
}

.categories-sub {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5vw;
    max-width: 1400px;
    margin: 0 auto;
}

/* Category Card */
.category-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    min-height: 420px;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card-number {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.15em;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.card-title {
    font-size: clamp(1.5rem, 2.2vw, 2.5rem);
    line-height: 1.15;
}

.card-description {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.category-card:hover .tag {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
}

/* Card CTA */
.card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.card-btn {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.category-card:hover .card-btn {
    color: #fff;
}

.card-arrow {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .card-arrow {
    color: #fff;
    transform: translateX(6px);
}

/* Card Accent Glow */
.card-accent {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.6s;
    pointer-events: none;
}

.category-card:hover .card-accent {
    opacity: 0.3;
}

.accent-psychologie {
    background: var(--accent-psychologie);
}

.accent-fitness {
    background: var(--accent-fitness);
}

.accent-kanzlei {
    background: var(--accent-kanzlei);
}

/* ============================================
   3. PROCESS / HOW IT WORKS
   ============================================ */
.process {
    padding: 10vh 5vw 15vh;
}

.process-header {
    text-align: center;
    margin-bottom: 8vh;
}

.process-header h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5vw;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 3rem 2rem;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.step-text {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   4. FOOTER
   ============================================ */
.footer {
    position: relative;
    width: 100%;
    padding: 15vh 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.footer-title {
    font-size: clamp(2.5rem, 6vw, 6rem);
    text-align: center;
}

.magnetic-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.magnetic-btn span {
    position: relative;
    z-index: 2;
}

.magnetic-btn::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    transition: top 0.4s cubic-bezier(0.1, 0, 0.3, 1);
    z-index: 1;
}

.magnetic-btn:hover::before {
    top: 0;
}

.magnetic-btn:hover {
    color: #000;
}

/* Ticker */
.ticker-wrap {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%) rotate(-5deg);
    white-space: nowrap;
    opacity: 0.05;
    pointer-events: none;
}

.ticker {
    display: inline-block;
    font-size: 20vw;
    font-weight: 700;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-mono);
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* ============================================
   BROWSER MODAL
   ============================================ */
.browser-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.browser-modal.active {
    opacity: 1;
    visibility: visible;
}

.browser-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.browser-window {
    position: relative;
    z-index: 2;
    width: 92vw;
    height: 88vh;
    max-width: 1400px;
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    transform: translateY(40px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.browser-modal.active .browser-window {
    transform: translateY(0) scale(1);
}

/* Browser Chrome (Top Bar) */
.browser-chrome {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: #2a2a2a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 1rem;
    flex-shrink: 0;
}

.browser-dots {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

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

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.browser-address-bar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.address-lock {
    font-size: 0.75rem;
    opacity: 0.5;
}

.address-url {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.browser-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.25rem;
    transition: color 0.3s;
    flex-shrink: 0;
    line-height: 1;
}

.browser-close:hover {
    color: #fff;
}

/* Browser Viewport */
.browser-viewport {
    flex: 1;
    position: relative;
    background: #fff;
}

.browser-viewport iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Coming Soon Overlay */
.coming-soon {
    position: absolute;
    inset: 0;
    background: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.coming-soon.hidden {
    display: none;
}

.coming-soon-content {
    text-align: center;
    max-width: 400px;
}

.coming-soon-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.coming-soon-content p {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.coming-soon-btn {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.coming-soon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .cursor,
    .cursor-follower {
        display: none;
    }

    body, html {
        cursor: auto;
    }

    .hero {
        height: 100svh;
    }

    .hero-content {
        padding: 6vw 5vw;
        gap: 1rem;
        max-width: 95vw;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 4rem);
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-card {
        min-height: auto;
        padding: 2rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .magnetic-btn {
        width: 150px;
        height: 150px;
        font-size: 1rem;
    }

    /* Browser Modal Mobile */
    .browser-window {
        width: 98vw;
        height: 92vh;
        border-radius: 10px;
    }

    .browser-chrome {
        padding: 0.5rem 0.75rem;
    }

    .browser-dots {
        display: none;
    }

    .browser-address-bar {
        max-width: none;
        margin: 0;
    }

    .demo-nav {
        padding: 1rem 4vw;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Aspect Ratio Fix (MacBook, iPad) */
@media (max-aspect-ratio: 16/10) and (min-width: 769px) {
    .hero {
        height: 88vh;
    }

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

    .categories {
        padding: 8vh 5vw 10vh;
    }

    .categories-header h2 {
        font-size: clamp(2rem, 5vw, 5rem);
    }

    .process {
        padding: 8vh 5vw 10vh;
    }

    .footer {
        padding: 10vh 0;
    }

    .footer-title {
        font-size: clamp(2rem, 5vw, 4.5rem);
    }
}

/* =====================================================
   CONTACT MODAL
   ===================================================== */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-modal-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 520px;
    background: rgba(12, 12, 12, 0.6);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
    overflow: hidden;
    transform: translateY(40px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal.active .contact-modal-container {
    transform: translateY(0) scale(1);
}

.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.4;
}

.contact-orb-1 {
    width: 200px; height: 200px;
    background: rgba(120, 80, 255, 0.5);
    top: -60px; right: -40px;
    animation: orbFloat1 6s ease-in-out infinite;
}

.contact-orb-2 {
    width: 160px; height: 160px;
    background: rgba(0, 200, 255, 0.4);
    bottom: -40px; left: -30px;
    animation: orbFloat2 8s ease-in-out infinite;
}

.contact-orb-3 {
    width: 120px; height: 120px;
    background: rgba(255, 100, 200, 0.3);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 7s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(-20px, 20px) scale(1.15); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(25px, -15px) scale(1.1); }
}

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

.contact-modal-close {
    position: absolute;
    top: 1.25rem; right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s, transform 0.3s;
    line-height: 1;
}

.contact-modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.contact-modal-body {
    position: relative;
    z-index: 5;
    padding: 3.5rem 2.5rem 2.5rem;
    text-align: center;
}

.contact-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3em;
    margin-bottom: 0.75rem;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-card-icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    flex-shrink: 0;
    transition: background 0.3s;
}

.contact-card:hover .contact-card-icon {
    background: rgba(255, 255, 255, 0.12);
}

.contact-card-info {
    flex: 1;
    text-align: left;
}

.contact-card-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
}

.contact-card-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
}

.contact-card-arrow {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.contact-card:hover .contact-card-arrow {
    color: #fff;
    transform: translateX(4px);
}

.contact-footer-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .contact-modal-container { width: 95%; border-radius: 24px; }
    .contact-modal-body      { padding: 2.5rem 1.5rem 2rem; }
    .contact-card            { padding: 1rem 1.25rem; }
    .contact-card-value      { font-size: 0.9rem; }
}
