/* ===== VARIABLES ===== */
:root {
    --bg-primary: #18181b;
    --bg-secondary: #1f1f23;
    --bg-card: #27272a;
    --bg-card-hover: #303033;

    --accent: #00d4ff;
    --accent-muted: rgba(0, 212, 255, 0.1);
    --green: #34d399;

    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #8b8b94;

    --border: rgba(255, 255, 255, 0.09);
    --border-hover: rgba(255, 255, 255, 0.16);

    --font-he: 'Heebo', sans-serif;
    --font-en: 'Inter', sans-serif;

    --transition: 0.2s ease;
    --header-height: 64px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

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

[dir="ltr"] body {
    font-family: var(--font-en);
}

[dir="rtl"] body {
    font-size: 1.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

input, textarea {
    font-family: inherit;
    color: inherit;
}

/* ===== UTILITIES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.section {
    padding-block: 6rem;
}

.section--alt {
    background: var(--bg-secondary);
}

.section__title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    text-align: center;
    margin-block-end: 0.75rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.section__subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-block-end: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

/* ===== SKIP NAV ===== */
.skip-nav {
    position: fixed;
    top: -100%;
    inset-inline-start: 1rem;
    z-index: 10001;
    background: var(--accent);
    color: #18181b;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: top 0.2s ease;
}

.skip-nav:focus {
    top: 0.75rem;
    outline: 2px solid var(--text-primary);
    outline-offset: 2px;
}

/* ===== FOCUS INDICATORS ===== */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.btn:focus-visible,
.nav__link:focus-visible,
.lang-btn:focus-visible,
.social-link:focus-visible,
.footer__links a:focus-visible,
.footer__social-links a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.form__input:focus-visible {
    outline: none;
    border-color: var(--accent);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition);
    position: relative;
    border: 1px solid transparent;
}

.btn--primary {
    background: var(--accent);
    color: #18181b;
    border-color: var(--accent);
}

.btn--primary:hover {
    background: transparent;
    color: var(--accent);
}

.btn--outline {
    border: 1px solid var(--border-hover);
    color: var(--text-secondary);
}

.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ===== HEADER / NAV ===== */
.header {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 1000;
    background: rgba(24, 24, 27, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-block-end: 1px solid var(--border);
    height: var(--header-height);
    transition: all var(--transition);
}

.header--scrolled {
    background: rgba(24, 24, 27, 0.97);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.nav__menu {
    display: none;
    gap: 0;
}

.nav__link {
    padding: 0.5rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color var(--transition);
}

.nav__link:hover,
.nav__link--active {
    color: var(--text-primary);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
}

.lang-btn {
    padding: 0.3rem 0.55rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition);
    font-family: var(--font-en) !important;
    letter-spacing: 0.08em;
    border-inline-end: 1px solid var(--border);
}

.lang-btn:last-child {
    border-inline-end: none;
}

.lang-btn.active {
    background: var(--accent);
    color: #18181b;
}

.lang-btn:hover:not(.active) {
    color: var(--text-primary);
}

/* Hamburger */
.nav__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav__hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all var(--transition);
}

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

.nav__hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.nav__menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    inset-inline-end: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(24, 24, 27, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0 2rem;
    gap: 0;
    z-index: 999;
    border-block-start: 1px solid var(--border);
}

.nav__menu.open .nav__link {
    font-size: 0.9rem;
    padding: 1.25rem 0;
    border-block-end: 1px solid var(--border);
    display: block;
    letter-spacing: 0.15em;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-block-start: var(--header-height);
    border-block-end: 1px solid var(--border);
}

.hero::after {
    content: '';
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.05) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero__greeting {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-block-end: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.hero__greeting::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 1.25rem;
}

.hero__name {
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    margin-block-end: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.04em;
}

.hero__tagline {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 500px;
    margin-inline: auto;
    margin-block-end: 3rem;
    line-height: 1.8;
}

.hero__cta {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero orbs & particles - removed in sharp design */
.hero__orbs,
.hero__particles,
.particle {
    display: none;
}

/* ===== PROMO VIDEO ===== */
.promo-video {
    background: var(--bg-secondary);
}

.promo-video__wrapper {
    max-width: 900px;
    margin-inline: auto;
    border: 1px solid var(--border);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
}

.promo-video__container {
    position: relative;
    background: #09090b;
    user-select: none;
    -webkit-user-select: none;
}

.promo-video__player {
    width: 100%;
    display: block;
    background: #09090b;
    pointer-events: none;
}

/* Hide native controls completely */
.promo-video__player::-webkit-media-controls {
    display: none !important;
}

.promo-video__player::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Custom controls bar */
.promo-video__controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 4px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-video__container:hover .promo-video__controls {
    opacity: 1;
}

.promo-video__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    opacity: 0.8;
    transition: opacity var(--transition);
    cursor: pointer;
}

.promo-video__btn:hover {
    opacity: 1;
}

.promo-video__icon {
    width: 16px;
    height: 16px;
}

.promo-video__spacer {
    flex: 1;
}

/* Play/pause icon toggling */
.promo-video__container[data-playing="true"] .promo-video__icon--play {
    display: none;
}

.promo-video__container[data-playing="false"] .promo-video__icon--pause,
.promo-video__container:not([data-playing]) .promo-video__icon--pause {
    display: none;
}

/* Mute icon toggling */
.promo-video__container[data-muted="false"] .promo-video__icon--muted {
    display: none;
}

.promo-video__container[data-muted="true"] .promo-video__icon--unmuted,
.promo-video__container:not([data-muted]) .promo-video__icon--unmuted {
    display: none;
}

/* Replay overlay */
.promo-video__replay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(9, 9, 11, 0.85);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.promo-video__container[data-ended="true"] .promo-video__replay {
    opacity: 1;
    pointer-events: auto;
}

.promo-video__container[data-ended="true"] .promo-video__controls {
    opacity: 0;
    pointer-events: none;
}

.promo-video__replay-btn {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-video__replay-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.1);
}

.promo-video__replay-text {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

/* ===== ABOUT ===== */
.about__content {
    display: grid;
    gap: 3rem;
}

.about__image {
    display: flex;
    justify-content: center;
}

.about__photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
    box-shadow: 0 0 30px rgba(161, 161, 170, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about__photo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(161, 161, 170, 0.2);
}

.about__text p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-block-end: 1rem;
    line-height: 1.9;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.stat-card {
    background: var(--bg-primary);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background var(--transition);
}

.stat-card:hover {
    background: var(--bg-card);
}

.stat-card__number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-en);
    letter-spacing: -0.03em;
}

.stat-card__plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-card__label {
    display: block;
    margin-block-start: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== SERVICES ===== */
.services__grid {
    display: grid;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.service-card {
    background: var(--bg-secondary);
    padding: 2.5rem 2rem;
    transition: background var(--transition);
}

.service-card:hover {
    background: var(--bg-card);
}

.service-card__icon {
    margin-block-end: 1.25rem;
    display: block;
    width: fit-content;
    color: var(--accent);
    line-height: 0;
}

.service-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-block-end: 0.75rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.service-card__desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ===== PORTFOLIO ===== */
.portfolio__grid {
    display: grid;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.portfolio-card {
    background: var(--bg-primary);
    overflow: hidden;
    transition: background var(--transition);
}

.portfolio-card:hover {
    background: var(--bg-card);
}

.portfolio-card__image {
    display: block;
    height: 200px;
    overflow: hidden;
    border-block-end: 1px solid var(--border);
}

.portfolio-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-card__img {
    transform: scale(1.05);
}

/* ===== PREVIEW MOCKUPS ===== */
.portfolio-preview {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    overflow: hidden;
}
.preview__header {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 10px; background: #f3f4f6; border-bottom: 1px solid #e5e7eb;
}
.preview__dots { display: flex; gap: 4px; }
.preview__dots i { width: 6px; height: 6px; border-radius: 50%; display: block; }
.preview__dots i:nth-child(1) { background: #ef4444; }
.preview__dots i:nth-child(2) { background: #f59e0b; }
.preview__dots i:nth-child(3) { background: #22c55e; }
.preview__url-bar { flex: 1; height: 10px; border-radius: 4px; background: #e5e7eb; }
.preview__body { flex: 1; display: flex; overflow: hidden; }

/* -- E-COMMERCE (Clean white store, blue accent) -- */
.preview--ecommerce { background: #ffffff; }
.preview--ecommerce .preview__header { background: #ffffff; }
.preview__ecom-topbar {
    position: absolute; top: 0; left: 0; right: 0; height: 20px; z-index: 2;
    background: #ffffff; border-bottom: 1px solid #e5e7eb;
    display: flex; align-items: center; padding: 0 8px; gap: 6px;
}
.preview__ecom-logo { width: 18px; height: 7px; background: #2563eb; border-radius: 3px; }
.preview__ecom-search { flex: 1; height: 10px; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 4px; }
.preview__ecom-cart { width: 10px; height: 10px; border: 1.5px solid #6b7280; border-radius: 2px; }
.preview__ecom-content { width: 100%; display: flex; flex-direction: column; padding-top: 22px; }
.preview__ecom-filters { display: flex; gap: 4px; padding: 5px 8px; }
.preview__ecom-pill { height: 8px; width: 24px; border-radius: 4px; background: #f3f4f6; border: 1px solid #e5e7eb; }
.preview__ecom-pill.active { background: #2563eb; border-color: #2563eb; }
.preview__ecom-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 6px; padding: 4px 8px 8px;
}
.preview__ecom-card {
    background: #ffffff; border: 1px solid #e5e7eb; border-radius: 6px; overflow: hidden;
}
.preview__ecom-img { width: 100%; aspect-ratio: 4/3; }
.preview__ecom-card:nth-child(1) .preview__ecom-img { background: #dbeafe; }
.preview__ecom-card:nth-child(2) .preview__ecom-img { background: #fce7f3; }
.preview__ecom-card:nth-child(3) .preview__ecom-img { background: #d1fae5; }
.preview__ecom-card:nth-child(4) .preview__ecom-img { background: #fef3c7; }
.preview__ecom-card:nth-child(5) .preview__ecom-img { background: #e0e7ff; }
.preview__ecom-card:nth-child(6) .preview__ecom-img { background: #ede9fe; }
.preview__ecom-info { padding: 4px; display: flex; flex-direction: column; gap: 2px; }
.preview__ecom-name { height: 3px; width: 80%; background: #d1d5db; border-radius: 1px; }
.preview__ecom-price { height: 3px; width: 35%; background: #059669; border-radius: 1px; opacity: 0.6; }
.preview__ecom-btn { height: 6px; width: 100%; background: #2563eb; border-radius: 3px; margin-top: 1px; opacity: 0.85; }

/* -- CHATBOT (Dark sidebar + white chat, indigo accent) -- */
.preview--chatbot { background: #ffffff; }
.preview__header--chat { background: #1a1a2e; border-color: rgba(255,255,255,0.06); }
.preview__header--chat .preview__url-bar { background: rgba(255,255,255,0.08); }
.preview__cb-sidebar {
    width: 60px; background: #1a1a2e; padding: 5px 4px;
    display: flex; flex-direction: column; gap: 3px; flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.preview__cb-logo { width: 16px; height: 16px; background: #6366f1; border-radius: 4px; margin: 0 auto 4px; }
.preview__cb-search { height: 8px; background: rgba(255,255,255,0.06); border-radius: 3px; margin-bottom: 2px; }
.preview__cb-convo {
    display: flex; align-items: center; gap: 3px; padding: 3px;
    border-radius: 4px; background: rgba(255,255,255,0.02);
}
.preview__cb-convo.active { border-left: 2px solid #6366f1; background: rgba(99,102,241,0.08); }
.preview__cb-avatar { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.preview__cb-lines { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.preview__cb-lines div:first-child { height: 3px; width: 75%; background: rgba(255,255,255,0.15); border-radius: 1px; }
.preview__cb-lines div:last-child { height: 2px; width: 50%; background: rgba(255,255,255,0.06); border-radius: 1px; }
.preview__cb-badge { width: 6px; height: 6px; background: #6366f1; border-radius: 50%; flex-shrink: 0; }
.preview__cb-main { flex: 1; display: flex; flex-direction: column; background: #ffffff; }
.preview__cb-header {
    height: 18px; background: #ffffff; border-bottom: 1px solid #e5e7eb;
    display: flex; align-items: center; padding: 0 6px; gap: 4px;
}
.preview__cb-user-info { height: 4px; width: 40px; background: #d1d5db; border-radius: 2px; }
.preview__cb-status { width: 5px; height: 5px; background: #22c55e; border-radius: 50%; }
.preview__cb-messages {
    flex: 1; padding: 5px; display: flex; flex-direction: column;
    gap: 4px; justify-content: flex-end;
}
.preview__cb-msg { border-radius: 10px; height: 12px; }
.preview__cb-msg.bot { width: 60%; background: #f3f4f6; border: 1px solid #e5e7eb; }
.preview__cb-msg.bot.long { height: 18px; width: 70%; }
.preview__cb-msg.user { width: 40%; background: #6366f1; align-self: flex-end; }
.preview__cb-msg.user.short { width: 28%; }
.preview__cb-input {
    height: 16px; margin: 3px 5px 5px;
    display: flex; align-items: center; gap: 3px;
    border: 1px solid #e5e7eb; border-radius: 8px; padding: 0 3px;
}
.preview__cb-input-field { flex: 1; height: 3px; background: #e5e7eb; border-radius: 1px; }
.preview__cb-send { width: 8px; height: 8px; background: #6366f1; border-radius: 3px; flex-shrink: 0; }
.preview__cb-panel {
    width: 50px; background: #f9fafb; border-left: 1px solid #e5e7eb;
    padding: 5px 4px; display: flex; flex-direction: column; gap: 4px; flex-shrink: 0;
}
.preview__cb-panel-title { height: 3px; width: 60%; background: #d1d5db; border-radius: 1px; }
.preview__cb-panel-card {
    background: #ffffff; border: 1px solid #e5e7eb; border-radius: 4px;
    padding: 3px; display: flex; flex-direction: column; gap: 2px;
}
.preview__cb-bar-label { height: 2px; width: 65%; background: #d1d5db; border-radius: 1px; }
.preview__cb-bar-track { height: 3px; background: #e5e7eb; border-radius: 2px; overflow: hidden; }
.preview__cb-bar-fill { height: 100%; width: 75%; background: #6366f1; border-radius: 2px; }
.preview__cb-bar-fill.alt { width: 88%; background: #22c55e; }

/* -- ANALYTICS (Dark dashboard, blue accent) -- */
.preview--analytics { background: #0f1117; }
.preview__header--analytics { background: #0f1117; border-color: #2a2d37; }
.preview__header--analytics .preview__url-bar { background: #1a1d27; }
.preview__an-sidebar {
    width: 38px; background: #0f1117; border-right: 1px solid #2a2d37;
    padding: 5px 3px; display: flex; flex-direction: column; gap: 3px; flex-shrink: 0;
}
.preview__an-logo { width: 14px; height: 14px; background: #3b82f6; border-radius: 4px; margin: 0 auto 4px; opacity: 0.9; }
.preview__an-nav { height: 10px; border-radius: 4px; background: rgba(255,255,255,0.04); }
.preview__an-nav.active { background: rgba(59,130,246,0.12); border-left: 2px solid #3b82f6; }
.preview__an-main {
    flex: 1; display: flex; flex-direction: column; gap: 4px; padding: 5px;
}
.preview__an-toolbar {
    display: flex; align-items: center; gap: 4px; padding-bottom: 2px;
}
.preview__an-breadcrumb { height: 4px; width: 50px; background: rgba(255,255,255,0.06); border-radius: 2px; }
.preview__an-live { width: 4px; height: 4px; background: #22c55e; border-radius: 50%; }
.preview__an-time-pills { margin-left: auto; display: flex; gap: 2px; }
.preview__an-time-pills div {
    width: 10px; height: 6px; border-radius: 3px;
    background: rgba(255,255,255,0.04); border: 1px solid #2a2d37;
}
.preview__an-time-pills div.active { background: #3b82f6; border-color: #3b82f6; }
.preview__an-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.preview__an-metric {
    background: #1a1d27; border: 1px solid #2a2d37; border-radius: 6px;
    padding: 4px; display: flex; flex-direction: column; gap: 2px;
}
.preview__an-metric-label { height: 2px; width: 60%; background: rgba(255,255,255,0.08); border-radius: 1px; }
.preview__an-metric-val { height: 5px; width: 50%; background: rgba(255,255,255,0.2); border-radius: 1px; }
.preview__an-spark { height: 6px; border-radius: 2px; }
.preview__an-metric:nth-child(1) .preview__an-spark { background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), rgba(59,130,246,0.1), rgba(59,130,246,0.35)); }
.preview__an-metric:nth-child(2) .preview__an-spark { background: linear-gradient(90deg, transparent, rgba(139,92,246,0.3), rgba(139,92,246,0.15), rgba(139,92,246,0.35)); }
.preview__an-metric:nth-child(3) .preview__an-spark { background: linear-gradient(90deg, transparent, rgba(34,197,94,0.3), rgba(34,197,94,0.1), rgba(34,197,94,0.35)); }
.preview__an-metric:nth-child(4) .preview__an-spark { background: linear-gradient(90deg, transparent, rgba(245,158,11,0.3), rgba(245,158,11,0.15), rgba(245,158,11,0.3)); }
.preview__an-charts { display: flex; gap: 4px; flex: 1; min-height: 0; }
.preview__an-bar-chart {
    flex: 2; background: #1a1d27; border: 1px solid #2a2d37;
    border-radius: 6px; padding: 4px 3px 3px;
    display: flex; align-items: flex-end; gap: 2px;
}
.preview__an-bar {
    flex: 1; background: #3b82f6; border-radius: 2px 2px 0 0; min-height: 4px; opacity: 0.8;
}
.preview__an-bar:nth-child(even) { opacity: 0.5; }
.preview__an-donut {
    flex: 1; background: #1a1d27; border: 1px solid #2a2d37;
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
}
.preview__an-donut-ring {
    width: 30px; height: 30px; border-radius: 50%;
    background: conic-gradient(#3b82f6 0deg 130deg, #8b5cf6 130deg 210deg, #22c55e 210deg 280deg, #f59e0b 280deg 360deg);
    position: relative;
}
.preview__an-donut-ring::after {
    content: ''; position: absolute; inset: 6px; border-radius: 50%; background: #1a1d27;
}
.preview__an-table { display: flex; flex-direction: column; gap: 2px; }
.preview__an-table-head { height: 6px; background: rgba(59,130,246,0.08); border-radius: 3px; }
.preview__an-table-row { height: 6px; background: rgba(255,255,255,0.02); border-radius: 3px; }

/* -- MANAGEMENT (White PM tool, violet accent) -- */
.preview--management { background: #ffffff; }
.preview__header--mgmt { background: #ffffff; }
.preview__pm-sidebar {
    width: 45px; background: #f9fafb; border-right: 1px solid #e5e7eb;
    padding: 5px 4px; display: flex; flex-direction: column; gap: 3px; flex-shrink: 0;
}
.preview__pm-logo { width: 14px; height: 14px; background: #7c3aed; border-radius: 4px; margin: 0 auto 4px; }
.preview__pm-nav { height: 10px; border-radius: 4px; background: transparent; }
.preview__pm-nav.active { background: rgba(124,58,237,0.08); border-left: 2px solid #7c3aed; }
.preview__pm-team { margin-top: auto; display: flex; flex-direction: column; gap: 3px; align-items: center; }
.preview__pm-avatar { width: 10px; height: 10px; border-radius: 50%; }
.preview__pm-avatar:nth-child(1) { background: #dbeafe; }
.preview__pm-avatar:nth-child(2) { background: #fce7f3; }
.preview__pm-avatar:nth-child(3) { background: #d1fae5; }
.preview__pm-main { flex: 1; display: flex; flex-direction: column; }
.preview__pm-topbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 4px 6px; border-bottom: 1px solid #e5e7eb;
}
.preview__pm-title { height: 5px; width: 50px; background: #d1d5db; border-radius: 2px; }
.preview__pm-actions { display: flex; gap: 3px; }
.preview__pm-actions div { width: 16px; height: 7px; border-radius: 3px; background: #f3f4f6; border: 1px solid #e5e7eb; }
.preview__pm-actions div.primary { background: #7c3aed; border-color: #7c3aed; }
.preview__pm-board { flex: 1; display: flex; gap: 4px; padding: 5px; }
.preview__pm-col { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.preview__pm-col-head {
    display: flex; align-items: center; gap: 3px; padding-bottom: 3px;
}
.preview__pm-col-dot { width: 5px; height: 5px; border-radius: 50%; background: #9ca3af; }
.preview__pm-col-dot.progress { background: #3b82f6; }
.preview__pm-col-dot.done { background: #22c55e; }
.preview__pm-col-name { height: 3px; flex: 1; background: #d1d5db; border-radius: 1px; }
.preview__pm-col-count {
    font-size: 5px; font-weight: 600; color: #9ca3af; line-height: 1;
    background: #f3f4f6; width: 8px; height: 8px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.preview__pm-card {
    background: #ffffff; border: 1px solid #e5e7eb; border-radius: 5px;
    padding: 4px; display: flex; flex-direction: column; gap: 2px;
}
.preview__pm-card-dot { width: 5px; height: 5px; border-radius: 50%; }
.preview__pm-card-dot.high { background: #ef4444; }
.preview__pm-card-dot.med { background: #f59e0b; }
.preview__pm-card-dot.low { background: #22c55e; }
.preview__pm-card-title { height: 3px; width: 85%; background: #d1d5db; border-radius: 1px; }
.preview__pm-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1px; }
.preview__pm-card-tag { height: 4px; width: 18px; border-radius: 3px; background: #ede9fe; }
.preview__pm-card-av { width: 7px; height: 7px; border-radius: 50%; background: #e0e7ff; }

/* -- YOGA (Warm cream/sage, serene landing page) -- */
.preview--yoga { background: #faf8f5; }
.preview__header--yoga { background: #faf8f5; border-color: #e8e2d9; }
.preview__header--yoga .preview__url-bar { background: #efe9e0; }
.preview__yoga-content {
    width: 100%; display: flex; flex-direction: column;
}
.preview__yoga-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 4px 8px; border-bottom: 1px solid #e8e2d9;
}
.preview__yoga-logo { width: 30px; height: 5px; background: #7c9a72; border-radius: 1px; }
.preview__yoga-links { display: flex; gap: 6px; }
.preview__yoga-links div { width: 14px; height: 3px; background: #c4b9a8; border-radius: 1px; }
.preview__yoga-hero {
    display: flex; align-items: center; gap: 6px; padding: 8px;
    background: linear-gradient(135deg, #faf8f5, #f0ebe3);
}
.preview__yoga-hero-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.preview__yoga-heading { height: 6px; width: 75%; background: #4a4a4a; border-radius: 1px; }
.preview__yoga-sub { height: 3px; width: 90%; background: #b8a88a; border-radius: 1px; }
.preview__yoga-btn { height: 7px; width: 32px; background: #7c9a72; border-radius: 0; margin-top: 2px; }
.preview__yoga-hero-img {
    width: 36px; height: 36px; background: linear-gradient(135deg, #d4c8b0, #c4886b);
    flex-shrink: 0;
}
.preview__yoga-classes {
    display: flex; gap: 4px; padding: 5px 8px;
}
.preview__yoga-class {
    flex: 1; background: #ffffff; border: 1px solid #e8e2d9;
    padding: 4px; display: flex; flex-direction: column; gap: 2px;
}
.preview__yoga-class-accent { height: 2px; width: 100%; background: #7c9a72; }
.preview__yoga-class-accent.t { background: #c4886b; }
.preview__yoga-class-accent.g { background: #b8a88a; }
.preview__yoga-class-title { height: 3px; width: 70%; background: #4a4a4a; border-radius: 1px; }
.preview__yoga-class-desc { height: 2px; width: 90%; background: #d4cec4; border-radius: 1px; }
.preview__yoga-testimonial {
    margin: 4px 8px; padding: 5px 6px;
    background: #ffffff; border: 1px solid #e8e2d9;
    display: flex; flex-direction: column; gap: 3px;
}
.preview__yoga-quote { height: 6px; width: 85%; background: #e8e2d9; border-radius: 1px; }
.preview__yoga-author { display: flex; align-items: center; gap: 3px; }
.preview__yoga-av { width: 8px; height: 8px; border-radius: 50%; background: #c4886b; }
.preview__yoga-name { height: 3px; width: 30px; background: #b8a88a; border-radius: 1px; }

/* -- DESIGNER (Warm neutrals, architectural portfolio) -- */
.preview--designer { background: #faf9f7; }
.preview__header--designer { background: #faf9f7; border-color: #e5e0d8; }
.preview__header--designer .preview__url-bar { background: #ece7df; }
.preview__des-content {
    width: 100%; display: flex; flex-direction: column;
}
.preview__des-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 4px 8px; border-bottom: 1px solid #e5e0d8;
}
.preview__des-logo { width: 28px; height: 5px; background: #2d2d2d; border-radius: 1px; }
.preview__des-links { display: flex; gap: 6px; }
.preview__des-links div { width: 14px; height: 3px; background: #c4b9a8; border-radius: 1px; }
.preview__des-hero {
    height: 38px;
    background: linear-gradient(135deg, #d4cec4, #a0846b, #8a7a6a);
    display: flex; align-items: center; justify-content: center;
}
.preview__des-hero-overlay {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.preview__des-heading { height: 5px; width: 60px; background: rgba(255,255,255,0.85); border-radius: 1px; }
.preview__des-sub { height: 3px; width: 45px; background: rgba(255,255,255,0.5); border-radius: 1px; }
.preview__des-btn { height: 6px; width: 28px; background: #a0846b; border: 1px solid rgba(255,255,255,0.4); margin-top: 1px; }
.preview__des-projects {
    display: flex; gap: 4px; padding: 5px 8px;
}
.preview__des-project {
    flex: 1; display: flex; flex-direction: column; overflow: hidden;
    border: 1px solid #e5e0d8;
}
.preview__des-project-img { height: 22px; }
.preview__des-project-img.i1 { background: linear-gradient(135deg, #d4cec4, #b8a88a); }
.preview__des-project-img.i2 { background: linear-gradient(135deg, #c4b9a8, #a0846b); }
.preview__des-project-img.i3 { background: linear-gradient(135deg, #e5e0d8, #c4b9a8); }
.preview__des-project-info { padding: 3px; display: flex; flex-direction: column; gap: 1px; background: #faf9f7; }
.preview__des-project-name { height: 3px; width: 75%; background: #2d2d2d; border-radius: 1px; }
.preview__des-project-type { height: 2px; width: 45%; background: #a0846b; border-radius: 1px; }
.preview__des-steps {
    display: flex; align-items: center; justify-content: center;
    gap: 2px; padding: 5px 8px;
}
.preview__des-step {
    display: flex; align-items: center; gap: 2px;
}
.preview__des-step-num {
    width: 10px; height: 10px;
    background: #a0846b; color: #ffffff;
    font-size: 5px; font-weight: 700; line-height: 1;
    display: flex; align-items: center; justify-content: center;
}
.preview__des-step-line { width: 18px; height: 1px; background: #a0846b; }

/* -- RESTAURANT (Burgundy/cream, elegant Italian) -- */
.preview--restaurant { background: #FAF7F2; }
.preview__header--restaurant { background: #FAF7F2; border-color: #e8e2d9; }
.preview__header--restaurant .preview__url-bar { background: #efe9e0; }
.preview__rest-content { width: 100%; display: flex; flex-direction: column; }
.preview__rest-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 4px 8px; border-bottom: 1px solid #e8e2d9;
}
.preview__rest-logo { width: 28px; height: 5px; background: #722F37; border-radius: 1px; }
.preview__rest-links { display: flex; gap: 6px; }
.preview__rest-links div { width: 14px; height: 3px; background: #c4b9a8; border-radius: 1px; }
.preview__rest-hero {
    padding: 10px 8px; text-align: center;
    background: linear-gradient(135deg, #722F37, #4a1f24);
    display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.preview__rest-heading { height: 6px; width: 55%; background: rgba(255,255,255,0.85); border-radius: 1px; }
.preview__rest-sub { height: 3px; width: 70%; background: rgba(255,255,255,0.4); border-radius: 1px; }
.preview__rest-btn { height: 7px; width: 28px; background: #C9A96E; margin-top: 1px; }
.preview__rest-menu { padding: 4px 8px; }
.preview__rest-tabs { display: flex; gap: 4px; margin-bottom: 4px; }
.preview__rest-tabs div { height: 6px; width: 24px; background: #f0ebe3; border-bottom: 1px solid #e8e2d9; }
.preview__rest-tabs div.active { border-bottom-color: #722F37; }
.preview__rest-dishes { display: flex; flex-direction: column; gap: 3px; }
.preview__rest-dish {
    display: flex; justify-content: space-between; align-items: center;
    padding: 2px 4px; border-bottom: 1px solid #f0ebe3;
}
.preview__rest-dish-name { height: 3px; width: 55%; background: #2C2C2C; border-radius: 1px; }
.preview__rest-dish-price { height: 3px; width: 15%; background: #C9A96E; border-radius: 1px; }
.preview__rest-gallery { display: flex; gap: 3px; padding: 4px 8px; }
.preview__rest-photo { flex: 1; height: 16px; }
.preview__rest-photo.p1 { background: linear-gradient(135deg, #d4b896, #c4a882); }
.preview__rest-photo.p2 { background: linear-gradient(135deg, #c8b8a8, #b5a595); }
.preview__rest-photo.p3 { background: linear-gradient(135deg, #d0c0ae, #bfae9c); }

/* -- PHOTOGRAPHER (Dark cinematic, masonry grid) -- */
.preview--photographer { background: #111111; }
.preview__header--photographer { background: #111111; border-color: #2a2a2a; }
.preview__header--photographer .preview__url-bar { background: #1a1a1a; }
.preview__photo-content { width: 100%; display: flex; flex-direction: column; }
.preview__photo-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 4px 8px; border-bottom: 1px solid #2a2a2a;
}
.preview__photo-logo { width: 28px; height: 5px; background: #ffffff; border-radius: 1px; }
.preview__photo-links { display: flex; gap: 6px; }
.preview__photo-links div { width: 14px; height: 3px; background: #555555; border-radius: 1px; }
.preview__photo-hero {
    padding: 10px 8px; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.preview__photo-heading { height: 6px; width: 60%; background: #ffffff; border-radius: 1px; }
.preview__photo-sub { height: 3px; width: 50%; background: #555555; border-radius: 1px; }
.preview__photo-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; padding: 4px 6px; flex: 1;
}
.preview__photo-img { background: #2a2a2a; min-height: 14px; }
.preview__photo-img.tall { grid-row: span 2; }
.preview__photo-img.wide { grid-column: span 2; }
.preview__photo-img.g1 { background: linear-gradient(135deg, #3a3028, #2a2420); }
.preview__photo-img.g2 { background: linear-gradient(135deg, #282830, #1e1e28); }
.preview__photo-img.g3 { background: linear-gradient(135deg, #302828, #251e1e); }
.preview__photo-img.g4 { background: linear-gradient(135deg, #283028, #1e251e); }
.preview__photo-img.g5 { background: linear-gradient(135deg, #2a2a35, #20202a); }
.preview__photo-img.g6 { background: linear-gradient(135deg, #352a28, #2a201e); }

/* -- REAL ESTATE (Navy/white, property listings) -- */
.preview--realestate { background: #ffffff; }
.preview__header--realestate { background: #ffffff; }
.preview__header--realestate .preview__url-bar { background: #F4F5F7; }
.preview__re-content { width: 100%; display: flex; flex-direction: column; }
.preview__re-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 4px 8px; border-bottom: 1px solid #e5e7eb;
}
.preview__re-logo { width: 28px; height: 5px; background: #1B2A4A; border-radius: 1px; }
.preview__re-links { display: flex; gap: 6px; }
.preview__re-links div { width: 14px; height: 3px; background: #c4c8d0; border-radius: 1px; }
.preview__re-hero {
    padding: 10px 8px; text-align: center;
    background: linear-gradient(135deg, #1B2A4A, #2a3d66);
    display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.preview__re-heading { height: 6px; width: 55%; background: rgba(255,255,255,0.85); border-radius: 1px; }
.preview__re-sub { height: 3px; width: 65%; background: rgba(255,255,255,0.4); border-radius: 1px; }
.preview__re-btns { display: flex; gap: 4px; margin-top: 2px; }
.preview__re-btns div { height: 7px; width: 24px; border: 1px solid rgba(255,255,255,0.3); }
.preview__re-btns div.primary { background: #C5963A; border-color: #C5963A; }
.preview__re-properties { display: flex; gap: 4px; padding: 5px 8px; }
.preview__re-card { flex: 1; border: 1px solid #e5e7eb; display: flex; flex-direction: column; overflow: hidden; }
.preview__re-card-img { height: 20px; }
.preview__re-card-img.c1 { background: linear-gradient(135deg, #c8d8e8, #a8c0d8); }
.preview__re-card-img.c2 { background: linear-gradient(135deg, #d8d0c8, #c8bfb5); }
.preview__re-card-img.c3 { background: linear-gradient(135deg, #c8d0c8, #b0bfb0); }
.preview__re-card-info { padding: 3px; display: flex; flex-direction: column; gap: 2px; }
.preview__re-card-price { height: 4px; width: 50%; background: #1B2A4A; border-radius: 1px; }
.preview__re-card-loc { height: 2px; width: 65%; background: #c4c8d0; border-radius: 1px; }
.preview__re-card-specs { display: flex; gap: 3px; }
.preview__re-card-specs div { height: 3px; width: 12px; background: #F4F5F7; border-radius: 1px; }

/* -- ContentAI -- */
.preview--contentai { background: #0F172A; }
.preview__header--contentai { background: #0F172A; }
.preview__header--contentai .preview__url-bar { background: #1E293B; }
.preview__cai-content { width: 100%; display: flex; flex-direction: column; }
.preview__cai-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 4px 8px; border-bottom: 1px solid #1E293B;
}
.preview__cai-logo { width: 28px; height: 5px; background: #3B82F6; border-radius: 1px; }
.preview__cai-links { display: flex; gap: 6px; }
.preview__cai-links div { width: 14px; height: 3px; background: #334155; border-radius: 1px; }
.preview__cai-cta { width: 20px; height: 7px; background: #3B82F6; }
.preview__cai-hero {
    padding: 8px 10px 5px; display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.preview__cai-heading { height: 6px; width: 60%; background: #F8FAFC; border-radius: 1px; }
.preview__cai-sub { height: 3px; width: 70%; background: #475569; border-radius: 1px; }
.preview__cai-prompt {
    display: flex; gap: 3px; width: 80%; margin-top: 4px;
}
.preview__cai-input { flex: 1; height: 8px; background: #1E293B; border: 1px solid #334155; }
.preview__cai-btn { width: 18px; height: 8px; background: #3B82F6; }
.preview__cai-output {
    margin: 4px 10px 6px; padding: 5px 6px; background: #1E293B; border: 1px solid #334155;
    display: flex; flex-direction: column; gap: 3px;
}
.preview__cai-line { height: 2px; background: #475569; border-radius: 1px; }
.preview__cai-line.w100 { width: 100%; }
.preview__cai-line.w90 { width: 90%; }
.preview__cai-line.w95 { width: 95%; }
.preview__cai-line.w60 { width: 60%; }

/* -- MedVision AI -- */
.preview--medvision { background: #0C1222; }
.preview__header--medvision { background: #0C1222; }
.preview__header--medvision .preview__url-bar { background: #162032; }
.preview__med-content { width: 100%; display: flex; flex-direction: column; }
.preview__med-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 4px 8px; border-bottom: 1px solid #1E3048;
}
.preview__med-logo { width: 30px; height: 5px; background: #0D9488; border-radius: 1px; }
.preview__med-links { display: flex; gap: 6px; }
.preview__med-links div { width: 14px; height: 3px; background: #1E3048; border-radius: 1px; }
.preview__med-dashboard {
    display: flex; gap: 3px; padding: 4px 6px; flex: 1;
}
.preview__med-patients {
    width: 22%; display: flex; flex-direction: column; gap: 3px;
}
.preview__med-patient { height: 10px; background: #162032; border: 1px solid #1E3048; }
.preview__med-patient.active { border-color: #0D9488; }
.preview__med-scan {
    flex: 1; display: flex; align-items: center; justify-content: center; padding: 3px;
}
.preview__med-scan-img {
    width: 100%; height: 100%; min-height: 40px;
    background: radial-gradient(ellipse at 40% 45%, #1a3040 0%, #0e1e2e 50%, #0C1222 100%);
    border: 1px solid #1E3048;
}
.preview__med-analysis {
    width: 25%; display: flex; flex-direction: column; gap: 4px; padding: 3px 0;
}
.preview__med-bar { height: 5px; background: #162032; position: relative; overflow: hidden; }
.preview__med-bar-fill { height: 100%; }
.preview__med-bar.green .preview__med-bar-fill { width: 88%; background: #22C55E; }
.preview__med-bar.yellow .preview__med-bar-fill { width: 62%; background: #EAB308; }
.preview__med-confidence { height: 8px; background: #162032; border: 1px solid #0D9488; margin-top: 2px; }

/* -- LearnAI -- */
.preview--learnai { background: #0F0B1E; }
.preview__header--learnai { background: #0F0B1E; }
.preview__header--learnai .preview__url-bar { background: #1A1333; }
.preview__lai-content { width: 100%; display: flex; flex-direction: column; }
.preview__lai-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 4px 8px; border-bottom: 1px solid #2D2545;
}
.preview__lai-logo { width: 26px; height: 5px; background: #7C3AED; border-radius: 1px; }
.preview__lai-links { display: flex; gap: 6px; }
.preview__lai-links div { width: 14px; height: 3px; background: #2D2545; border-radius: 1px; }
.preview__lai-cta { width: 20px; height: 7px; background: #7C3AED; }
.preview__lai-hero {
    padding: 8px 10px 5px; display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.preview__lai-heading { height: 6px; width: 50%; background: #FAF5FF; border-radius: 1px; }
.preview__lai-sub { height: 3px; width: 65%; background: #4c3d6e; border-radius: 1px; }
.preview__lai-courses { display: flex; gap: 4px; padding: 5px 8px; }
.preview__lai-card {
    flex: 1; background: #1A1333; border: 1px solid #2D2545; padding: 4px;
    display: flex; flex-direction: column; gap: 3px;
}
.preview__lai-card-tag { height: 3px; width: 18px; border-radius: 1px; }
.preview__lai-card-tag.t { background: #7C3AED; }
.preview__lai-card-tag.b { background: #F59E0B; }
.preview__lai-card-tag.d { background: #EC4899; }
.preview__lai-card-title { height: 3px; width: 80%; background: #C4B5FD; border-radius: 1px; }
.preview__lai-card-bar { height: 3px; background: #2D2545; margin-top: 2px; }
.preview__lai-bar-fill { height: 100%; }
.preview__lai-bar-fill.p75 { width: 75%; background: #7C3AED; }
.preview__lai-bar-fill.p45 { width: 45%; background: #4F46E5; }
.preview__lai-bar-fill.p90 { width: 90%; background: #7C3AED; }

/* ===== PORTFOLIO CONTENT ===== */
.portfolio-card__content {
    padding: 1.75rem;
}

.portfolio-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-block-end: 0.5rem;
    letter-spacing: -0.01em;
}

.portfolio-card__desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-block-end: 1rem;
}

.portfolio-card__tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--border-hover);
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.portfolio-card__link {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.45rem 1.25rem;
    font-size: 0.75rem;
}

.portfolio-disclaimer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border);
    text-align: start;
}

.portfolio-disclaimer__icon {
    flex-shrink: 0;
    color: var(--accent);
    line-height: 0;
}

.portfolio-disclaimer p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
    display: grid;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.testimonial-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    transition: background var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    background: var(--bg-card);
}

.testimonial-card__stars {
    color: var(--accent);
    font-size: 0.85rem;
    margin-block-end: 1.25rem;
    letter-spacing: 4px;
}

.testimonial-card__text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-block-end: 1.5rem;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-block-start: 1.25rem;
    border-block-start: 1px solid var(--border);
    margin-block-start: auto;
}

.testimonial-card__avatar {
    width: 36px;
    height: 36px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: #18181b;
    flex-shrink: 0;
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-card__role {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== PRICING ===== */
.pricing__grid {
    display: grid;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-primary);
    padding: 3rem 2rem;
    text-align: center;
    transition: background var(--transition);
    position: relative;
}

.pricing-card:hover {
    background: var(--bg-card);
}

.pricing-card--featured {
    background: var(--bg-card);
}

.pricing-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

.pricing-card--featured:hover {
    background: var(--bg-card-hover);
}

.pricing-card__badge {
    position: absolute;
    top: 0;
    inset-inline-start: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--accent);
    color: #18181b;
    padding: 0.2rem 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

[dir="rtl"] .pricing-card__badge {
    transform: translateX(50%) translateY(-50%);
}

.pricing-card__header {
    margin-block-end: 2rem;
}

.pricing-card__tier {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-block-end: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-card__currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-card__amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-en);
    letter-spacing: -0.03em;
}

.price-blurred {
    filter: blur(16px);
    user-select: none;
    pointer-events: none;
}

.pricing-card__features {
    text-align: start;
    margin-block-end: 2rem;
}

.pricing-card__features li {
    padding: 0.65rem 0;
    color: var(--text-secondary);
    border-block-end: 1px solid var(--border);
    font-size: 0.88rem;
}

.pricing-card__features li::before {
    content: '\2014';
    color: var(--accent);
    font-weight: 400;
    margin-inline-end: 0.75rem;
}

.pricing-card__btn {
    width: 100%;
}

/* ===== CONTACT ===== */
.contact__content {
    display: grid;
    gap: 3rem;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-block-end: 0;
    padding: 1.25rem 0;
    border-block-end: 1px solid var(--border);
}

.contact__icon {
    flex-shrink: 0;
    color: var(--accent);
    line-height: 0;
}

.contact__label {
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-block-end: 0.2rem;
}

.contact__value {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

a.contact__value:hover {
    color: var(--accent);
}

.contact__socials {
    display: flex;
    gap: 0;
    margin-block-start: 2rem;
    border: 1px solid var(--border);
    width: fit-content;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
    border-inline-end: 1px solid var(--border);
}

.social-link:last-child {
    border-inline-end: none;
}

.social-link:hover {
    color: var(--accent);
    background: var(--accent-muted);
}

/* Contact Form */
.contact__form {
    display: grid;
    gap: 1.5rem;
}

.form__group {
    position: relative;
}

.form__input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--accent);
}

.form__input::placeholder {
    color: transparent;
}

.form__label {
    position: absolute;
    top: 1rem;
    inset-inline-start: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all var(--transition);
    pointer-events: none;
}

.form__input:focus ~ .form__label,
.form__input:not(:placeholder-shown) ~ .form__label {
    top: -0.6rem;
    inset-inline-start: 0.75rem;
    font-size: 0.7rem;
    color: var(--accent);
    background: var(--bg-secondary);
    padding-inline: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form__textarea {
    min-height: 150px;
    resize: vertical;
}

.form__submit {
    justify-self: start;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-primary);
    border-block-start: 1px solid var(--border);
    padding-block: 3rem;
}

.footer__content {
    display: grid;
    gap: 2.5rem;
}

.footer__logo {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    display: inline-block;
    margin-block-end: 0.75rem;
}

.footer__desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer__heading {
    font-size: 0.7rem;
    font-weight: 600;
    margin-block-end: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.footer__links ul {
    display: grid;
    gap: 0.5rem;
}

.footer__links a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--text-primary);
}

.footer__social-links {
    display: flex;
    gap: 1.25rem;
}

.footer__social-links a {
    color: var(--text-muted);
    transition: color var(--transition);
}

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

.footer__bottom {
    margin-block-start: 2.5rem;
    padding-block-start: 1.5rem;
    border-block-start: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer__disclosure {
    margin-block-start: 1.5rem;
    padding-block-start: 1.5rem;
    border-block-start: 1px solid var(--border);
    text-align: center;
}

.footer__disclosure p {
    color: var(--text-muted);
    font-size: 0.72rem;
    line-height: 1.8;
    margin-block-end: 0.15rem;
}

.footer__disclosure a {
    color: var(--accent);
}

.footer__disclosure a:hover {
    text-decoration: underline;
}

.footer__a11y-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-block-start: 1.5rem;
    padding-block-start: 1rem;
    border-block-start: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color var(--transition);
}

.footer__a11y-strip:hover {
    color: var(--accent);
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    inset-inline-start: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    border: 1px solid var(--accent);
    padding: 1rem 2rem;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
}

[dir="rtl"] .toast {
    transform: translateX(50%) translateY(100px);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

[dir="rtl"] .toast.show {
    transform: translateX(50%) translateY(0);
}

.toast__message {
    color: var(--text-primary);
    font-size: 0.85rem;
    white-space: nowrap;
}

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

/* Tablet - 640px */
@media (min-width: 640px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .contact__content {
        grid-template-columns: 1fr 1.5fr;
    }

    .footer__content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* Desktop Nav - 768px */
@media (min-width: 768px) {
    .nav__menu {
        display: flex;
    }

    .nav__hamburger {
        display: none;
    }

    .pricing__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about__content {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        align-items: center;
    }

    .about__image {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
    }

    .about__text {
        grid-row: 1 / 2;
        grid-column: 2 / 3;
    }

    .about__stats {
        grid-column: 1 / -1;
    }

    .about__photo {
        width: 260px;
        height: 260px;
    }
}

/* Full Grid - 1024px */
@media (min-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .container {
        padding-inline: 2rem;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .about__stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: start;
        padding: 1.25rem;
    }

    .stat-card__label {
        margin-block-start: 0;
    }

    .hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .hero__cta .btn {
        width: 100%;
        max-width: 280px;
    }
}
