/* TicarX — Premium Enterprise */

/* Custom Fonts */
@font-face { font-family: 'ShopifySans'; src: url('/fonts/5949cd393a8375a896fd0a9b74307666.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'ShopifySans'; src: url('/fonts/5ed4b67d15b44e848aaae29d2e30ec03.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'ShopifySans'; src: url('/fonts/85640034fdc1068cdb17d5e74ab9876d.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'ShopifySans'; src: url('/fonts/8e7a81acb91d51d6051bfb7f97e8ecaa.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

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

:root {
    --primary: #5c5feb;
    --primary-hover: #4a4ed4;
    --primary-light: #ededff;
    --accent: #c8e64a;
    --accent-hover: #b5d43a;
    --dark: #0f0f1a;
    --dark-2: #1a1a2e;
    --text: #0f0f1a;
    --text-2: #64748b;
    --text-3: #94a3b8;
    --bg: #ffffff;
    --bg-tint: #f8f9fc;
    --bg-lavender: #eeedf7;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --green: #22c55e;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 10px 30px -5px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px -10px rgba(0,0,0,0.12), 0 4px 6px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 60px -15px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.06);
    --shadow-glow: 0 0 40px rgba(92,95,235,0.15);
    --tr: 0.3s cubic-bezier(0.4,0,0.2,1);
    --tr-bounce: 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: 16px; line-height: 1.6; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius); font-size: 15px; font-weight: 600; border: none; cursor: pointer; transition: all var(--tr); position: relative; overflow: hidden; letter-spacing: -0.01em; }
.btn::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent); opacity: 0; transition: opacity var(--tr); }
.btn:hover::after { opacity: 1; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(92,95,235,0.25); }
.btn--primary:hover { background: var(--primary-hover); box-shadow: 0 4px 16px rgba(92,95,235,0.35); transform: translateY(-1px); }
.btn--secondary { background: var(--bg); color: var(--text); border: 1.5px solid var(--border); }
.btn--secondary:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--dark); color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.btn--dark:hover { background: #2d2d4e; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
.btn--ghost { background: transparent; color: var(--text); }
.btn--ghost:hover { color: var(--primary); }
.btn--accent { background: var(--accent); color: var(--dark); font-weight: 700; box-shadow: 0 2px 12px rgba(200,230,74,0.3); }
.btn--accent:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(200,230,74,0.4); }
.btn--large { padding: 18px 40px; font-size: 16px; border-radius: 14px; }
.btn--sm { padding: 10px 22px; font-size: 14px; }

/* ================================ */
/* HEADER — Shopify style          */
/* ================================ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: transparent; height: 80px; transition: all var(--tr); }
.header.scrolled, .header--solid { background: rgba(0,0,0,0.85); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header__left { display: flex; align-items: center; gap: 0; }
.header__logo { font-size: 22px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 6px; letter-spacing: -0.03em; margin-right: 40px; }
.header__logo-img { height: 68px; width: auto; }
.header__nav { display: flex; gap: 32px; align-items: center; }
.btn--pill { border-radius: 100px; }
.btn--white.btn--sm { padding: 10px 24px; font-size: 14px; border: 1.5px solid rgba(255,255,255,0.3); background: #fff; color: #000; font-weight: 600; }
.header__link { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.85); transition: color var(--tr); }
.header__link::after { display: none; }
.header__link:hover, .header__link.active { color: #fff; }
.header__actions { display: flex; align-items: center; gap: 12px; }
.btn--header-ghost { background: transparent; color: rgba(255,255,255,0.85); border: none; padding: 10px 18px; font-weight: 500; font-size: 15px; }
.btn--header-ghost:hover { color: #fff; }
.btn--accent.btn--sm { border-radius: 100px; padding: 10px 24px; font-size: 14px; }
.header__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.header__burger span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--tr); }

/* ================================ */
/* HERO — Shopify style            */
/* ================================ */
.hero { min-height: 100vh; background: #000; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 0 0 80px; }
.hero__video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%,-50%); object-fit: cover; z-index: 0; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.75) 100%); z-index: 1; }
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero__left { max-width: 600px; }
.hero__title { font-family: 'ShopifySans', 'Inter', sans-serif; font-size: 86px; font-weight: 400; line-height: 1.0; letter-spacing: -0.025em; color: #fff; margin-bottom: 28px; }
.hero__subtitle { font-size: 20px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 40px; max-width: 420px; font-weight: 400; }
.hero__cta { display: flex; gap: 16px; align-items: center; }
.btn--white { background: #fff; color: #000; border-radius: 100px; font-weight: 600; }
.btn--white:hover { background: #f0f0f0; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,255,255,0.2); }
.btn--outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); border-radius: 100px; }
.btn--outline-white:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }

/* Showcase (Shopify-style 2-card section) */
.showcase { background: #0a1628; padding: 80px 0; }
.showcase__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.showcase__card { background: #111d2e; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.showcase__visual { padding: 40px 32px 0; display: flex; justify-content: center; align-items: flex-end; min-height: 380px; overflow: hidden; }
.showcase__visual--phone { background: linear-gradient(180deg, #1a3a5c 0%, #0d2240 100%); }
.showcase__info { padding: 32px 36px 36px; }
.showcase__title { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.showcase__desc { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.showcase__desc strong { color: rgba(255,255,255,0.8); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.25); text-underline-offset: 3px; }

/* Admin mock */
.admin-mock { display: flex; width: 100%; max-width: 480px; background: #fff; border-radius: 12px 12px 0 0; overflow: hidden; box-shadow: 0 -4px 30px rgba(0,0,0,0.3); height: 340px; }
.admin-mock__sidebar { width: 140px; background: #1a1a2e; padding: 16px 12px; flex-shrink: 0; }
.admin-mock__logo { margin-bottom: 20px; padding: 4px 0; }
.admin-mock__logo img { filter: brightness(10); }
.admin-mock__menu { display: flex; flex-direction: column; gap: 2px; }
.admin-mock__item { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 6px; color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 500; transition: all 0.2s; }
.admin-mock__item--active { background: rgba(255,255,255,0.1); color: #fff; }
.admin-mock__main { flex: 1; padding: 0; display: flex; flex-direction: column; }
.admin-mock__topbar { padding: 12px 16px; border-bottom: 1px solid #eee; }
.admin-mock__search-bar { display: flex; align-items: center; gap: 6px; background: #f5f5f5; border-radius: 6px; padding: 6px 10px; font-size: 11px; color: #999; }
.admin-mock__content { padding: 16px; }
.admin-mock__page-title { font-size: 14px; font-weight: 700; color: #1a1a2e; margin-bottom: 14px; }
.admin-mock__stats { display: flex; gap: 12px; }
.admin-mock__stat { flex: 1; background: #f8fafc; border: 1px solid #eee; border-radius: 8px; padding: 12px; }
.admin-mock__stat-label { display: block; font-size: 10px; color: #888; margin-bottom: 4px; }
.admin-mock__stat-value { display: block; font-size: 16px; font-weight: 700; color: #1a1a2e; }
.admin-mock__stat-change { font-size: 10px; margin-left: 4px; }
.admin-mock__stat-change--up { color: #22c55e; }
.admin-mock__sparkline { height: 24px; margin-top: 8px; border-radius: 4px; }
.admin-mock__sparkline--blue { background: linear-gradient(90deg, transparent, rgba(59,130,246,0.15)); border-bottom: 2px solid #3b82f6; }
.admin-mock__sparkline--green { background: linear-gradient(90deg, transparent, rgba(34,197,94,0.15)); border-bottom: 2px solid #22c55e; }

/* Phone mock (showcase) */
.phone-mock.phone-mock--showcase { width: 280px; background: #000; border-radius: 36px; padding: 8px; box-shadow: 0 -4px 40px rgba(0,0,0,0.4); animation: none; }
.phone-mock--showcase .phone-mock__notch { width: 100px; height: 24px; background: #000; border-radius: 0 0 16px 16px; margin: 0 auto; position: relative; top: auto; left: auto; transform: none; z-index: 2; }
.phone-mock--showcase .phone-mock__screen.phone-mock__screen--dark { background: linear-gradient(180deg, #1a3a5c, #0d1b2a); border-radius: 28px; padding: 20px 16px; min-height: 360px; }
.phone-lock { text-align: center; margin-bottom: 24px; }
.phone-lock__date { font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.phone-lock__time { font-size: 64px; font-weight: 200; color: #fff; letter-spacing: -2px; line-height: 1; }
.phone-notifs { display: flex; flex-direction: column; gap: 8px; }
.phone-notif { display: flex; gap: 10px; background: rgba(255,255,255,0.15); backdrop-filter: blur(20px); border-radius: 14px; padding: 12px; }
.phone-notif--fade { opacity: 0.5; }
.phone-notif__icon { width: 32px; height: 32px; background: #1a1a2e; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.phone-notif__icon img { border-radius: 4px; }
.phone-notif__content { flex: 1; min-width: 0; }
.phone-notif__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px; }
.phone-notif__header strong { font-size: 12px; color: #fff; }
.phone-notif__header span { font-size: 10px; color: rgba(255,255,255,0.5); }
.phone-notif__content p { font-size: 11px; color: rgba(255,255,255,0.75); line-height: 1.4; margin: 0; }

/* Hero animations */
@keyframes heroReveal { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero__title { animation: heroReveal 1.4s cubic-bezier(0.16,1,0.3,1) 0.3s both; }
.hero__subtitle { animation: heroReveal 1.4s cubic-bezier(0.16,1,0.3,1) 0.5s both; }
.hero__cta { animation: heroReveal 1.4s cubic-bezier(0.16,1,0.3,1) 0.7s both; }

/* Logos strip */
.logos-strip { padding: 48px 0; border-bottom: 1px solid var(--border-light); }
.logos-strip__label { text-align: center; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-3); margin-bottom: 24px; font-weight: 500; }
.logos-strip__row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logos-strip__row span { font-size: 17px; font-weight: 700; color: var(--text); opacity: 0.15; transition: opacity var(--tr); letter-spacing: -0.01em; }
.logos-strip__row span:hover { opacity: 0.45; }

/* ================================ */
/* SECTIONS                        */
/* ================================ */
.section { padding: 100px 0; }
.section--tinted { background: var(--bg-tint); }
.section--dark { background: linear-gradient(135deg, var(--dark) 0%, #16162e 100%); }
.section__header { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section__label { font-size: 13px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.section__title { font-size: 44px; font-weight: 800; line-height: 1.1; letter-spacing: -0.035em; color: var(--dark); margin-bottom: 16px; }
.section__subtitle { font-size: 17px; color: var(--text-2); line-height: 1.7; }
.section--dark .section__title { color: #fff; }

/* ================================ */
/* FEATURE CARDS                   */
/* ================================ */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { background: #fff; border: 1.5px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px 28px; transition: all var(--tr); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); opacity: 0; transition: opacity var(--tr); }
.feature-card:hover { border-color: rgba(92,95,235,0.2); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.feature-card:hover::before { opacity: 1; }
.feature-card__icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary-light), #f0f0ff); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 20px; }
.feature-card__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.feature-card__desc { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ================================ */
/* SPLIT SECTIONS                  */
/* ================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__label { font-size: 13px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.split__title { font-size: 38px; font-weight: 800; line-height: 1.1; letter-spacing: -0.035em; margin-bottom: 18px; }
.split__text { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.split__list { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.split__list li { font-size: 15px; color: var(--text); padding-left: 28px; position: relative; font-weight: 500; }
.split__list li::before { content: ''; position: absolute; left: 0; top: 5px; width: 16px; height: 16px; background: var(--green); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 8px; }
.split__visual { display: flex; justify-content: center; }
.split__visual--center { justify-content: center; }

/* Admin panel mockup */
.split__mockup { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); width: 100%; transition: transform var(--tr), box-shadow var(--tr); }
.split__mockup:hover { transform: translateY(-4px); box-shadow: 0 24px 80px -15px rgba(0,0,0,0.15); }
.sm__bar { display: flex; align-items: center; gap: 5px; padding: 10px 14px; background: #fafbfc; border-bottom: 1px solid var(--border-light); }
.sm__bar span:not(.sm__tab) { width: 8px; height: 8px; border-radius: 50%; background: #ddd; }
.sm__bar span:nth-child(1) { background: #ff5f57; }
.sm__bar span:nth-child(2) { background: #febc2e; }
.sm__bar span:nth-child(3) { background: #28c840; }
.sm__bar-tabs { display: flex; gap: 2px; margin-left: auto; }
.sm__tab { font-size: 8px; padding: 3px 7px; border-radius: 4px; color: var(--text-2); font-weight: 500; }
.sm__tab.active { background: var(--primary); color: #fff; }
.sm__body { min-height: 280px; }
.sm__welcome { background: linear-gradient(135deg, #0f0f1a, #1e1e3a); border-radius: 10px; padding: 14px 16px; margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; }
.sm__welcome-left { display: flex; flex-direction: column; gap: 3px; }
.sm__welcome-badge { font-size: 7px; background: var(--primary); color: #fff; padding: 2px 8px; border-radius: 100px; display: inline-block; width: fit-content; font-weight: 600; }
.sm__welcome-text { font-size: 12px; font-weight: 700; color: #fff; }
.sm__welcome-stats { display: flex; gap: 8px; }
.sm__ws { background: rgba(255,255,255,0.08); border-radius: 8px; padding: 8px 12px; text-align: center; backdrop-filter: blur(4px); }
.sm__ws-num { display: block; font-size: 12px; font-weight: 700; color: #fff; }
.sm__ws-label { font-size: 7px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.sm__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 12px; }
.sm__card { background: var(--bg-tint); border: 1px solid var(--border-light); border-radius: 10px; padding: 14px 10px; text-align: center; }
.sm__card-num { display: block; font-size: 18px; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; }
.sm__card-label { font-size: 9px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.04em; }
.sm__table-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; margin-top: 10px; }
.sm__table { display: flex; flex-direction: column; gap: 4px; }
.sm__row { height: 10px; background: #f3f3f3; border-radius: 4px; }
.sm__row:nth-child(odd) { width: 90%; }
.sm__row--data { height: auto; display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; background: #fafbfc; border: 1px solid var(--border-light); border-radius: 8px; font-size: 10px; color: var(--text); font-weight: 500; }
.sm__row-price { font-weight: 700; font-size: 10px; }
.sm__row-status { font-size: 8px; font-weight: 600; color: #22c55e; background: #dcfce7; padding: 2px 8px; border-radius: 100px; }
.sm__row-status--pending { color: #f59e0b; background: #fef3c7; }

/* Phone mock */
.phone-mock { width: 220px; background: var(--dark); border-radius: 32px; padding: 8px; position: relative; box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.1); }
.phone-mock__notch { width: 80px; height: 6px; background: var(--dark); border-radius: 0 0 10px 10px; position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 2; }
.phone-mock__screen { background: #fff; border-radius: 26px; overflow: hidden; min-height: 380px; display: flex; flex-direction: column; }
.pm__header { font-size: 14px; font-weight: 700; text-align: center; padding: 16px 0 10px; color: var(--dark); }
.pm__search { height: 28px; margin: 0 12px 12px; background: var(--bg-tint); border-radius: 8px; border: 1px solid var(--border-light); }
.pm__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 12px; flex: 1; }
.pm__img { aspect-ratio: 1; background: linear-gradient(135deg, #f8f9fc, #f1f5f9); border-radius: 10px; margin-bottom: 6px; border: 1px solid var(--border-light); }
.pm__name { height: 7px; width: 70%; background: var(--border-light); border-radius: 4px; margin-bottom: 4px; }
.pm__price { font-size: 12px; font-weight: 700; color: var(--primary); }
.pm__tab-bar { display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-light); margin-top: auto; }
.pm__tab-bar span { width: 18px; height: 18px; border-radius: 5px; background: var(--border-light); }
.pm__tab-bar span.active { background: var(--primary); }

/* Phone scene with notifications */
.phone-scene { position: relative; display: flex; justify-content: center; padding: 40px 70px; }
.notif { position: absolute; display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border-light); border-radius: 14px; padding: 12px 18px; box-shadow: var(--shadow-lg); min-width: 220px; z-index: 2; transition: all 0.6s cubic-bezier(0.34,1.56,0.64,1); }
.notif--hidden { opacity: 0; transform: translateX(40px) scale(0.9); }
.notif.notif--visible { opacity: 1; transform: translateX(0) scale(1); }
.notif--1 { top: 15px; right: -30px; }
.notif--2 { top: 110px; left: -50px; }
.notif--3 { bottom: 120px; right: -40px; }
.notif--4 { bottom: 30px; left: -40px; }
.notif__icon { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.notif__icon--green { background: #22c55e; }
.notif__icon--blue { background: #5c5feb; }
.notif__icon--accent { background: var(--accent); }
.notif__icon--pink { background: #ec4899; }
.notif__body { display: flex; flex-direction: column; }
.notif__body strong { font-size: 13px; font-weight: 600; color: var(--dark); }
.notif__body span { font-size: 11px; color: var(--text-2); }

@keyframes phoneFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.phone-scene .phone-mock { animation: phoneFloat 5s ease-in-out infinite; }

/* ================================ */
/* EPOINT SECTION                  */
/* ================================ */
.epoint-section { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 56px; box-shadow: var(--shadow-md); }
.epoint-section__header { text-align: center; margin-bottom: 40px; }
.epoint-section__logo { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px; flex-direction: column; }
.epoint-section__logo-img { height: 40px; width: auto; }
.epoint-section__brand { font-size: 24px; font-weight: 700; color: #d63384; display: block; line-height: 1; }
.epoint-section__partner-tag { font-size: 12px; font-weight: 600; color: #d63384; background: #fce7f3; padding: 4px 14px; border-radius: 100px; }
.epoint-section__title { font-size: 30px; font-weight: 800; color: var(--dark); margin-bottom: 12px; letter-spacing: -0.03em; }
.epoint-section__desc { font-size: 16px; color: var(--text-2); max-width: 520px; margin: 0 auto; }
.epoint-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1.5px solid #fce7f3; border-radius: var(--radius-lg); overflow: hidden; }
.epoint-feature { display: flex; align-items: center; gap: 14px; padding: 20px 28px; border-bottom: 1px solid #fce7f3; border-right: 1px solid #fce7f3; font-size: 14px; font-weight: 600; color: var(--text); transition: all var(--tr); }
.epoint-feature:hover { background: #fdf2f8; transform: scale(1.01); }
.epoint-feature:nth-child(even) { border-right: none; }
.epoint-feature:nth-last-child(-n+2) { border-bottom: none; }
.epoint-feature__icon { width: 40px; height: 40px; background: #fce7f3; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ================================ */
/* ANALYTICS DASHBOARD             */
/* ================================ */
.analytics-dashboard { display: flex; flex-direction: column; gap: 16px; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dash-stat { background: #fff; border: 1.5px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px; display: flex; align-items: center; gap: 16px; transition: all var(--tr); }
.dash-stat:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(92,95,235,0.15); }
.dash-stat__icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dash-stat__icon--blue { background: linear-gradient(135deg, #5c5feb, #818cf8); }
.dash-stat__icon--green { background: linear-gradient(135deg, #22c55e, #4ade80); }
.dash-stat__icon--purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.dash-stat__icon--orange { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.dash-stat__info { flex: 1; }
.dash-stat__label { display: block; font-size: 12px; color: var(--text-3); margin-bottom: 2px; font-weight: 500; }
.dash-stat__value { font-size: 24px; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; }
.dash-stat__currency { font-size: 14px; font-weight: 500; color: var(--text-2); }
.dash-stat__trend { font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.dash-stat__trend--up { background: #dcfce7; color: #16a34a; }
.dash-stat__trend--down { background: #fee2e2; color: #ef4444; }

.dash-charts { display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px; }
.dash-chart { background: #fff; border: 1.5px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px; }
.dash-chart__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.dash-chart__title { display: block; font-size: 13px; color: var(--text-3); margin-bottom: 6px; font-weight: 500; }
.dash-chart__amount { font-size: 28px; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; }
.dash-chart__tabs { display: flex; gap: 4px; }
.dash-chart__tabs button { padding: 6px 14px; border-radius: 8px; border: 1.5px solid var(--border-light); background: #fff; font-size: 12px; font-weight: 600; color: var(--text-3); cursor: pointer; transition: all var(--tr); font-family: inherit; }
.dash-chart__tabs button.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.dash-chart__body { height: 160px; margin-bottom: 10px; }
.dash-chart__body svg { width: 100%; height: 100%; }
.dash-chart__labels { display: flex; justify-content: space-between; }
.dash-chart__labels span { font-size: 11px; color: var(--text-3); font-weight: 500; }

.chart-line { stroke-dasharray: 1200; stroke-dashoffset: 1200; transition: stroke-dashoffset 2s ease; }
.chart-area { opacity: 0; transition: opacity 1.5s ease 0.5s; }
.chart-dot { opacity: 0; transition: opacity 0.5s ease 1.8s; }
.dash-chart--main.animated .chart-line { stroke-dashoffset: 0; }
.dash-chart--main.animated .chart-area { opacity: 1; }
.dash-chart--main.animated .chart-dot { opacity: 1; }

.dash-chart-col { display: flex; flex-direction: column; gap: 16px; }
.dash-chart--donut { text-align: center; }
.donut-wrap { position: relative; width: 130px; height: 130px; margin: 16px auto 14px; }
.donut-chart { width: 100%; height: 100%; }
.donut-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.donut-center__num { display: block; font-size: 22px; font-weight: 800; color: var(--dark); }
.donut-center__label { font-size: 11px; color: var(--text-3); }
.donut-legend { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.donut-legend span { font-size: 11px; color: var(--text-2); display: flex; align-items: center; gap: 5px; font-weight: 500; }
.donut-legend i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.donut-seg { stroke-dasharray: 0 314 !important; transition: stroke-dasharray 1.5s cubic-bezier(0.4,0,0.2,1); }
.dash-chart--donut.animated .donut-seg--1 { stroke-dasharray: 110 204 !important; }
.dash-chart--donut.animated .donut-seg--2 { stroke-dasharray: 75 239 !important; }
.dash-chart--donut.animated .donut-seg--3 { stroke-dasharray: 50 264 !important; }
.dash-chart--donut.animated .donut-seg--4 { stroke-dasharray: 79 235 !important; }

.bar-list { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.bar-item__info { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; font-weight: 500; }
.bar-item__val { font-weight: 700; color: var(--dark); }
.bar-item__track { height: 8px; background: var(--bg-tint); border-radius: 100px; overflow: hidden; }
.bar-item__fill { height: 100%; background: linear-gradient(90deg, #5c5feb, #818cf8); border-radius: 100px; width: 0; transition: width 1.5s cubic-bezier(0.4,0,0.2,1); }
.dash-chart--bars.animated .bar-item__fill { width: var(--bar-w); }

.dash-minis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dash-mini { background: #fff; border: 1.5px solid var(--border-light); border-radius: var(--radius-lg); padding: 22px; transition: all var(--tr); }
.dash-mini:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.dash-mini__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.dash-mini__label { font-size: 12px; color: var(--text-3); font-weight: 500; }
.dash-mini__trend { font-size: 11px; }
.dash-mini__value { display: block; font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 10px; letter-spacing: -0.02em; }
.dash-mini__spark { height: 32px; width: 100%; }
.spark-line { stroke-dasharray: 200; stroke-dashoffset: 200; transition: stroke-dashoffset 2s ease; }
.dash-mini.animated .spark-line { stroke-dashoffset: 0; }

.dash-live { background: #fff; border: 1.5px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px 28px; }
.dash-live__header { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 18px; }
.dash-live__dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: livePulse 2s infinite; }
@keyframes livePulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); } 50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34,197,94,0); } }
.dash-live__feed { display: flex; flex-direction: column; gap: 8px; }
.live-item { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-2); padding: 10px 14px; border-radius: 10px; background: var(--bg-tint); font-weight: 500; }
.live-item__time { font-size: 11px; color: var(--text-3); min-width: 60px; }
.live-item__dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.live-item strong { color: var(--text); }
.live-item--enter { animation: liveSlideIn 0.6s ease both; }
@keyframes liveSlideIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }

/* ================================ */
/* METRICS                         */
/* ================================ */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 28px 0; }
.metric { text-align: center; }
.metric__number { display: block; font-size: 48px; font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 6px; }
.metric__label { font-size: 15px; color: rgba(255,255,255,0.45); font-weight: 500; }

/* ================================ */
/* STEPS                           */
/* ================================ */
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 24px; }
.step { text-align: center; max-width: 260px; }
.step__num { width: 52px; height: 52px; border-radius: 50%; background: var(--bg); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: var(--primary); margin: 0 auto 18px; box-shadow: var(--shadow); }
.step__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step__desc { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.step__arrow { display: flex; align-items: center; padding-top: 14px; }

/* ================================ */
/* TESTIMONIALS                    */
/* ================================ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { background: #fff; border: 1.5px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px; transition: all var(--tr); }
.testimonial:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial__text { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0; }
.testimonial__author strong { display: block; font-size: 14px; font-weight: 600; }
.testimonial__author span { font-size: 12px; color: var(--text-3); }

/* ================================ */
/* CTA                             */
/* ================================ */
.cta-section { padding: 48px 0 100px; }
.cta-block { background: linear-gradient(135deg, #0f0f1a 0%, #1e1e3a 50%, #0f0f1a 100%); border-radius: var(--radius-xl); padding: 80px 48px; text-align: center; position: relative; overflow: hidden; background-size: 400% 400%; animation: ctaShimmer 10s ease infinite; }
@keyframes ctaShimmer { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.cta-block__x { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.cta-block__title { font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -0.035em; }
.cta-block__desc { font-size: 17px; color: rgba(255,255,255,0.45); margin-bottom: 36px; }
.cta-block__actions { display: flex; justify-content: center; gap: 14px; }

/* ================================ */
/* FAQ                             */
/* ================================ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1.5px solid var(--border-light); border-radius: var(--radius); overflow: hidden; background: #fff; transition: all var(--tr); }
.faq-item:hover { border-color: rgba(92,95,235,0.2); box-shadow: var(--shadow); }
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.faq-item__question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--text); background: none; border: none; width: 100%; text-align: left; font-family: inherit; letter-spacing: -0.01em; }
.faq-item__icon { color: var(--text-3); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-item__icon { transform: rotate(180deg); color: var(--primary); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-item__answer { max-height: 200px; }
.faq-item__answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--text-2); line-height: 1.8; }

/* ================================ */
/* PORTFOLIO                       */
/* ================================ */
.portfolio { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.portfolio-card { background: #fff; border: 1.5px solid var(--border-light); border-radius: var(--radius-xl); overflow: hidden; transition: all var(--tr); }
.portfolio-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.portfolio-card__preview { padding: 24px 24px 0; }
.portfolio-card__browser { background: #fafbfc; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.portfolio-card__browser-bar { display: flex; align-items: center; gap: 5px; padding: 10px 14px; background: #f3f4f6; border-bottom: 1px solid var(--border-light); }
.portfolio-card__browser-bar > span { width: 8px; height: 8px; border-radius: 50%; }
.portfolio-card__browser-bar > span:nth-child(1) { background: #ff5f57; }
.portfolio-card__browser-bar > span:nth-child(2) { background: #febc2e; }
.portfolio-card__browser-bar > span:nth-child(3) { background: #28c840; }
.portfolio-card__url { margin-left: auto; font-size: 11px; color: var(--text-3); background: #fff; padding: 3px 10px; border-radius: 4px; border: 1px solid var(--border-light); }
.portfolio-card__screenshot { padding: 12px; min-height: 190px; }
.ps__hero { height: 75px; border-radius: 8px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.portfolio-card__screenshot--gnl .ps__hero { background: linear-gradient(135deg, #f5f0eb, #e8e0d8); }
.ps__hero--red { background: linear-gradient(135deg, #fee2e2, #fecaca) !important; }
.ps__hero-text { font-size: 13px; font-weight: 800; color: var(--dark); letter-spacing: 0.06em; text-transform: uppercase; }
.ps__title { font-size: 11px; font-weight: 700; text-align: center; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); }
.ps__products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.ps__img { aspect-ratio: 0.8; background: #f0ece8; border-radius: 6px; margin-bottom: 4px; }
.ps__img--light { background: #f5f5f5; }
.ps__price { font-size: 10px; font-weight: 700; color: var(--text); }
.portfolio-card__info { padding: 24px 28px 28px; }
.portfolio-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.portfolio-card__name { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.portfolio-card__tag { font-size: 12px; font-weight: 600; color: var(--text-2); background: var(--bg-tint); padding: 5px 14px; border-radius: 100px; }
.portfolio-card__desc { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 18px; }
.portfolio-card__apps { display: flex; gap: 10px; }
.app-badge { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; background: var(--dark); color: #fff; border-radius: 10px; font-size: 12px; font-weight: 600; transition: all var(--tr); }
.app-badge:hover { background: #2d2d4e; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ================================ */
/* DOMAIN                          */
/* ================================ */
.domain-visual { max-width: 400px; margin: 0 auto; }
.dv__search { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; font-size: 16px; font-weight: 600; color: var(--text); box-shadow: var(--shadow-md); }
.dv__results { display: flex; flex-direction: column; gap: 8px; }
.dv__result { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; background: #fff; border: 1.5px solid var(--border-light); border-radius: var(--radius); font-size: 15px; font-weight: 500; color: var(--text); box-shadow: var(--shadow); transition: all var(--tr); }
.dv__result:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.dv__ext { padding: 4px 14px; border-radius: 100px; font-size: 13px; font-weight: 700; }
.dv__ext--az { background: #dbeafe; color: #1d4ed8; }
.dv__ext--com { background: #dcfce7; color: #16a34a; }
.dv__ext--net { background: #fef3c7; color: #d97706; }
.dv__ext--store { background: #ede9fe; color: #7c3aed; }

/* ================================ */
/* GUIDE CARDS                     */
/* ================================ */
.guides-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.guide-card { border: 1.5px solid var(--border-light); border-radius: var(--radius-xl); overflow: hidden; background: #fff; transition: all var(--tr); }
.guide-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.guide-card__cover { padding: 32px 28px; min-height: 210px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.guide-card--blue .guide-card__cover { background: linear-gradient(135deg, #dbeafe, #bfdbfe); border-left: 4px solid #3b82f6; }
.guide-card--purple .guide-card__cover { background: linear-gradient(135deg, #ede9fe, #ddd6fe); border-left: 4px solid #8b5cf6; }
.guide-card--yellow .guide-card__cover { background: linear-gradient(135deg, #fef9c3, #fde68a); border-left: 4px solid #eab308; }
.guide-card--green .guide-card__cover { background: linear-gradient(135deg, #dcfce7, #bbf7d0); border-left: 4px solid #22c55e; }
.guide-card__cover::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%); transform: translateX(-100%); transition: transform 0.8s; }
.guide-card:hover .guide-card__cover::after { transform: translateX(30%); }
.guide-card__x-mark { position: absolute; top: 18px; right: 18px; }
.guide-card__title { font-size: 18px; font-weight: 800; color: var(--dark); line-height: 1.3; margin-bottom: 6px; }
.guide-card__sub { font-size: 13px; color: var(--text-2); font-weight: 500; }
.guide-card__download { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px; font-size: 14px; font-weight: 600; color: var(--text); border-top: 1px solid var(--border-light); transition: all var(--tr); }
.guide-card__download:hover { color: var(--primary); background: var(--primary-light); }

/* ================================ */
/* SUPPORT SECTION                 */
/* ================================ */
.support-section { padding: 72px 0; }
.support { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; background: var(--bg-lavender); border-radius: var(--radius-xl); padding: 64px 56px; overflow: hidden; }
.support__badge { display: inline-block; padding: 8px 18px; background: #fff; border: 1.5px solid var(--border); border-radius: 100px; font-size: 14px; font-weight: 600; color: var(--text-2); margin-bottom: 22px; }
.support__title { font-size: 38px; font-weight: 800; line-height: 1.1; letter-spacing: -0.035em; margin-bottom: 28px; color: var(--dark); }
.support__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.support__visual { display: flex; justify-content: center; align-items: center; position: relative; min-height: 290px; }
.support__circles { position: relative; width: 270px; height: 270px; }
.support__circle { position: absolute; border-radius: 50%; border: 1.5px solid rgba(92,95,235,0.12); }
.support__circle--lg { width: 270px; height: 270px; top: 0; left: 0; }
.support__circle--md { width: 185px; height: 185px; top: 42px; left: 42px; }
.support__circle--sm { width: 100px; height: 100px; top: 85px; left: 85px; }
.support__person { width: 52px; height: 52px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 700; color: #fff; position: absolute; border: 3px solid #fff; box-shadow: var(--shadow-md); }
.support__person--1 { top: -12px; left: 105px; background: #6366f1; }
.support__person--2 { top: 72px; right: -18px; background: #ec4899; }
.support__person--3 { bottom: 42px; left: -12px; background: #f59e0b; }
.support__person--4 { bottom: -12px; right: 32px; background: #10b981; }
.support__emoji { position: absolute; width: 30px; height: 30px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.support__emoji--1 { top: 32px; left: 42px; }
.support__emoji--2 { top: 52px; right: 12px; }

@keyframes floatPerson1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(4px,-8px); } }
@keyframes floatPerson2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-6px,5px); } }
@keyframes floatPerson3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(4px,6px); } }
@keyframes floatPerson4 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-5px,-4px); } }
.support__person--1 { animation: floatPerson1 4s ease-in-out infinite; }
.support__person--2 { animation: floatPerson2 5s ease-in-out infinite; }
.support__person--3 { animation: floatPerson3 4.5s ease-in-out infinite; }
.support__person--4 { animation: floatPerson4 3.5s ease-in-out infinite; }
@keyframes emojiSpin { 0%,100% { transform: rotate(0deg) scale(1); } 50% { transform: rotate(12deg) scale(1.08); } }
.support__emoji { animation: emojiSpin 3s ease-in-out infinite; }
.support__emoji--2 { animation-delay: 1.5s; }

/* ================================ */
/* FOOTER                          */
/* ================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer__logo { font-size: 22px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.footer__logo-img { height: 30px; width: auto; filter: brightness(10); }
.footer__desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); transition: all var(--tr); }
.footer__social a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer__title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.45); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer__col { display: flex; flex-direction: column; }
.footer__link { font-size: 14px; color: rgba(255,255,255,0.3); padding: 5px 0; transition: all var(--tr); }
.footer__link:hover { color: #fff; transform: translateX(3px); }
.footer__bottom { padding-top: 32px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.15); }

/* ================================ */
/* CONTACT                         */
/* ================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select { padding: 14px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 15px; font-family: inherit; outline: none; transition: all var(--tr); background: #fff; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(92,95,235,0.1); }
.form-group textarea { min-height: 130px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info__item { display: flex; gap: 16px; }
.contact-info__icon { width: 44px; height: 44px; background: var(--bg-tint); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-info__text h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.contact-info__text p { font-size: 14px; color: var(--text-2); }

/* ================================ */
/* PRICING                         */
/* ================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card { background: #fff; border: 1.5px solid var(--border-light); border-radius: var(--radius-xl); padding: 36px; position: relative; transition: all var(--tr); }
.pricing-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.pricing-card--popular { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.pricing-card--popular::before { content: 'Populyar'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 4px 18px; border-radius: 100px; font-size: 12px; font-weight: 700; }
.pricing-card__name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.pricing-card__desc { font-size: 14px; color: var(--text-2); margin-bottom: 24px; }
.pricing-card__price { font-size: 44px; font-weight: 800; color: var(--dark); margin-bottom: 4px; letter-spacing: -0.03em; }
.pricing-card__price span { font-size: 16px; font-weight: 500; color: var(--text-2); }
.pricing-card__period { font-size: 13px; color: var(--text-3); margin-bottom: 32px; }
.pricing-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-card__feature { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.pricing-card__feature::before { content: ''; width: 16px; height: 16px; background: var(--green); border-radius: 50%; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 8px; }
.pricing-card .btn { width: 100%; }

/* ================================ */
/* ANIMATIONS                      */
/* ================================ */
.fade-in { opacity: 0; transform: translateY(28px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }
.stagger-7 { transition-delay: 0.35s; }
.stagger-8 { transition-delay: 0.4s; }

.slide-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.slide-right { opacity: 0; transform: translateX(50px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.slide-left.visible, .slide-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.9); transition: all 0.7s cubic-bezier(0.16,1,0.3,1); }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* Hero animations */
@keyframes heroReveal { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero__badge { animation: heroReveal 1s cubic-bezier(0.16,1,0.3,1) 0s both; }
.hero__title { animation: heroReveal 1s cubic-bezier(0.16,1,0.3,1) 0.15s both; }
.hero__subtitle { animation: heroReveal 1s cubic-bezier(0.16,1,0.3,1) 0.3s both; }
.hero__cta { animation: heroReveal 1s cubic-bezier(0.16,1,0.3,1) 0.45s both; }

@keyframes stepPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(92,95,235,0.15); } 50% { box-shadow: 0 0 0 12px rgba(92,95,235,0); } }
.step__num { animation: stepPulse 3s ease infinite; }

@keyframes domainFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.dv__result:nth-child(1) { animation: domainFloat 3s ease-in-out infinite; }
.dv__result:nth-child(2) { animation: domainFloat 3s ease-in-out 0.3s infinite; }
.dv__result:nth-child(3) { animation: domainFloat 3s ease-in-out 0.6s infinite; }
.dv__result:nth-child(4) { animation: domainFloat 3s ease-in-out 0.9s infinite; }

/* Epoint stagger */
.epoint-feature { opacity: 0; transform: translateY(12px); transition: all 0.5s cubic-bezier(0.16,1,0.3,1); }
.epoint-section.animated .epoint-feature { opacity: 1; transform: translateY(0); }
.epoint-section.animated .epoint-feature:nth-child(1) { transition-delay: 0s; }
.epoint-section.animated .epoint-feature:nth-child(2) { transition-delay: 0.05s; }
.epoint-section.animated .epoint-feature:nth-child(3) { transition-delay: 0.1s; }
.epoint-section.animated .epoint-feature:nth-child(4) { transition-delay: 0.15s; }
.epoint-section.animated .epoint-feature:nth-child(5) { transition-delay: 0.2s; }
.epoint-section.animated .epoint-feature:nth-child(6) { transition-delay: 0.25s; }
.epoint-section.animated .epoint-feature:nth-child(7) { transition-delay: 0.3s; }
.epoint-section.animated .epoint-feature:nth-child(8) { transition-delay: 0.35s; }
.epoint-section.animated .epoint-feature:nth-child(9) { transition-delay: 0.4s; }
.epoint-section.animated .epoint-feature:nth-child(10) { transition-delay: 0.45s; }

@keyframes logosScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ================================ */
/* RESPONSIVE                      */
/* ================================ */
@media (max-width: 1024px) {
    .hero__title { font-size: 56px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .guides-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__top { grid-template-columns: 1fr 1fr 1fr; }
    .dash-stats { grid-template-columns: repeat(2, 1fr); }
    .dash-charts { grid-template-columns: 1fr; }
    .dash-minis { grid-template-columns: repeat(2, 1fr); }
    .sm__bar-tabs { display: none; }
}
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .showcase__grid { grid-template-columns: 1fr; }
    .showcase__visual { min-height: 300px; }
    .header__nav, .header__actions { display: none; }
    .header__burger { display: flex; }
    .header__nav.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(0,0,0,0.95); backdrop-filter: blur(20px); padding: 20px 24px 28px; gap: 4px; }
    .header__nav.open .header__link { padding: 14px 0; font-size: 18px; color: rgba(255,255,255,0.7); font-weight: 400; }
    .header__actions.open { display: flex; position: fixed; top: auto; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.95); padding: 16px 24px 32px; }
    .hero { min-height: 85vh; padding: 0 0 60px; }
    .hero__title { font-size: 44px; }
    .hero__cta { flex-direction: column; align-items: flex-start; }
    .section { padding: 64px 0; }
    .section__title { font-size: 28px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .split { grid-template-columns: 1fr; gap: 36px; }
    .split--reverse { direction: ltr; }
    .split__title { font-size: 28px; }
    .metrics { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .metric__number { font-size: 32px; }
    .steps { flex-direction: column; align-items: center; }
    .step__arrow { transform: rotate(90deg); }
    .testimonials { grid-template-columns: 1fr; }
    .portfolio { grid-template-columns: 1fr; }
    .guides-grid { grid-template-columns: 1fr 1fr; }
    .epoint-section { padding: 32px 24px; }
    .epoint-features { grid-template-columns: 1fr; }
    .epoint-feature { border-right: none !important; }
    .support { grid-template-columns: 1fr; padding: 36px 28px; }
    .support__visual { min-height: 230px; }
    .cta-block { padding: 48px 28px; }
    .cta-block__title { font-size: 28px; }
    .cta-block__actions { flex-direction: column; align-items: center; }
    .pricing-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 24px; }
    .dash-stats { grid-template-columns: 1fr 1fr; }
    .dash-charts { grid-template-columns: 1fr; }
    .dash-minis { grid-template-columns: 1fr 1fr; }
    .phone-scene { padding: 48px 24px; }
    .notif--1 { right: -10px; }
    .notif--2 { left: -10px; }
    .notif--3 { right: -10px; }
    .notif--4 { left: -10px; }
    .notif { min-width: 190px; padding: 10px 14px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__title { font-size: 36px; }
    .section__title { font-size: 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .metrics { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; }
    .dash-stats { grid-template-columns: 1fr; }
    .dash-minis { grid-template-columns: 1fr; }
    .notif { min-width: 170px; }
    .guides-grid { grid-template-columns: 1fr; }
    .auth { flex-direction: column; }
    .auth__right { display: none; }
    .auth__left { padding: 40px 20px; }
    .auth__row { flex-direction: column; }
}

/* ===== Auth Pages ===== */
.auth { display: flex; min-height: 100vh; }
.auth__left { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 60px 40px; background: #fff; }
.auth__brand { position: absolute; top: 32px; left: 40px; }
.auth__brand img { filter: brightness(0); }
.auth__form-wrap { width: 100%; max-width: 420px; }
.auth__icon-wrap { width: 56px; height: 56px; background: rgba(200,230,74,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.auth__title { font-size: 32px; font-weight: 700; color: var(--dark); margin-bottom: 8px; letter-spacing: -0.02em; }
.auth__subtitle { font-size: 15px; color: var(--text-2); margin-bottom: 32px; line-height: 1.5; }
.auth__form { display: flex; flex-direction: column; gap: 20px; }
.auth__row { display: flex; gap: 16px; }
.auth__row .auth__field { flex: 1; }
.auth__field { display: flex; flex-direction: column; gap: 6px; }
.auth__label { font-size: 13px; font-weight: 600; color: var(--dark); }
.auth__input { padding: 14px 16px; border: 1.5px solid #e2e8f0; border-radius: 10px; font-size: 15px; font-family: inherit; color: var(--dark); background: #f8fafc; transition: all 0.2s; outline: none; }
.auth__input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(200,230,74,0.15); }
.auth__input::placeholder { color: #a0aec0; }
.auth__options { display: flex; justify-content: space-between; align-items: center; margin-top: -4px; }
.auth__checkbox { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2); cursor: pointer; }
.auth__checkbox input { width: 16px; height: 16px; accent-color: var(--primary); cursor: pointer; }
.auth__forgot { font-size: 13px; color: var(--primary); font-weight: 500; }
.auth__forgot:hover { text-decoration: underline; }
.btn--full { width: 100%; justify-content: center; margin-top: 4px; }
.auth__divider { display: flex; align-items: center; gap: 16px; margin: 24px 0; }
.auth__divider::before, .auth__divider::after { content: ''; flex: 1; height: 1px; background: #e2e8f0; }
.auth__divider span { font-size: 13px; color: #a0aec0; white-space: nowrap; }
.auth__social { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 14px; border: 1.5px solid #e2e8f0; border-radius: 10px; background: #fff; font-size: 15px; font-weight: 500; color: var(--dark); cursor: pointer; font-family: inherit; transition: all 0.2s; }
.auth__social:hover { border-color: #cbd5e1; background: #f8fafc; }
.auth__switch { text-align: center; margin-top: 28px; font-size: 14px; color: var(--text-2); }
.auth__switch a { color: var(--primary); font-weight: 600; }
.auth__switch a:hover { text-decoration: underline; }

/* Auth right panel */
.auth__right { flex: 1; background: linear-gradient(135deg, #0a1628 0%, #1a2d45 50%, #0f1d30 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.auth__right::before { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(200,230,74,0.08) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.auth__right-content { position: relative; z-index: 1; text-align: center; max-width: 400px; padding: 40px; }
.auth__right-title { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: -0.02em; }
.auth__right-desc { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* Auth responsive */
@media (max-width: 1024px) {
    .auth__right { display: none; }
}
@media (max-width: 768px) {
    .auth__left { padding: 80px 24px 40px; }
    .auth__brand { left: 24px; top: 24px; }
    .auth__row { flex-direction: column; }
}

/* Auth error */
.auth__error { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; padding: 12px 16px; border-radius: 10px; font-size: 14px; margin-bottom: 8px; }

/* ===== Dashboard ===== */
.dash-page { display: flex; min-height: 100vh; background: #f8fafc; }
.dash-sidebar { width: 260px; background: #0f172a; display: flex; flex-direction: column; padding: 24px 16px; flex-shrink: 0; position: fixed; top: 0; bottom: 0; left: 0; z-index: 50; }
.dash-sidebar__logo { padding: 0 8px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 16px; }
.dash-sidebar__logo img { filter: brightness(10); }
.dash-sidebar__nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.dash-sidebar__link { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.5); transition: all 0.2s; }
.dash-sidebar__link:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.05); }
.dash-sidebar__link--active { color: #fff; background: rgba(255,255,255,0.1); }
.dash-sidebar__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; display: flex; align-items: center; justify-content: space-between; }
.dash-sidebar__user { display: flex; align-items: center; gap: 10px; }
.dash-sidebar__avatar { width: 36px; height: 36px; background: var(--primary); color: #000; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.dash-sidebar__user-info { display: flex; flex-direction: column; }
.dash-sidebar__user-name { font-size: 13px; font-weight: 600; color: #fff; }
.dash-sidebar__user-email { font-size: 11px; color: rgba(255,255,255,0.4); }
.dash-sidebar__logout { background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; padding: 8px; border-radius: 6px; transition: all 0.2s; }
.dash-sidebar__logout:hover { color: #ef4444; background: rgba(239,68,68,0.1); }

.dash-main { flex: 1; margin-left: 260px; padding: 32px 40px; }
.dash-main__header { margin-bottom: 32px; }
.dash-main__title { font-size: 26px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.dash-main__subtitle { font-size: 14px; color: var(--text-2); }
.dash-main__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.dash-main__card { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 24px; }
.dash-main__card-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.dash-main__card-label { display: block; font-size: 13px; color: var(--text-2); margin-bottom: 4px; }
.dash-main__card-value { display: block; font-size: 24px; font-weight: 700; color: var(--dark); }
.dash-main__empty { background: #fff; border: 2px dashed #e2e8f0; border-radius: 14px; padding: 60px 40px; text-align: center; }
.dash-main__empty svg { margin-bottom: 16px; }
.dash-main__empty h3 { font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.dash-main__empty p { font-size: 14px; color: var(--text-2); max-width: 360px; margin: 0 auto; }

@media (max-width: 1024px) {
    .dash-main__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .dash-sidebar { width: 100%; position: relative; height: auto; padding: 16px; }
    .dash-sidebar__nav { flex-direction: row; flex-wrap: wrap; gap: 4px; }
    .dash-page { flex-direction: column; }
    .dash-main { margin-left: 0; padding: 24px 16px; }
    .dash-main__cards { grid-template-columns: 1fr; }
    .plan-select { flex-direction: column; }
    .design-select { grid-template-columns: repeat(2, 1fr); }
}

/* Dashboard sections */
.dash-alert { padding: 14px 20px; border-radius: 10px; font-size: 14px; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.dash-alert--success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #16a34a; }
.dash-section { margin-bottom: 40px; }
.dash-section__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.dash-section__title { font-size: 20px; font-weight: 700; color: var(--dark); }
.dash-main__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; }

/* Sites */
.dash-sites { display: flex; flex-direction: column; gap: 16px; }
.dash-site { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 24px; }
.dash-site__info { margin-bottom: 16px; }
.dash-site__name { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.dash-site__name strong { font-size: 18px; color: var(--dark); }
.dash-site__domains { display: flex; flex-direction: column; gap: 4px; }
.dash-site__subdomain { font-size: 14px; color: var(--primary); font-weight: 500; }
.dash-site__domain { font-size: 14px; color: var(--text-2); display: flex; align-items: center; gap: 8px; }
.dash-site__dns { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; padding: 14px 18px; margin-bottom: 14px; }
.dash-site__dns-label { font-size: 12px; font-weight: 600; color: var(--text-2); margin-bottom: 6px; display: block; }
.dash-site__dns code { display: inline-block; background: #0f172a; color: #c8e64a; padding: 4px 10px; border-radius: 4px; font-size: 13px; margin-right: 8px; }
.dash-site__domain-form { display: flex; gap: 10px; align-items: center; }
.dash-site__domain-form .auth__input { flex: 1; }
.dash-dns-info { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 16px; }
.dash-dns-info strong { font-size: 13px; color: var(--dark); display: block; margin-bottom: 6px; }
.dash-dns-info p { font-size: 13px; color: var(--text-2); margin-bottom: 8px; }
.dash-dns-info code { display: inline-block; background: #0f172a; color: #c8e64a; padding: 4px 10px; border-radius: 4px; font-size: 13px; margin-right: 8px; margin-bottom: 4px; }

/* Orders */
.dash-orders { display: flex; flex-direction: column; gap: 12px; }
.dash-order { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; }
.dash-order__plan { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--primary); display: block; margin-bottom: 2px; }
.dash-order__biz { font-size: 16px; font-weight: 600; color: var(--dark); display: block; }
.dash-order__design { font-size: 12px; color: var(--text-2); display: block; margin-top: 2px; }
.dash-order__right { text-align: right; display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.dash-order__date { font-size: 12px; color: var(--text-2); }

/* Badge */
.dash-badge { display: inline-block; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 600; }
.dash-badge--sm { padding: 2px 6px; font-size: 10px; }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; }
.modal.open { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); }
.modal__content { position: relative; background: #fff; border-radius: 16px; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.modal__content--lg { max-width: 680px; }
.modal__header { display: flex; justify-content: space-between; align-items: center; padding: 24px 28px 0; }
.modal__title { font-size: 20px; font-weight: 700; color: var(--dark); }
.modal__close { background: none; border: none; font-size: 28px; color: var(--text-2); cursor: pointer; padding: 0; line-height: 1; }
.modal__body { padding: 24px 28px; }
.modal__footer { padding: 16px 28px 24px; display: flex; justify-content: flex-end; gap: 12px; border-top: 1px solid #e2e8f0; }
.modal__section { margin-bottom: 28px; }
.modal__section:last-child { margin-bottom: 0; }
.modal__section-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }

/* Plan select */
.plan-select { display: flex; gap: 12px; }
.plan-option { flex: 1; cursor: pointer; }
.plan-option input { display: none; }
.plan-option__card { border: 2px solid #e2e8f0; border-radius: 12px; padding: 18px 16px; text-align: center; transition: all 0.2s; position: relative; }
.plan-option__card--popular { border-color: var(--primary); }
.plan-option__badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #000; font-size: 10px; font-weight: 700; padding: 2px 10px; border-radius: 20px; white-space: nowrap; }
.plan-option input:checked + .plan-option__card { border-color: var(--primary); background: rgba(200,230,74,0.05); box-shadow: 0 0 0 3px rgba(200,230,74,0.15); }
.plan-option__card strong { display: block; font-size: 16px; color: var(--dark); margin-bottom: 4px; }
.plan-option__price { display: block; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 4px; }
.plan-option__desc { display: block; font-size: 11px; color: var(--text-2); }

/* Design select */
.design-select { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.design-option { cursor: pointer; }
.design-option input { display: none; }
.design-option__card { border: 2px solid #e2e8f0; border-radius: 10px; overflow: hidden; transition: all 0.2s; text-align: center; }
.design-option input:checked + .design-option__card { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(200,230,74,0.15); }
.design-option__preview { height: 80px; }
.design-option__card span { display: block; padding: 8px; font-size: 12px; font-weight: 600; color: var(--dark); }

/* Stats panel */
.dash-stats-panel { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 24px; margin-bottom: 16px; }
.dash-stats-panel__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #f1f5f9; }
.dash-stats-panel__header strong { font-size: 16px; color: var(--dark); }
.dash-stats-panel__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dash-stats-panel__item { }
.dash-stats-panel__label { display: block; font-size: 12px; color: var(--text-2); margin-bottom: 4px; }
.dash-stats-panel__value { display: block; font-size: 18px; font-weight: 700; color: var(--dark); }
.dash-stats-panel__value--muted { color: var(--text-3); font-weight: 400; font-size: 14px; }
.dash-progress { height: 6px; background: #f1f5f9; border-radius: 3px; margin-top: 8px; overflow: hidden; }
.dash-progress__bar { height: 100%; background: var(--primary); border-radius: 3px; transition: width 0.5s ease; }

/* Site cards */
.dash-site__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.dash-site__phone { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-2); margin-bottom: 8px; }
.dash-site__delete { background: none; border: none; color: var(--text-3); cursor: pointer; padding: 8px; border-radius: 8px; transition: all 0.2s; }
.dash-site__delete:hover { color: #ef4444; background: rgba(239,68,68,0.08); }

/* Marketplace */
.dash-marketplace { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.dash-module { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 24px; display: flex; align-items: center; gap: 16px; transition: all 0.2s; }
.dash-module:hover { box-shadow: var(--shadow-md); border-color: rgba(92,95,235,0.15); }
.dash-module__icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dash-module__info { flex: 1; }
.dash-module__info strong { display: block; font-size: 15px; color: var(--dark); margin-bottom: 2px; }
.dash-module__info p { font-size: 13px; color: var(--text-2); line-height: 1.4; }
.dash-module__price { font-size: 14px; font-weight: 700; color: var(--primary); white-space: nowrap; }

/* Profile */
.dash-profile { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 32px; }
.dash-profile__avatar-section { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid #f1f5f9; }
.dash-profile__avatar { width: 72px; height: 72px; border-radius: 14px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; flex-shrink: 0; overflow: hidden; }
.dash-profile__avatar img { width: 100%; height: 100%; object-fit: cover; }
.dash-profile__fields { display: flex; flex-direction: column; gap: 16px; }
.dash-section__subtitle-inline { font-size: 14px; color: var(--text-2); }

@media (max-width: 1024px) {
    .dash-stats-panel__grid { grid-template-columns: repeat(2, 1fr); }
    .dash-marketplace { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .dash-stats-panel__grid { grid-template-columns: 1fr; }
}
