/* ============================================================ DK PORTFOLIO — DESIGN SYSTEM ============================================================ */
:root {
  /* — Colors — */
  --bg-deep: #030014;
  --bg-card: rgba(10, 10, 30, 0.6);
  --bg-card-hover: rgba(20, 20, 50, 0.8);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(0, 82, 255, 0.35);

  --accent: #0052FF;
  --accent-glow: rgba(0, 82, 255, 0.4);
  --accent-hover: #003dd6;
  --accent-light: #0a8fff;

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.45);

  /* — Typography — */
  --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
  --fs-400: 0.95rem;
  --fs-500: 1.1rem;
  --fs-600: 1.25rem;
  --fs-700: 1.8rem;
  --fs-800: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  --fs-900: clamp(2.6rem, 1.8rem + 4vw, 4.2rem);

  /* — Spacing & Radius — */
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-20: 5rem;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* — Shadows & Glass — */
  --shadow-glow: 0 0 40px var(--accent-glow), 0 0 80px rgba(0, 82, 255, 0.1);
  --glass-blur: saturate(180%) blur(20px);
}

/* ============================================================ 1. RESET & BASE ============================================================ */
*, ::before, ::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-font-smoothing: antialiased; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .hero-fade { opacity: 1 !important; transform: none !important; }
}

body { font-family: var(--font-sans); font-weight: 400; background-color: var(--bg-deep); color: var(--text-primary); line-height: 1.65; min-height: 100vh; overflow-x: hidden; }

body::before, body::after { content: ''; position: fixed; z-index: -1; width: 600px; height: 600px; border-radius: 50%; filter: blur(120px); opacity: 0.15; pointer-events: none; }
body::before { background: var(--accent); top: -200px; left: -200px; }
body::after { background: #7000ff; bottom: -200px; right: -200px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-6); }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

/* ============================================================ 2. BUTTONS ============================================================ */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: var(--radius-full); font-weight: 600; font-size: var(--fs-500); border: 1px solid transparent; cursor: pointer; transition: all 0.3s ease; text-align: center; overflow: hidden; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 4px 20px var(--accent-glow); }
.btn--primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 45%, transparent 60%); transform: translateX(-120%); transition: transform 0.6s ease; }
.btn--primary:hover::before { transform: translateX(120%); }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.btn--outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--outline:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn--xl { padding: 1.25rem 3rem; font-size: 1.2rem; margin-top: 1.5rem; }
.btn--block { width: 100%; }

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

/* ============================================================ 3. HEADER ============================================================ */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; padding: 1rem 0; transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s, box-shadow 0.3s; border-bottom: 1px solid transparent; }
.header.scrolled { background: rgba(3, 0, 20, 0.8); backdrop-filter: var(--glass-blur); border-bottom-color: var(--border); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); }
.header__inner { display: flex; align-items: center; justify-content: flex-start; gap: 1rem; }
.header__inner .nav { margin-left: auto; display: flex; align-items: center; }

.logo__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); box-shadow: 0 0 15px var(--accent-glow); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.logo:hover .logo__avatar { transform: scale(1.08) rotate(-4deg); box-shadow: 0 0 25px var(--accent-glow); }

.nav__list { display: flex; list-style: none; gap: 1.5rem; }
.nav__link { position: relative; color: var(--text-secondary); font-size: var(--fs-500); font-weight: 500; transition: color 0.2s; padding-bottom: 4px; }
.nav__link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--accent-light); transition: width 0.3s ease; }
.nav__link:hover, .nav__link.active { color: var(--text-primary); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav__toggle-line { width: 24px; height: 2px; background: #fff; transition: transform 0.25s ease, opacity 0.25s ease; }

/* ============================================================ 3.1. LANGUAGE SWITCHER ============================================================ */
.lang-switch { position: relative; flex-shrink: 0; }
.lang-switch__btn { display: flex; align-items: center; gap: 0.4rem; padding: 0.5rem 0.85rem; border-radius: var(--radius-full); background: var(--bg-card); border: 1px solid var(--border); color: var(--text-primary); font-family: var(--font-sans); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.02em; cursor: pointer; backdrop-filter: var(--glass-blur); transition: border-color 0.25s ease, background 0.25s ease; }
.lang-switch__btn:hover, .lang-switch__btn[aria-expanded="true"] { border-color: var(--border-hover); background: var(--bg-card-hover); }
.lang-switch__btn svg { transition: transform 0.25s ease; opacity: 0.7; }
.lang-switch__btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.lang-switch__menu { position: absolute; top: calc(100% + 0.6rem); right: 0; list-style: none; min-width: 168px; padding: 0.4rem; border-radius: var(--radius-md); background: rgba(10, 10, 30, 0.92); border: 1px solid var(--border); backdrop-filter: var(--glass-blur); box-shadow: 0 20px 45px rgba(0,0,0,0.45); z-index: 200; }
.lang-switch__menu[hidden] { display: none; }
.lang-switch__option { width: 100%; display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.7rem; border-radius: 8px; background: none; border: none; color: var(--text-secondary); font-family: var(--font-sans); font-size: 0.9rem; text-align: left; cursor: pointer; transition: background 0.2s ease, color 0.2s ease; }
.lang-switch__option:hover { background: rgba(255,255,255,0.06); color: var(--text-primary); }
.lang-switch__option.is-active { color: var(--text-primary); background: rgba(0, 82, 255, 0.14); }
.lang-switch__code { font-weight: 700; color: var(--accent-light); width: 26px; flex-shrink: 0; }
.lang-switch__name { font-weight: 400; }

@media (max-width: 768px) {
  .lang-switch__menu { right: -0.5rem; }
}

/* ============================================================ 4. HERO SECTION ============================================================ */
.hero { padding-top: 140px; min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 2.5rem; align-items: center; width: 100%; position: relative; z-index: 1; }
.hero__content, .hero-media-box { min-width: 0; }
.hero__title { font-size: var(--fs-900); font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem; }
.hero__title-brand { font-family: var(--font-sans); font-size: 0.5em; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-secondary); display: inline-block; margin-bottom: 0.6em; }
.hero__title-headline { font-family: var(--font-sans); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.05; display: inline-block; font-size: 0.82em; overflow-wrap: break-word; word-break: break-word; max-width: 100%; }
.hero__offer { font-size: var(--fs-500); font-weight: 400; color: var(--text-secondary); max-width: 480px; margin-bottom: 2rem; }
.hero__cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-media-box { position: relative; width: 100%; aspect-ratio: 9/16; max-height: 600px; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 60px rgba(0, 82, 255, 0.15); }
.hero-media-box video, .hero-media-box img { width: 100%; height: 100%; object-fit: cover; }

/* Декоративне світіння на фоні hero */
.hero__bg-atmosphere { position: absolute; inset: -10% -10% -10% -10%; z-index: 0; pointer-events: none; will-change: transform; }
.hero__bg-atmosphere::before, .hero__bg-atmosphere::after { content: ''; position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; animation: heroOrbFloat 12s ease-in-out infinite alternate; }
.hero__bg-atmosphere::before { width: 420px; height: 420px; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); top: 10%; left: 5%; }
.hero__bg-atmosphere::after { width: 360px; height: 360px; background: radial-gradient(circle, #7000ff 0%, transparent 70%); bottom: 5%; right: 8%; animation-delay: -6s; }

@keyframes heroOrbFloat { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(30px, -20px) scale(1.1); } }

/* Стаггер-поява елементів hero */
.hero-fade { opacity: 0; transform: translateY(24px); animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: var(--fade-delay, 0s); }
@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }

/* ============================================================ 5. SECTIONS & TITLES ============================================================ */
.section { padding: var(--space-20) 0; }
.section__header { text-align: center; margin-bottom: var(--space-12); }
.section__title { font-size: var(--fs-800); font-weight: 700; margin-bottom: 0.5rem; }
.section__subtitle { color: var(--text-secondary); font-size: var(--fs-500); font-weight: 400; }

/* ============================================================ 6. PORTFOLIO (Video Grid & Filters) ============================================================ */
.filter { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.filter__btn { padding: 0.5rem 1.2rem; border-radius: var(--radius-full); background: var(--bg-card); color: var(--text-secondary); font-weight: 500; border: 1px solid var(--border); cursor: pointer; transition: 0.3s; }
.filter__btn.is-active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 0 15px var(--accent-glow); }

/* Нова сітка для Відео */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.bento__item { border-radius: var(--radius-lg); overflow: hidden; position: relative; cursor: pointer; border: 1px solid var(--border); background: var(--bg-card); transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease; }
.bento__item:hover { transform: translateY(-6px); border-color: var(--border-hover); box-shadow: 0 24px 50px rgba(0,0,0,0.45), 0 0 45px var(--accent-glow); }
.bento__item--reels { grid-column: span 1; aspect-ratio: 9/16; }
.bento__item--youtube { grid-column: span 3; aspect-ratio: 16/9; }

.project-card { height: 100%; width: 100%; position: relative; }
.project-card__media { width: 100%; height: 100%; overflow: hidden; }
.project-card__media img, .project-card__media video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }

/* Play-кнопка, що з'являється й пульсує при наведенні */
.project-card__play { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.35s ease; pointer-events: none; }
.bento__item:hover .project-card__play { opacity: 1; }
.project-card__play-icon { position: relative; width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding-left: 3px; color: #fff; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.45); backdrop-filter: blur(6px); transform: scale(0.75); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease; }
.bento__item:hover .project-card__play-icon { transform: scale(1); background: rgba(0, 82, 255, 0.4); }
.project-card__play-icon::before { content: ''; position: absolute; inset: -10px; border-radius: 50%; border: 1px solid var(--accent-light); opacity: 0; }
.bento__item:hover .project-card__play-icon::before { animation: playPulse 1.7s ease-out infinite; }
@keyframes playPulse { 0% { transform: scale(0.85); opacity: 0.7; } 100% { transform: scale(1.5); opacity: 0; } }
.bento__item:hover .project-card__media img, .bento__item:hover .project-card__media video { transform: scale(1.05); }

.project-card__body { position: absolute; bottom: 0; left: 0; width: 100%; padding: 1.5rem; background: linear-gradient(to top, rgba(3,0,20,0.95) 0%, transparent 100%); }
.project-card__title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.project-card__tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag { font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.5rem; background: rgba(255,255,255,0.1); border-radius: var(--radius-full); backdrop-filter: blur(4px); }

/* ============================================================ 7. DESIGN GRID ============================================================ */
.grid--design { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.design-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--bg-card); cursor: pointer; }
.design-card--wide { grid-column: span 2; aspect-ratio: 3/2; }
.design-card--square { grid-column: span 1; aspect-ratio: 1/1; }

.design-card__media { width: 100%; height: 100%; overflow: hidden; }
.design-card__media img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.design-card:hover .design-card__media img { transform: scale(1.05); }
.design-card__info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 1rem 1.5rem; background: linear-gradient(to top, rgba(3,0,20,0.95) 0%, transparent 100%); }
.design-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.design-card__tool { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }

/* ============================================================ 8. SKILLS & TESTIMONIALS ============================================================ */
.skills-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.skill-card { padding: 1.5rem; border-radius: var(--radius-lg); background: var(--bg-card); border: 1px solid var(--border); backdrop-filter: var(--glass-blur); }
.skill-card__name { font-weight: 700; margin-bottom: 1rem; color: var(--accent-light); }
.skill-card__features { list-style: none; }
.skill-card__features li { font-size: 0.9rem; font-weight: 400; color: var(--text-secondary); margin-bottom: 0.5rem; padding-left: 1rem; position: relative; }
.skill-card__features li::before { content: '•'; position: absolute; left: 0; color: var(--accent); }

.testimonials-slider { display: flex; align-items: center; gap: 1.25rem; max-width: 640px; margin: 0 auto; }
.testimonials-track-wrap { overflow: hidden; width: 100%; border-radius: var(--radius-xl); }
.testimonials-track { display: flex; transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1); touch-action: pan-y; }
.testimonial-slide { flex: 0 0 100%; width: 100%; padding: 0 0.25rem; box-sizing: border-box; }

.slider-arrow { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-primary); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s ease; }
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); transform: scale(1.08); box-shadow: 0 0 20px var(--accent-glow); }

.testimonials-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.testimonials-dots__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: 0.3s ease; padding: 0; }
.testimonials-dots__dot.is-active { background: var(--accent); width: 24px; border-radius: var(--radius-full); box-shadow: 0 0 10px var(--accent-glow); }

/* «Telegram»-стилізована карточка відгуку */
.tg-bubble { background: linear-gradient(160deg, #182533 0%, #0e1621 100%); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-xl); padding: 1.75rem; box-shadow: 0 20px 45px rgba(0,0,0,0.4); }
.tg-bubble__header { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.tg-bubble__avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #7000ff); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.tg-bubble__meta { display: flex; flex-direction: column; min-width: 0; }
.tg-bubble__name { font-weight: 600; font-size: 1rem; font-style: normal; }
.tg-bubble__role { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tg-bubble__stars { margin-left: auto; flex-shrink: 0; color: #ffb300; font-size: 0.9rem; letter-spacing: 1px; }
.tg-bubble__msg { background: #2b5278; border-radius: 4px 18px 18px 18px; padding: 0.95rem 1.15rem; position: relative; }
.tg-bubble__text { color: #fff; font-size: 0.98rem; font-weight: 400; line-height: 1.55; }
.tg-bubble__footer { display: flex; justify-content: flex-end; align-items: center; gap: 0.3rem; margin-top: 0.4rem; }
.tg-bubble__time { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.tg-bubble__check { color: #6dc3ff; }

/* ============================================================ 9. PRICING ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card { position: relative; padding: 2rem; border-radius: var(--radius-xl); background: var(--bg-card); border: 1px solid var(--border); backdrop-filter: var(--glass-blur); display: flex; flex-direction: column; }
.pricing-card--popular { border-color: var(--accent); box-shadow: 0 0 30px var(--accent-glow); }
.pricing-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 0.25rem 1rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; }
.pricing-card__name { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.pricing-card__price { font-size: 2.25rem; color: #fff; font-weight: 800; margin-bottom: 1.5rem; }
.pricing-card__features { list-style: none; margin-bottom: 2rem; flex-grow: 1; }
.pricing-card__features li { margin-bottom: 0.75rem; color: var(--text-secondary); padding-left: 1.5rem; position: relative; }
.pricing-card__features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); }
.pricing__disclaimer { text-align: center; margin-top: 2rem; color: var(--text-muted); font-size: 0.9rem; }

/* ============================================================ 10. FOOTER ============================================================ */
.footer { padding: var(--space-20) 0 var(--space-8); border-top: 1px solid var(--border); text-align: center; margin-top: var(--space-12); }
.footer__content { max-width: 600px; margin: 0 auto; }
.footer__title { font-size: 2rem; font-weight: 700; margin: 1.5rem 0 1rem; }
.footer__desc { color: var(--text-secondary); margin-bottom: 2rem; }
.footer__social { display: flex; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.social-link { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); transition: 0.3s; }
.social-link:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.9rem; }

/* ============================================================ 11. MODAL (Lightbox) ============================================================ */
.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); }
.modal__container { position: relative; z-index: 1; max-width: 1000px; width: 100%; background: var(--bg-deep); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; display: grid; grid-template-columns: 1.5fr 1fr; max-height: 90vh; }
.modal__media { background: #000; display: flex; align-items: center; justify-content: center; }
.modal__media video, .modal__media img { max-width: 100%; max-height: 90vh; width: 100%; height: 100%; object-fit: contain; }
.modal__content { padding: 2rem; overflow-y: auto; }
.modal__close { position: absolute; top: 1rem; right: 1rem; background: rgba(0,0,0,0.5); border: none; color: #fff; cursor: pointer; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; z-index: 2; }
.modal__title { font-size: 1.8rem; font-weight: 700; margin: 1rem 0; }
.modal__desc { color: var(--text-secondary); margin-bottom: 1.5rem; }
.modal__tools { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.modal__cta { width: 100%; }

/* ============================================================ 12. SCROLL ANIMATIONS ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--left { transform: translateX(-30px); }
.reveal--right { transform: translateX(30px); }
.reveal--scale { transform: scale(0.95); }
.reveal--left.is-visible, .reveal--right.is-visible, .reveal--scale.is-visible { transform: translate(0) scale(1); }

/* ============================================================ 13. RESPONSIVE ============================================================ */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento__item--youtube { grid-column: span 2; }
  .grid--design { grid-template-columns: repeat(2, 1fr); }
  .design-card--wide { grid-column: span 2; }
  .skills-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__offer { margin-left: auto; margin-right: auto; }
  .hero__cta-group { justify-content: center; }
  .hero-media-box { max-width: 300px; margin: 0 auto; }
  .modal__container { grid-template-columns: 1fr; max-height: 85vh; overflow-y: auto; }
}

@media (max-width: 768px) {
  .nav__list { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(3,0,20,0.95); backdrop-filter: blur(20px); flex-direction: column; padding: 1rem; gap: 1rem; border-bottom: 1px solid var(--border); }
  .nav__list.is-open { display: flex; }
  .nav__toggle { display: flex; }
  .header__cta { display: none; }
  
  .bento-grid { grid-template-columns: 1fr; }
  .bento__item--reels, .bento__item--youtube { grid-column: span 1; }
  
  .grid--design { grid-template-columns: 1fr; }
  .design-card--wide, .design-card--square { grid-column: span 1; }
  
  .skills-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.5rem; }

  .testimonials-slider { gap: 0.5rem; }
  .slider-arrow { width: 36px; height: 36px; }
  .tg-bubble { padding: 1.25rem; }
}
