/* ==========================================================================
   DARK MATTER LABS - Ultra Modern Black & Gold Theme
   ========================================================================== */

/* CSS Variables */
:root {
    --true-black: #000000;
    --deep-black: #0a0a0a;
    --gold-start: #f5d76e;
    --gold-mid: #f4b942;
    --gold-end: #d4a017;
    --gold-glow: rgba(245, 215, 110, 0.3);
    --text-muted: #888888;
    --max-width: 1400px;
    --border-radius: 12px;
    --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-main: 'Consolas', monospace;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font: 13px/19px var(--font-main);
    font-size: 16px;
    font-weight: 300;
    font-family: var(--font-main);
    background: var(--true-black);
    color: white;
    line-height: 1.6;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold-start);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 32px;
    height: 32px;
    border: 2px solid var(--gold-glow);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s var(--transition);
}

/* Animated Background */
.particle-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold-start);
    border-radius: 50%;
    opacity: 0;
    animation: float 20s infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Navigation */
.nav-trigger {
    position: fixed;
    top: 40px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--gold-start);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: color 0.4s ease, transform 0.3s ease;
    color: var(--gold);

}

.nav-trigger:hover {
    transform: rotate(90deg);
    box-shadow: 0 0 30px var(--gold-glow);
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    margin: auto;
}

.line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold-start);
    position: absolute;
    transition: all 0.3s var(--transition);
}

.line:nth-child(1) {
    top: 0;
}

.line:nth-child(2) {
    top: 8px;
}

.line:nth-child(3) {
    top: 16px;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.logo-orb {
    width: 300px;
    height: 100px;
    margin: 0 auto 40px;
    position: relative;
}

.logo-orb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo2-orb {
    width: 300px;
    height: 250px;
    margin: 0 auto 40px;
    position: relative;
}

.log2-orb img {
    width: 300%;
    height: 300%;
    object-fit: contain;
}

.orb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    filter: blur(20px);
    animation: pulse 3s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(5rem, 7vw, 9rem);
    /* INCREASED for impact */
    font-weight: 900;
    line-height: 0.9;
    /* TIGHTENED for two lines */
    margin-bottom: 30px;
    letter-spacing: -3px;
    /* ADDED for modern edge */

}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: -15px;
    /* OVERLAPS for dramatic effect */
}


.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.metric {
    text-align: center;
    position: relative;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold-start), transparent);
    overflow: hidden;
}

.scroll-line {
    width: 100%;
    height: 100%;
    background: var(--gold-start);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* About Section */
.about-section {
    padding: 150px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
    margin-bottom: 100px;
}

.about-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    transition: all 0.5s var(--transition);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-start);
    box-shadow: 0 20px 50px rgba(245, 215, 110, 0.1);
}

.about-card.main-card {
    grid-row: span 2;
}

.card-gold-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--transition);
}

.about-card:hover .card-gold-bar {
    transform: scaleX(1);
}

.card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(85%) sepia(50%) saturate(400%) hue-rotate(15deg);
}

.about-card h3,
.about-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--gold-start);
}

.about-card p {
    color: var(--text-muted);
}

/* Values Timeline */
.values-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 60px 0;
}

.values-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-start), transparent);
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.5s var(--transition);
}

.timeline-item:hover {
    transform: translateY(-20px);
}

.timeline-gold-dot {
    width: 20px;
    height: 20px;
    background: var(--gold-start);
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px var(--gold-glow);
}

.timeline-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--gold-start);
}

.timeline-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-start);
}

/* Services Section */
.services-section {
    padding: 150px 0;
    background: radial-gradient(circle at center, rgba(245, 215, 110, 0.02), transparent 50%);
}

.services-showcase {
    margin-bottom: 100px;
}

.service-main,
.service-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.service-visual img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(245, 215, 110, 0.2));
    transition: transform 0.5s var(--transition);
}

.service-visual:hover img {
    transform: scale(1.05) rotate(2deg);
}

.service-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 30px;
}

.service-features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--gold-start);
}

/* AI Platform */
.ai-platform {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.ai-platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
}

.ai-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.ai-header h3 {
    font-size: 2rem;
    color: var(--gold-start);
}

.ai-status {
    font-size: 0.9rem;
    color: var(--gold-start);
    font-family: monospace;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.5;
    }
}

.ai-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-visual {
    position: relative;
}

.ai-visual img {
    width: 100%;
    border-radius: var(--border-radius);
}

.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ai-particles::before,
.ai-particles::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold-start);
    border-radius: 50%;
    filter: blur(2px);
    animation: floatAround 10s infinite;
}

.ai-particles::after {
    animation-delay: 5s;
    animation-direction: reverse;
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(100px, -100px);
        opacity: 0;
    }
}

.ai-modules {
    display: grid;
    gap: 20px;
}

.module-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: all 0.3s var(--transition);
}

.module-card:hover {
    border-color: var(--gold-start);
    transform: translateX(10px);
}

.module-card h4 {
    color: var(--gold-start);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.module-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.ai-cta {
    margin-top: 40px;
    text-align: center;
}

.btn-gold {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: var(--true-black);
    text-decoration: none;
    font-weight: 700;
    border-radius: var(--border-radius);
    transition: all 0.3s var(--transition);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--gold-glow);
}

/* Media Section */
.media-section {
    padding: 150px 0;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gold-frame {
    border: 2px solid var(--gold-start);
    box-shadow: 0 0 40px var(--gold-glow);
}

.book-feature {
    perspective: 1000px;
}

.book-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px;
    transform: rotateY(-5deg);
    transition: all 0.5s var(--transition);
}

.book-card:hover {
    transform: rotateY(0deg);
    border-color: var(--gold-start);
}

.book-cover {
    position: relative;
}

.book-cover img {
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.book-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    filter: blur(20px);
    animation: pulse 3s infinite alternate;
}

.book-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--gold-start);
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.book-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.book-links {
    display: flex;
    gap: 20px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid var(--gold-start);
    color: var(--gold-start);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s var(--transition);
}

.btn-outline:hover {
    background: var(--gold-start);
    color: var(--true-black);
}

/* Contact Section */
.contact-section {
    padding: 150px 0;
}

.contact-terminal {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--gold-start);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(245, 215, 110, 0.1);
    border-bottom: 1px solid var(--gold-start);
}

.terminal-dots {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

.terminal-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dots span:nth-child(1) {
    background: #ff5f56;
}

.terminal-dots span:nth-child(2) {
    background: #ffbd2e;
}

.terminal-dots span:nth-child(3) {
    background: #27ca3f;
}

.terminal-header span {
    font-family: monospace;
    color: var(--gold-start);
}

.terminal-body {
    padding: 40px;
}

.input-group {
    margin-bottom: 30px;
}

.terminal-label {
    display: block;
    font-family: monospace;
    color: var(--gold-start);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.terminal-form input,
.terminal-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 15px;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    transition: all 0.3s var(--transition);
}

.terminal-form input:focus,
.terminal-form textarea:focus {
    outline: none;
    border-color: var(--gold-start);
    box-shadow: 0 0 20px rgba(245, 215, 110, 0.2);
}

.terminal-footer {
    position: relative;
    margin-top: 40px;
}

.execute-btn {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: var(--true-black);
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    position: relative;
    z-index: 2;
}

.execute-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--gold-glow);
}

.gold-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    filter: blur(10px);
    animation: pulse 2s infinite;
    z-index: 1;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.3s var(--transition);
}

.info-card:hover {
    border-color: var(--gold-start);
    transform: translateY(-5px);
}

.info-card h4 {
    color: var(--gold-start);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-muted);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.social-links a {
    color: var(--gold-start);
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid var(--gold-start);
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s var(--transition);
}

.social-links a:hover {
    background: var(--gold-start);
    color: var(--true-black);
}

/* Footer */
.site-footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
}

.gold-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-start), transparent);
    margin: 0 auto 20px;
}

/* Responsive */
@media (max-width: 768px) {

    .cursor,
    .cursor-follower {
        display: none;
    }

    body {
        cursor: auto;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-card.main-card {
        grid-row: span 1;
    }

    .values-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .values-timeline::before {
        display: none;
    }

    .service-main,
    .service-alt {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .book-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .book-links {
        flex-direction: column;
    }

    .ai-inner {
        grid-template-columns: 1fr;
    }

    .menu-items a {
        font-size: 2rem;
    }
}

/* === BASIC COPY PROTECTION === */

img,
video {
    -webkit-user-drag: none;
    user-drag: none;
}

::selection {
    background: transparent;
    color: inherit;
}

/* ===== iMEET SECTION  =================================== */
.imeet-section {
    padding: 150px 0;
    background: radial-gradient(circle at center, rgba(245, 215, 110, .02), transparent 50%);
}

.imeet-header {
    text-align: center;
    margin-bottom: 80px;
}

/* phone mock-up */
.imeet-mockup {
    position: relative;
    width: 280px;
    margin: 0 auto;
    perspective: 1000px;
}

.phone-body {
    width: 100%;
    aspect-ratio: 9/19.5;
    background: #000;
    border: 4px solid #f5d76e;
    border-radius: 36px;
    padding: 8px;
    box-shadow: 0 0 40px rgba(245, 215, 110, .25);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform .5s;
}

.imeet-mockup:hover .phone-body {
    transform: rotateY(0) rotateX(0);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #111;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ui-top,
.ui-bottom {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 12px;
    color: #f5d76e;
}

.ui-mid {
    flex: 1;
    display: grid;
    place-items: center;
    text-align: center;
}

.waveform {
    width: 160px;
    height: 40px;
    background: url('data:image/svg+xml;utf8,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160 40"><rect x="0" y="15" width="4" height="10" fill="%23f5d76e"/><rect x="8" y="10" width="4" height="20" fill="%23f5d76e"/><rect x="16" y="5" width="4" height="30" fill="%23f5d76e"/><rect x="24" y="8" width="4" height="24" fill="%23f5d76e"/><rect x="32" y="12" width="4" height="16" fill="%23f5d76e"/><rect x="40" y="6" width="4" height="28" fill="%23f5d76e"/><rect x="48" y="10" width="4" height="20" fill="%23f5d76e"/><rect x="56" y="14" width="4" height="12" fill="%23f5d76e"/><rect x="64" y="8" width="4" height="24" fill="%23f5d76e"/><rect x="72" y="12" width="4" height="16" fill="%23f5d76e"/><rect x="80" y="10" width="4" height="20" fill="%23f5d76e"/><rect x="88" y="6" width="4" height="28" fill="%23f5d76e"/><rect x="96" y="14" width="4" height="12" fill="%23f5d76e"/><rect x="104" y="8" width="4" height="24" fill="%23f5d76e"/><rect x="112" y="12" width="4" height="16" fill="%23f5d76e"/><rect x="120" y="10" width="4" height="20" fill="%23f5d76e"/><rect x="128" y="6" width="4" height="28" fill="%23f5d76e"/><rect x="136" y="14" width="4" height="12" fill="%23f5d76e"/><rect x="144" y="8" width="4" height="24" fill="%23f5d76e"/><rect x="152" y="12" width="4" height="16" fill="%23f5d76e"/></svg>');
    background-size: cover;
    animation: wave 1.2s linear infinite;
}

@keyframes wave {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: -160px 0
    }
}

.ui-mid p {
    margin-top: 12px;
    font-size: 14px;
    color: #ccc;
}

.imeet-btn {
    background: linear-gradient(90deg, #f5d76e, #f4b942);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .3s;
}

.imeet-btn:hover {
    transform: scale(1.05);
}

/* content column */
.imeet-content {
    max-width: 500px;
    margin-left: auto;
}

.imeet-features {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
}

.imeet-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: #ccc;
}

.imeet-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f5d76e;
    font-weight: 700;
}

/* store badges */
.store-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.store-badge img {
    height: 48px;
    transition: transform .3s;
}

.store-badge:hover img {
    transform: scale(1.05);
}

/* enterprise CTA */
.imeet-cta {
    margin-top: 10px;
}