:root {
    --color-bg: #0A0A0F;
    --color-bg-light: rgba(255, 255, 255, 0.08);
    --color-bg-lighter: rgba(255, 255, 255, 0.12);
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-light: rgba(255, 255, 255, 0.15);
    --color-text: #9CA3AF;
    --color-text-light: #D1D5DB;
    --color-white: #FFFFFF;
    --color-purple: #8B5CF6;
    --color-purple-dark: #7C3AED;
    --color-cyan: #06B6D4;
    --color-cyan-dark: #0891B2;
    --color-pink: #EC4899;
    --color-pink-dark: #DB2777;
    --color-amber: #F59E0B;
    --color-amber-dark: #D97706;
    --color-green: #10B981;
    --color-green-dark: #059669;
    --gradient-primary: linear-gradient(to right, var(--color-purple), var(--color-cyan));
    --gradient-text: linear-gradient(to right, #A78BFA, #F472B6, #22D3EE);
    --gradient-text-alt: linear-gradient(to right, #22D3EE, #A78BFA, #22D3EE);
    --shadow-glow-purple: 0 0 40px rgba(139, 92, 246, 0.4);
    --shadow-glow-purple-lg: 0 0 60px rgba(139, 92, 246, 0.6);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-max: 1200px;
    --container-narrow: 900px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background-color: var(--color-bg); color: var(--color-text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 1rem; }
.container--narrow { max-width: var(--container-narrow); }
.gradient-text { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-text-alt { background: var(--gradient-text-alt); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-white { color: var(--color-white); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }

/* Glow Effects */
.glow { position: absolute; border-radius: 50%; filter: blur(200px); pointer-events: none; }
.glow--center { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: rgba(139, 92, 246, 0.1); }
.glow--center-large { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 900px; height: 900px; background: rgba(139, 92, 246, 0.1); }
.glow--right { right: 0; top: 50%; transform: translateY(-50%); width: 600px; height: 600px; background: rgba(6, 182, 212, 0.1); }
.glow--left { left: 33%; top: 33%; width: 600px; height: 600px; background: rgba(139, 92, 246, 0.1); }
.glow--right-bottom { right: 33%; bottom: 33%; width: 500px; height: 500px; background: rgba(6, 182, 212, 0.1); }
.glow--right-top { right: 25%; top: 25%; width: 600px; height: 600px; background: rgba(6, 182, 212, 0.1); }
.glow--left-bottom { left: 25%; bottom: 25%; width: 500px; height: 500px; background: rgba(139, 92, 246, 0.1); }
.glow--left-top { left: 25%; top: 33%; width: 600px; height: 600px; background: rgba(139, 92, 246, 0.1); }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: clamp(1.875rem, 5vw, 3rem); font-weight: 700; color: var(--color-white); margin-bottom: 1rem; line-height: 1.2; }
.section-title--large { font-size: clamp(2.25rem, 6vw, 3.75rem); }
.section-subtitle { font-size: clamp(1.125rem, 2.5vw, 1.25rem); color: var(--color-text); max-width: 48rem; margin: 0 auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 600; border-radius: 9999px; transition: all 0.3s ease; cursor: pointer; border: none; font-family: inherit; }
.btn--primary { background: var(--gradient-primary); color: var(--color-white); box-shadow: var(--shadow-glow-purple); }
.btn--primary:hover { box-shadow: var(--shadow-glow-purple-lg); transform: translateY(-2px); }
.btn--large { padding: 1rem 2rem; font-size: 1.125rem; }
.btn--full { width: 100%; padding: 1.25rem 2rem; font-size: 1.125rem; }
.btn svg { transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(4px); }

/* Hero Section */
.hero { position: relative; height: 90vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 1rem; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg-image { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: rgba(10, 10, 15, 0.6); }
.hero__content { position: relative; z-index: 10; width: 100%; max-width: 64rem; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 9999px; margin: 0 auto 2rem; background: linear-gradient(to right, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1)); border: 1px solid rgba(139, 92, 246, 0.3); backdrop-filter: blur(8px); animation: fadeInUp 0.6s ease-out; }
.hero__badge svg { color: #A78BFA; }
.hero__badge span { font-size: 0.875rem; font-weight: 500; background: linear-gradient(to right, #A78BFA, #22D3EE); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-align: center; }
.hero__title { font-size: clamp(2.25rem, 7vw, 4.5rem); font-weight: 700; color: var(--color-white); margin: 0 0 1.25rem; line-height: 1.1; letter-spacing: -0.02em; text-align: center; text-wrap: balance; animation: fadeInUp 0.6s ease-out 0.1s both; }
.hero__subtitle { font-size: clamp(1.125rem, 3vw, 1.5rem); color: var(--color-text); margin: 0 auto 2rem; max-width: 48rem; text-align: center; text-wrap: pretty; animation: fadeInUp 0.6s ease-out 0.2s both; }
.hero__content .btn { animation: fadeInUp 0.6s ease-out 0.3s both; }
@media (max-width: 640px) {
    .hero { height: auto; min-height: 90vh; min-height: 90dvh; padding: 2rem 1.15rem; }
    .hero__title { font-size: clamp(1.75rem, 8.5vw, 2.5rem); }
    .hero__subtitle { font-size: 1rem; margin-bottom: 1.75rem; }
    .hero__badge { margin-bottom: 1.5rem; padding: 0.4rem 0.85rem; }
    .hero__badge span { font-size: 0.75rem; }
}

/* Pain Points Section */
.pains { position: relative; padding: 7.5rem 1rem; overflow: hidden; }
.pains__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.pain-card { position: relative; padding: 1.875rem 1.625rem 1.625rem; border-radius: 1.25rem; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)); border: 1px solid rgba(139, 92, 246, 0.25); backdrop-filter: blur(16px); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; overflow: hidden; }
.pain-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--color-purple), var(--color-cyan)); opacity: 0.6; transition: opacity 0.3s ease; }
.pain-card:hover { transform: translateY(-3px); border-color: rgba(139, 92, 246, 0.5); box-shadow: 0 0 30px rgba(139, 92, 246, 0.18); }
.pain-card:hover::before { opacity: 1; }
.pain-card__quote-mark { position: absolute; top: 0.875rem; right: 1rem; color: rgba(139, 92, 246, 0.18); pointer-events: none; }
.pain-card__quote { position: relative; margin: 0 0 1rem; color: var(--color-white); font-size: 1.0625rem; font-weight: 600; line-height: 1.45; }
.pain-card__quote::before { content: "«"; }
.pain-card__quote::after { content: "»"; }
.pain-card__note { margin: 0; color: var(--color-text); font-size: 0.9375rem; font-style: italic; line-height: 1.55; }
.pain-card__tag { font-style: normal; font-weight: 700; color: var(--color-cyan); margin-right: 0.25rem; letter-spacing: 0.01em; }
.pains__conclusion { max-width: 880px; margin: 3.5rem auto 0; padding: 1.75rem 1.5rem; border-radius: 1.25rem; background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.08), rgba(6, 182, 212, 0.05)); border: 1px solid rgba(139, 92, 246, 0.3); text-align: center; }
.pains__conclusion p { margin: 0; color: var(--color-text-light); font-size: 1.0625rem; line-height: 1.7; }
@media (max-width: 1024px) { .pains__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pains__grid { grid-template-columns: 1fr; gap: 1rem; } .pain-card { padding: 1.5rem 1.25rem 1.375rem; } .pain-card__quote { font-size: 1rem; } .pains__conclusion { padding: 1.5rem 1.15rem; } .pains__conclusion p { font-size: 1rem; } }

/* Gallery Section */
.gallery { position: relative; padding: 7.5rem 1rem; overflow: hidden; }
.gallery__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .gallery__grid { grid-template-columns: 1fr 1.6fr; gap: 4rem; } }
.gallery__story { display: flex; flex-direction: column; gap: 2rem; }
.story-card { position: relative; padding: 2rem; border-radius: 1.5rem; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)); backdrop-filter: blur(20px); border: 2px solid rgba(139, 92, 246, 0.3); box-shadow: 0 0 50px rgba(139, 92, 246, 0.2); }
.story-card__glow { position: absolute; inset: -2px; background: linear-gradient(to right, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2)); border-radius: 1.5rem; filter: blur(20px); opacity: 0.5; z-index: -1; }
.story-card__content { display: flex; flex-direction: column; gap: 1rem; color: var(--color-text-light); line-height: 1.7; }
.story-results h3 { font-size: 1.5rem; font-weight: 700; color: var(--color-white); margin-bottom: 1rem; }
.story-results ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.story-results li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1.125rem; color: var(--color-text-light); }
.story-results .bullet { color: var(--color-cyan); margin-top: 0.125rem; }
.story-stats { position: relative; }
.story-stats__glow { position: absolute; inset: -4px; background: linear-gradient(to right, var(--color-green), var(--color-cyan), var(--color-green)); border-radius: 0.75rem; filter: blur(20px); opacity: 0.4; }
.story-stats__content { position: relative; display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.25rem; border-radius: 0.75rem; background: linear-gradient(to right, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2)); border: 1px solid rgba(74, 222, 128, 0.5); backdrop-filter: blur(20px); }
.story-stats__content svg { color: #4ADE80; }
.story-stats__value { font-size: 1.25rem; font-weight: 700; color: var(--color-white); }
.story-stats__label { font-size: 0.875rem; font-weight: 600; color: #4ADE80; }
.gallery__carousel { position: relative; display: flex; align-items: center; gap: 0.75rem; }
.gallery__showcase { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; padding: 0.5rem 0.25rem 1.25rem; flex: 1 1 auto; min-width: 0; scrollbar-width: thin; scrollbar-color: rgba(139, 92, 246, 0.5) transparent; }
.gallery__showcase::-webkit-scrollbar { height: 8px; }
.gallery__showcase::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.04); border-radius: 4px; }
.gallery__showcase::-webkit-scrollbar-thumb { background: rgba(139, 92, 246, 0.5); border-radius: 4px; }
.gallery__showcase::-webkit-scrollbar-thumb:hover { background: rgba(139, 92, 246, 0.7); }
.gallery__nav { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(139, 92, 246, 0.4); background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.18), rgba(6, 182, 212, 0.12)); color: var(--color-white); cursor: pointer; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease; backdrop-filter: blur(10px); }
.gallery__nav:hover { transform: scale(1.08); border-color: rgba(139, 92, 246, 0.7); box-shadow: 0 0 24px rgba(139, 92, 246, 0.35); }
.gallery__nav:disabled { opacity: 0.35; cursor: default; transform: none; box-shadow: none; }
.gallery__note { margin: 1.5rem auto 0; max-width: 720px; text-align: center; font-size: 1rem; color: var(--color-text-light); }
.browser-card__body { cursor: zoom-in; }

/* Fact-card link */
.fact-card__link { color: inherit; text-decoration: underline; text-decoration-color: rgba(139, 92, 246, 0.5); text-decoration-thickness: 2px; text-underline-offset: 3px; cursor: pointer; transition: text-decoration-color 0.2s ease, color 0.2s ease; }
.fact-card__link:hover { color: #C4B5FD; text-decoration-color: rgba(139, 92, 246, 0.9); }

/* Timeline Modal */
.tl-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 2rem 1rem; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); animation: lightbox-fade 0.25s ease-out; cursor: zoom-out; }
.tl-modal[hidden] { display: none; }
.tl-modal__inner { position: relative; width: min(1100px, 100%); max-height: 92vh; overflow: hidden; display: flex; flex-direction: column; padding: 1.75rem 1.75rem 2rem; border-radius: 1.5rem; background: linear-gradient(to bottom right, rgba(20, 12, 38, 0.98), rgba(8, 10, 26, 0.98)); border: 1px solid rgba(139, 92, 246, 0.3); box-shadow: 0 0 80px rgba(139, 92, 246, 0.25); cursor: default; animation: lightbox-pop 0.3s ease-out; }
.tl-modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.tl-modal__eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-cyan); margin-bottom: 0.25rem; }
.tl-modal__title { margin: 0; font-size: 1.375rem; font-weight: 700; color: var(--color-white); line-height: 1.3; }
.tl-modal__close { flex: 0 0 auto; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.06); color: var(--color-white); cursor: pointer; transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease; }
.tl-modal__close:hover { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.4); transform: scale(1.05); }
.tl-modal__slider-wrap { position: relative; display: flex; align-items: center; gap: 0.75rem; min-height: 0; }
.tl-modal__track { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; padding: 0.5rem 0.25rem 1rem; flex: 1 1 auto; min-width: 0; scrollbar-width: thin; scrollbar-color: rgba(139, 92, 246, 0.5) transparent; }
.tl-modal__track::-webkit-scrollbar { height: 6px; }
.tl-modal__track::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.04); border-radius: 4px; }
.tl-modal__track::-webkit-scrollbar-thumb { background: rgba(139, 92, 246, 0.5); border-radius: 4px; }
.tl-modal__nav { flex: 0 0 auto; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(139, 92, 246, 0.4); background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.25), rgba(6, 182, 212, 0.15)); color: var(--color-white); cursor: pointer; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease; backdrop-filter: blur(10px); }
.tl-modal__nav:hover { transform: scale(1.08); border-color: rgba(139, 92, 246, 0.7); box-shadow: 0 0 24px rgba(139, 92, 246, 0.4); }
.tl-modal__nav:disabled { opacity: 0.3; cursor: default; transform: none; box-shadow: none; }

.tl-slide { flex: 0 0 calc((100% - 2.5rem) / 3); min-width: 240px; max-width: 360px; scroll-snap-align: start; display: flex; flex-direction: column; border-radius: 1rem; overflow: hidden; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)); border: 1px solid rgba(255, 255, 255, 0.1); transition: transform 0.3s ease, border-color 0.3s ease; }
.tl-slide:hover { transform: translateY(-3px); border-color: rgba(139, 92, 246, 0.4); }
.tl-slide__cover { aspect-ratio: 4 / 3; overflow: hidden; background: #0F1023; }
.tl-slide__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tl-slide:hover .tl-slide__cover img { transform: scale(1.04); }
.tl-slide__body { padding: 1.125rem 1.125rem 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.tl-slide__meta { display: flex; align-items: center; gap: 0.625rem; }
.tl-slide__year { font-size: 1.5rem; font-weight: 800; line-height: 1; background: linear-gradient(to right, var(--color-purple), var(--color-cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.tl-slide__badge { display: inline-flex; align-items: center; padding: 0.2rem 0.6rem; border-radius: 9999px; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: rgba(139, 92, 246, 0.18); border: 1px solid rgba(139, 92, 246, 0.4); color: #C4B5FD; }
.tl-slide__badge--cyan { background: rgba(6, 182, 212, 0.18); border-color: rgba(6, 182, 212, 0.4); color: #67E8F9; }
.tl-slide__title { margin: 0; font-size: 1.0625rem; font-weight: 700; color: var(--color-white); line-height: 1.35; }
.tl-slide__desc { margin: 0; font-size: 0.9375rem; color: var(--color-text-light); line-height: 1.55; }

@media (max-width: 1024px) { .tl-slide { flex: 0 0 calc((100% - 1.25rem) / 2); } }
@media (max-width: 640px) {
    .tl-modal__inner { padding: 1.25rem; border-radius: 1rem; }
    .tl-modal__title { font-size: 1.125rem; }
    .tl-modal__nav { display: none; }
    .tl-slide { flex: 0 0 85%; }
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; gap: 1rem; padding: 2rem 4.5rem; background: rgba(0, 0, 0, 0.88); backdrop-filter: blur(8px); animation: lightbox-fade 0.25s ease-out; cursor: zoom-out; }
.lightbox[hidden] { display: none; }
.lightbox__inner { position: relative; max-width: min(1200px, calc(100vw - 9rem)); max-height: 90vh; display: flex; flex-direction: column; align-items: center; gap: 1rem; cursor: default; animation: lightbox-pop 0.3s ease-out; }
.lightbox__image { display: block; max-width: 100%; max-height: 80vh; width: auto; height: auto; border-radius: 1rem; box-shadow: 0 0 80px rgba(139, 92, 246, 0.4); border: 1px solid rgba(255, 255, 255, 0.12); object-fit: contain; }
.lightbox__caption { margin: 0; color: var(--color-white); text-align: center; font-size: 1rem; font-weight: 600; }
.lightbox__close { position: absolute; top: 1.25rem; right: 1.25rem; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.08); color: var(--color-white); cursor: pointer; transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease; }
.lightbox__close:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.5); transform: scale(1.05); }
.lightbox__nav { flex: 0 0 auto; width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(139, 92, 246, 0.4); background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.25), rgba(6, 182, 212, 0.15)); color: var(--color-white); cursor: pointer; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease; backdrop-filter: blur(10px); }
.lightbox__nav:hover { transform: scale(1.08); border-color: rgba(139, 92, 246, 0.7); box-shadow: 0 0 24px rgba(139, 92, 246, 0.4); }
.lightbox__nav:disabled { opacity: 0.3; cursor: default; transform: none; box-shadow: none; }
@keyframes lightbox-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lightbox-pop { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
@media (max-width: 640px) { .lightbox { padding: 1rem; } .lightbox__nav { display: none; } .lightbox__inner { max-width: 100%; } .lightbox__close { top: 0.5rem; right: 0.5rem; } }
.browser-card { position: relative; flex: 0 0 calc((100% - 1.5rem) / 2); min-width: 280px; max-width: 560px; scroll-snap-align: start; transition: all 0.5s ease; }
.browser-card--offset { margin-top: 0; }
@media (max-width: 640px) { .gallery__nav { display: none; } .browser-card { flex: 0 0 85%; } }

/* Clients Gallery (reuses browser-card pattern) */
.clients { position: relative; padding: 7.5rem 1rem; overflow: hidden; }
.clients__carousel { position: relative; display: flex; align-items: center; gap: 0.75rem; }
.clients__showcase { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; padding: 0.5rem 0.25rem 1.25rem; flex: 1 1 auto; min-width: 0; scrollbar-width: thin; scrollbar-color: rgba(139, 92, 246, 0.5) transparent; }
.clients__showcase::-webkit-scrollbar { height: 8px; }
.clients__showcase::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.04); border-radius: 4px; }
.clients__showcase::-webkit-scrollbar-thumb { background: rgba(139, 92, 246, 0.5); border-radius: 4px; }
.clients__showcase::-webkit-scrollbar-thumb:hover { background: rgba(139, 92, 246, 0.7); }
.clients__nav { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(139, 92, 246, 0.4); background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.18), rgba(6, 182, 212, 0.12)); color: var(--color-white); cursor: pointer; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease; backdrop-filter: blur(10px); }
.clients__nav:hover { transform: scale(1.08); border-color: rgba(139, 92, 246, 0.7); box-shadow: 0 0 24px rgba(139, 92, 246, 0.35); }
.clients__nav:disabled { opacity: 0.35; cursor: default; transform: none; box-shadow: none; }
.clients__note { margin: 1.5rem auto 0; max-width: 820px; text-align: center; font-size: 1rem; color: var(--color-text-light); line-height: 1.6; }
.clients__showcase .browser-card { flex: 0 0 calc((100% - 1.5rem) / 2); min-width: 280px; max-width: 560px; scroll-snap-align: start; }

/* Browser card without URL — center the dots header */
.browser-card--no-url .browser-card__header { justify-content: flex-start; }
.browser-card--no-url .browser-card__header .browser-dots { padding: 0.125rem 0; }

@media (max-width: 640px) { .clients__nav { display: none; } .clients__showcase .browser-card { flex: 0 0 85%; } }
.browser-card:hover { transform: scale(1.05); }
.browser-card:hover .browser-card__header, .browser-card:hover .browser-card__body { border-color: rgba(139, 92, 246, 0.5); box-shadow: 0 0 40px rgba(139, 92, 246, 0.4); }
.browser-card__header { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; background: rgba(17, 24, 39, 0.9); border: 1px solid rgba(255, 255, 255, 0.15); border-bottom: none; border-radius: 1rem 1rem 0 0; transition: all 0.5s ease; }
.browser-dots { display: flex; gap: 0.375rem; }
.dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; }
.dot--red { background: rgba(239, 68, 68, 0.7); }
.dot--yellow { background: rgba(234, 179, 8, 0.7); }
.dot--green { background: rgba(34, 197, 94, 0.7); }
.browser-url { flex: 1; margin: 0 1rem; padding: 0.25rem 0.75rem; border-radius: 0.25rem; background: rgba(31, 41, 55, 0.5); border: 1px solid rgba(255, 255, 255, 0.05); font-size: 0.75rem; color: #6B7280; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.browser-card__body { aspect-ratio: 16 / 9; overflow: hidden; background: #111827; border: 1px solid rgba(255, 255, 255, 0.15); border-top: none; border-radius: 0 0 1rem 1rem; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); transition: all 0.5s ease; }
.browser-card__body img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.7s ease; }
.browser-card:hover .browser-card__body img { transform: scale(1.1); }
.browser-card__title { margin-top: 0.75rem; font-size: 0.875rem; font-weight: 600; color: var(--color-white); text-align: center; }
.browser-card__desc { font-size: 0.75rem; color: var(--color-text); text-align: center; }
.browser-card__meta { margin-top: 0.35rem; font-size: 0.75rem; font-weight: 600; color: #4ADE80; text-align: center; letter-spacing: 0.02em; }

/* Gallery counters */
.gallery__counters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 0 auto 3rem; max-width: 880px; }
.gallery__counter { position: relative; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 1.75rem 1rem; border-radius: 1.25rem; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)); backdrop-filter: blur(20px); border: 1px solid rgba(139, 92, 246, 0.3); box-shadow: 0 0 30px rgba(139, 92, 246, 0.12); text-align: center; transition: transform 0.3s ease, border-color 0.3s ease; }
.gallery__counter:hover { transform: translateY(-2px); border-color: rgba(139, 92, 246, 0.5); }
.gallery__counter-value { font-size: 2.25rem; font-weight: 800; line-height: 1.1; background: linear-gradient(to right, var(--color-purple), var(--color-cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gallery__counter-label { font-size: 0.875rem; font-weight: 500; color: var(--color-text-light); }
@media (max-width: 640px) { .gallery__counters { grid-template-columns: 1fr; gap: 0.75rem; } .gallery__counter { padding: 1.25rem 1rem; } .gallery__counter-value { font-size: 1.75rem; } }

/* Trigger Section */
.trigger { position: relative; padding: 7.5rem 1rem; overflow: hidden; }
.trigger__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 9999px; margin-bottom: 1.5rem; background: linear-gradient(to right, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.15)); border: 1px solid rgba(139, 92, 246, 0.3); }
.trigger__badge svg { color: #A78BFA; }
.trigger__badge span { font-size: 0.875rem; font-weight: 600; color: var(--color-white); }
.trigger__questions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
.question-card { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.5rem; border-radius: 1rem; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)); backdrop-filter: blur(8px); border: 1px solid var(--color-border); transition: all 0.3s ease; }
.question-card:hover { border-color: rgba(139, 92, 246, 0.3); transform: translateY(-2px); }
.question-card svg { color: #A78BFA; flex-shrink: 0; }
.question-card span { font-weight: 500; color: var(--color-text-light); }
.trigger__answer { position: relative; padding: 2rem; border-radius: 1.5rem; background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.05)); backdrop-filter: blur(20px); border: 1px solid rgba(139, 92, 246, 0.2); }
.trigger__answer-icon { position: absolute; top: -1.25rem; left: 50%; transform: translateX(-50%); width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-glow-purple); }
.trigger__answer-icon svg { color: var(--color-white); }
.trigger__answer p { text-align: center; font-size: 1.125rem; color: var(--color-text-light); line-height: 1.7; }

/* About Section */
.about { position: relative; padding: 7.5rem 1rem; overflow: hidden; }
.about__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: flex-start; }
@media (min-width: 1024px) { .about__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.about__photo { 
position: relative;


 }
@media (min-width: 1024px) { .about__photo { position: sticky; top: 2rem; } }
.about__photo-container { position: relative; aspect-ratio: 3 / 4; max-width: 28rem; margin: 0 auto; border-radius: 1.5rem; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); }
@media (min-width: 1024px) { .about__photo-container { margin: 0; } }
.about__photo-container img { width: 100%; height: 100%; object-fit: cover; }
.about__photo-overlay-top { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10, 10, 15, 0.7), transparent, transparent); z-index: 10; }
.about__photo-overlay-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.15), transparent, rgba(6, 182, 212, 0.15)); z-index: 10; }
.about__photo-overlay-bottom { position: absolute; inset: 0; background: linear-gradient(to top, var(--color-bg), transparent, transparent); opacity: 0.6; z-index: 10; }
.about__name { text-align: center; margin-top: 1.5rem; font-size: 1.5rem; font-weight: 700; color: var(--color-white); }
.about__facts { display: flex; flex-direction: column; gap: 1rem; }
.fact-card { position: relative; display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; border-radius: 1rem; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)); border: 1px solid rgba(255, 255, 255, 0.08); backdrop-filter: blur(8px); transition: all 0.3s ease; }
.fact-card:hover { border-color: rgba(255, 255, 255, 0.2); }
.fact-card__icon { flex-shrink: 0; width: 3rem; height: 3rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3); }
.fact-card--purple .fact-card__icon { background: linear-gradient(to right, var(--color-purple), var(--color-purple-dark)); }
.fact-card--cyan .fact-card__icon { background: linear-gradient(to right, var(--color-cyan), var(--color-cyan-dark)); }
.fact-card--pink .fact-card__icon { background: linear-gradient(to right, var(--color-pink), var(--color-pink-dark)); }
.fact-card--amber .fact-card__icon { background: linear-gradient(to right, var(--color-amber), var(--color-amber-dark)); }
.fact-card--green .fact-card__icon { background: linear-gradient(to right, var(--color-green), var(--color-green-dark)); }
.fact-card__icon svg { color: var(--color-white); }
.fact-card__label { font-size: 0.875rem; color: var(--color-text); margin-bottom: 0.25rem; }
.fact-card__value { font-size: 1.125rem; font-weight: 600; color: var(--color-white); }

/* Timeline Section */
.timeline { position: relative; padding: 7.5rem 1rem; overflow: hidden; }
.timeline__items { position: relative; display: flex; flex-direction: column; gap: 4rem; }
.timeline__line { display: none; }
@media (min-width: 1024px) { .timeline__line { display: block; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--color-purple), var(--color-cyan), var(--color-purple)); opacity: 0.3; transform: translateX(-50%); box-shadow: 0 0 10px rgba(139, 92, 246, 0.5); } }
.timeline__item { position: relative; display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) { .timeline__item { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .timeline__item--left .timeline__content { order: 1; } .timeline__item--left .timeline__image { order: 2; } .timeline__item--right .timeline__content { order: 2; text-align: left; } .timeline__item--right .timeline__image { order: 1; } }
.timeline__year { position: absolute; left: 0; top: 0; width: 4rem; height: 4rem; border-radius: 50%; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 30px rgba(139, 92, 246, 0.6); border: 4px solid var(--color-bg); z-index: 10; }
@media (min-width: 1024px) { .timeline__year { left: 50%; transform: translateX(-50%); } }
.timeline__year span { font-weight: 700; font-size: 1.125rem; color: var(--color-white); }
.timeline__content { padding-left: 5rem; }
@media (min-width: 1024px) { .timeline__content { padding-left: 0; } .timeline__item--left .timeline__content { padding-right: 2rem; text-align: right; } .timeline__item--right .timeline__content { padding-left: 2rem; } }
.timeline__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; border-radius: 9999px; margin-bottom: 1rem; background: linear-gradient(to right, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2)); border: 1px solid rgba(139, 92, 246, 0.3); }
.timeline__badge svg { color: #A78BFA; }
.timeline__badge--cyan svg { color: var(--color-cyan); }
.timeline__badge span { font-size: 0.875rem; font-weight: 600; color: var(--color-white); }
.timeline__card { padding: 1.5rem; border-radius: 1rem; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)); border: 1px solid var(--color-border); backdrop-filter: blur(8px); }
.timeline__card h3 { font-size: 1.25rem; font-weight: 700; color: var(--color-white); margin-bottom: 0.75rem; }
.timeline__card p { color: var(--color-text); line-height: 1.6; }
.timeline__image { max-width: 20rem; margin-left: 5rem; }
@media (min-width: 1024px) { .timeline__image { margin: 0 auto; } }
.timeline__image img { border-radius: 1rem; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 0 30px rgba(139, 92, 246, 0.2); }
.timeline__stats { margin-top: 6rem; text-align: center; }
.timeline__stats-card { display: inline-block; padding: 3rem; border-radius: 1.5rem; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)); border: 1px solid rgba(255, 255, 255, 0.15); backdrop-filter: blur(20px); box-shadow: 0 0 50px rgba(139, 92, 246, 0.3); }
.timeline__stats-value { display: block; font-size: clamp(3rem, 8vw, 4.5rem); font-weight: 700; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 1rem; }
.timeline__stats-card p { font-size: 1.25rem; color: var(--color-text-light); }
.timeline__note { margin-top: 4rem; text-align: center; font-size: 1.25rem; font-style: italic; color: var(--color-text); max-width: 48rem; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* World Changed Section */
.world-changed { position: relative; padding: 7.5rem 1rem; overflow: hidden; }
.world-changed__bg { position: absolute; inset: 0; }
.world-changed__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; opacity: 0.6; }
.world-changed__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--color-bg), transparent, var(--color-bg)); }
.world-changed__overlay-sides { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10, 10, 15, 0.4), transparent, rgba(10, 10, 15, 0.4)); }
.world-changed .container { position: relative; }
.comparison { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 3rem; margin-bottom: 5rem; }
@media (min-width: 768px) { .comparison { grid-template-columns: repeat(2, 1fr); } }
.comparison__card { padding: 2rem 2.5rem; border-radius: 1rem; }
.comparison__card--old { background: linear-gradient(to bottom right, rgba(31, 41, 55, 0.8), rgba(31, 41, 55, 0.6)); backdrop-filter: blur(8px); border: 1px solid rgba(75, 85, 99, 0.5); filter: grayscale(1); }
.comparison__card--new { background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)); border: 2px solid rgba(139, 92, 246, 0.5); backdrop-filter: blur(20px); box-shadow: 0 0 50px rgba(139, 92, 246, 0.4); transition: box-shadow 0.3s ease; }
.comparison__card--new:hover { box-shadow: 0 0 60px rgba(139, 92, 246, 0.5); }
.comparison__label { display: inline-block; padding: 0.375rem 1rem; border-radius: 9999px; margin-bottom: 1.5rem; font-size: 0.875rem; font-weight: 500; }
.comparison__card--old .comparison__label { background: rgba(75, 85, 99, 0.5); border: 1px solid rgba(75, 85, 99, 0.5); color: var(--color-text-light); }
.comparison__label--new { background: linear-gradient(to right, rgba(139, 92, 246, 0.3), rgba(6, 182, 212, 0.3)); border: 1px solid rgba(139, 92, 246, 0.5); color: var(--color-white); font-weight: 700; box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
.comparison__list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.comparison__list li { display: flex; align-items: flex-start; gap: 0.75rem; line-height: 1.6; }
.comparison__card--old .comparison__list li { color: var(--color-text); }
.comparison__list--new li { color: var(--color-white); }
.comparison__dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; margin-top: 0.5rem; }
.comparison__card--old .comparison__dot { background: #6B7280; }
.comparison__dot--cyan { width: 8px; height: 8px; background: var(--color-cyan); box-shadow: 0 0 10px rgba(6, 182, 212, 0.6); }
.world-changed__conclusion { text-align: center; font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 700; color: var(--color-white); line-height: 1.3; }

/* New Skills Section */
.new-skills { position: relative; padding: 7.5rem 1rem; overflow: hidden; }
.new-skills__intro { text-align: center; font-size: 1.125rem; color: var(--color-text); margin-bottom: 2rem; line-height: 1.7; }
.new-skills__outro { text-align: center; font-size: 1.125rem; color: var(--color-text-light); margin-top: 2.5rem; line-height: 1.7; }
.skills-split { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .skills-split { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; } }
.skills-split__card { padding: 1.875rem 1.75rem; border-radius: 1.25rem; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)); border: 1px solid var(--color-border); backdrop-filter: blur(12px); transition: border-color 0.3s ease, transform 0.3s ease; }
.skills-split__card--in { border-color: rgba(16, 185, 129, 0.3); box-shadow: 0 0 30px rgba(16, 185, 129, 0.1); }
.skills-split__card--in:hover { border-color: rgba(16, 185, 129, 0.5); transform: translateY(-3px); }
.skills-split__card--out { border-color: rgba(239, 68, 68, 0.25); box-shadow: 0 0 30px rgba(239, 68, 68, 0.08); }
.skills-split__card--out:hover { border-color: rgba(239, 68, 68, 0.4); transform: translateY(-3px); }
.skills-split__title { margin: 0 0 1.25rem; font-size: 1.25rem; font-weight: 700; color: var(--color-white); }
.skills-split__card--in .skills-split__title::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #10B981; margin-right: 0.625rem; vertical-align: middle; box-shadow: 0 0 12px rgba(16, 185, 129, 0.6); }
.skills-split__card--out .skills-split__title::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #EF4444; margin-right: 0.625rem; vertical-align: middle; box-shadow: 0 0 12px rgba(239, 68, 68, 0.5); }
.skills-split__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.875rem; }
.skills-split__list li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--color-text-light); font-size: 1rem; line-height: 1.5; }
.skills-split__icon { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; margin-top: 1px; }
.skills-split__icon--in { background: rgba(16, 185, 129, 0.18); color: #34D399; border: 1px solid rgba(16, 185, 129, 0.4); }
.skills-split__icon--out { background: rgba(239, 68, 68, 0.15); color: #F87171; border: 1px solid rgba(239, 68, 68, 0.35); }
.new-skills__heading { text-align: center; font-size: 1.5rem; font-weight: 700; color: var(--color-white); margin-bottom: 3rem; }
.skills-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .skills-grid { grid-template-columns: repeat(2, 1fr); } }
.skill-card { padding: 2rem; border-radius: 1rem; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)); border: 1px solid var(--color-border); backdrop-filter: blur(8px); transition: all 0.3s ease; }
.skill-card:hover { border-color: rgba(139, 92, 246, 0.3); }
.skill-card__icon { width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; box-shadow: 0 0 25px rgba(139, 92, 246, 0.4); }
.skill-card__icon svg { color: var(--color-white); }
.skill-card p { font-size: 1.25rem; color: var(--color-white); line-height: 1.5; }

/* Course Story Section */
.course-story { position: relative; padding: 7.5rem 1rem 3rem; overflow: hidden; text-align: center; }
.course-story__icon { width: 4rem; height: 4rem; border-radius: 1rem; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; box-shadow: 0 0 40px rgba(139, 92, 246, 0.5); }
.course-story__icon svg { color: var(--color-white); }
.course-story__text { font-size: clamp(1.125rem, 2.5vw, 1.5rem); color: var(--color-text-light); line-height: 1.6; margin-bottom: 1.5rem; }
.course-story__title { font-size: clamp(1.875rem, 5vw, 3.75rem); font-weight: 700; line-height: 1.2; margin-top: 2rem; }

/* Who Its For Section */
.who-its-for { position: relative; padding: 7.5rem 1rem; overflow: hidden; }
.reasons-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .reasons-grid { grid-template-columns: repeat(3, 1fr); } }
.reason-card { position: relative; height: 100%; }
.reason-card__glow { position: absolute; inset: -2px; background: linear-gradient(to right, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3), rgba(6, 182, 212, 0.3)); border-radius: 1.5rem; filter: blur(20px); opacity: 0; transition: opacity 0.5s ease; }
.reason-card:hover .reason-card__glow { opacity: 1; }
.reason-card__content { position: relative; height: 100%; padding: 2rem; border-radius: 1.5rem; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)); backdrop-filter: blur(20px); border: 1px solid var(--color-border); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); transition: border-color 0.5s ease; }
.reason-card:hover .reason-card__content { border-color: rgba(255, 255, 255, 0.2); }
.reason-card__number { width: 3rem; height: 3rem; border-radius: 0.75rem; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.5rem; font-weight: 700; color: var(--color-white); box-shadow: 0 0 20px rgba(139, 92, 246, 0.4); }
.reason-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--color-white); margin-bottom: 1.5rem; line-height: 1.3; }
.reason-card ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.reason-card li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--color-text-light); line-height: 1.5; }
.check-icon { flex-shrink: 0; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: linear-gradient(to right, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2)); border: 1px solid rgba(139, 92, 246, 0.3); display: flex; align-items: center; justify-content: center; margin-top: 0.125rem; box-shadow: 0 0 12px rgba(139, 92, 246, 0.3); }
.check-icon svg { color: var(--color-cyan); }

/* Curriculum Section */
.curriculum { position: relative; padding: 7.5rem 1rem; overflow: hidden; }
.modules { display: flex; flex-direction: column; gap: 4rem; }
@media (min-width: 768px) { .modules { gap: 5rem; } }

.module__card { position: relative; border-radius: 1.5rem; overflow: hidden; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)); backdrop-filter: blur(20px); border: 2px solid rgba(255, 255, 255, 0.15); transition: all 0.3s ease; }
.module__card:hover { border-color: rgba(255, 255, 255, 0.2); }

.module__header { padding: 2.5rem; display: flex; align-items: flex-start; gap: 1.5rem; cursor: pointer; }
@media (min-width: 1024px) { .module__header { padding: 3rem; } }

.module__icon { flex-shrink: 0; width: 4rem; height: 4rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; }
@media (min-width: 1024px) { .module__icon { width: 5rem; height: 5rem; border-radius: 1.25rem; } }
.module__icon--purple { background: linear-gradient(135deg, #8B5CF6, #7C3AED); box-shadow: 0 0 30px rgba(139, 92, 246, 0.4); }
.module__icon--cyan { background: linear-gradient(135deg, #06B6D4, #0891B2); box-shadow: 0 0 30px rgba(6, 182, 212, 0.4); }
.module__icon--pink { background: linear-gradient(135deg, #EC4899, #DB2777); box-shadow: 0 0 30px rgba(236, 72, 153, 0.4); }
.module__icon--amber { background: linear-gradient(135deg, #F59E0B, #D97706); box-shadow: 0 0 30px rgba(245, 158, 11, 0.4); }
.module__icon svg { color: var(--color-white); width: 2rem; height: 2rem; }
@media (min-width: 1024px) { .module__icon svg { width: 2.5rem; height: 2.5rem; } }

.module__info { flex: 1; min-width: 0; }
.module__label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.module__label--purple { color: #A78BFA; }
.module__label--cyan { color: #22D3EE; }
.module__label--pink { color: #F472B6; }
.module__label--amber { color: #FBBF24; }
.module__title { font-size: 1.25rem; font-weight: 700; color: var(--color-white); line-height: 1.3; margin-bottom: 0.75rem; }
@media (min-width: 1024px) { .module__title { font-size: 1.5rem; } }
.module__desc { color: var(--color-text); line-height: 1.6; font-size: 1rem; }

.module__meta { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.module__count { font-size: 0.875rem; color: var(--color-text); white-space: nowrap; }
.module__chevron { color: var(--color-text); transition: transform 0.3s ease; }
.module.open .module__chevron { transform: rotate(180deg); }
.module__content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }

.lessons { padding: 0.5rem 1.5rem 2rem; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 1024px) { .lessons { padding: 0.5rem 3rem 2.5rem; } }

.lesson { border-radius: 1rem; background: rgba(17, 17, 24, 0.6); border: 1px solid rgba(255, 255, 255, 0.08); overflow: hidden; transition: all 0.3s ease; }
.lesson:hover { border-color: rgba(255, 255, 255, 0.15); background: rgba(17, 17, 24, 0.8); }
.lesson__header { width: 100%; padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1.25rem; cursor: pointer; }
.lesson__number { flex-shrink: 0; width: 3rem; height: 3rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; color: var(--color-white); }
.lesson__number--purple { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.lesson__number--cyan { background: linear-gradient(135deg, #06B6D4, #0891B2); }
.lesson__number--pink { background: linear-gradient(135deg, #EC4899, #DB2777); }
.lesson__number--amber { background: linear-gradient(135deg, #F59E0B, #D97706); }
.lesson__title { flex: 1; font-size: 1rem; font-weight: 600; color: var(--color-white); text-align: left; line-height: 1.4; }
@media (min-width: 1024px) { .lesson__title { font-size: 1.125rem; } }
.lesson__chevron { flex-shrink: 0; color: var(--color-text); transition: transform 0.3s ease; }
.lesson.open .lesson__chevron { transform: rotate(180deg); }
.lesson__content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.lesson__list { list-style: none; padding: 0.5rem 1.5rem 1rem; margin-left: 4.25rem; display: flex; flex-direction: column; gap: 1rem; border-left: 2px solid rgba(139, 92, 246, 0.3); }
.lesson__list li { position: relative; padding-left: 1rem; color: var(--color-text-light); line-height: 1.7; font-size: 0.9375rem; }
.lesson__list li::before { content: ''; position: absolute; left: -2px; top: 0.5rem; width: 6px; height: 6px; border-radius: 50%; background: var(--color-purple); transform: translateX(-50%); }
.lesson__result { padding: 0.5rem 1.5rem 1.5rem; margin-left: 4.25rem; color: var(--color-text-light); line-height: 1.7; font-size: 0.9375rem; }
.lesson__result span { color: #A78BFA; font-weight: 600; }

/* Arsenal Section */
.arsenal { position: relative; padding: 7.5rem 1rem; overflow: hidden; }
.arsenal-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 4rem; }
@media (min-width: 768px) { .arsenal-grid { grid-template-columns: repeat(3, 1fr); } }
.arsenal-card { position: relative; padding: 2.5rem; border-radius: 1.25rem; text-align: center; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.15); transition: all 0.3s ease; }
.arsenal-card:hover { border-color: rgba(255, 255, 255, 0.25); background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)); }
.arsenal-card__icon { width: 4rem; height: 4rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; transition: box-shadow 0.3s ease; }
.arsenal-card--cyan .arsenal-card__icon { background: linear-gradient(to right, var(--color-cyan), var(--color-cyan-dark)); box-shadow: 0 0 30px rgba(6, 182, 212, 0.3); }
.arsenal-card--purple .arsenal-card__icon { background: linear-gradient(to right, var(--color-purple), var(--color-purple-dark)); box-shadow: 0 0 30px rgba(139, 92, 246, 0.3); }
.arsenal-card--pink .arsenal-card__icon { background: linear-gradient(to right, var(--color-pink), var(--color-pink-dark)); box-shadow: 0 0 30px rgba(236, 72, 153, 0.3); }
.arsenal-card:hover .arsenal-card__icon { box-shadow: 0 0 50px rgba(139, 92, 246, 0.5); }
.arsenal-card__icon svg { color: var(--color-white); }
.arsenal-card h3 { font-size: 1.375rem; font-weight: 700; color: var(--color-white); margin-bottom: 0.75rem; line-height: 1.3; }
.arsenal-card p { font-size: 0.9375rem; color: var(--color-text); line-height: 1.5; }

/* Learn Section */
.learn { position: relative; padding: 7.5rem 1rem; overflow: hidden; }
.learn__bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: flex-end; pointer-events: none; }
.learn__bg img { width: 100%; max-width: 64rem; height: auto; opacity: 0.1; filter: blur(4px); transform: translateX(20%) rotate(-5deg); mix-blend-mode: screen; }
.learn-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .learn-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
.learn-card { position: relative; }
.learn-card__glow { position: absolute; inset: -2px; border-radius: 1.5rem; filter: blur(20px); opacity: 0; transition: opacity 0.5s ease; }
.learn-card--purple .learn-card__glow { background: linear-gradient(to right, var(--color-purple), var(--color-purple-dark)); }
.learn-card--cyan .learn-card__glow { background: linear-gradient(to right, var(--color-cyan), var(--color-cyan-dark)); }
.learn-card--pink .learn-card__glow { background: linear-gradient(to right, var(--color-pink), var(--color-pink-dark)); }
.learn-card--amber .learn-card__glow { background: linear-gradient(to right, var(--color-amber), var(--color-amber-dark)); }
.learn-card:hover .learn-card__glow { opacity: 0.6; }
.learn-card__content { position: relative; height: 100%; padding: 2rem 2.5rem; border-radius: 1.5rem; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)); backdrop-filter: blur(20px); border: 1px solid var(--color-border); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); transition: all 0.5s ease; }
.learn-card:hover .learn-card__content { border-color: rgba(255, 255, 255, 0.2); }
.learn-card--purple:hover .learn-card__content { box-shadow: 0 0 40px rgba(139, 92, 246, 0.4); }
.learn-card--cyan:hover .learn-card__content { box-shadow: 0 0 40px rgba(6, 182, 212, 0.4); }
.learn-card--pink:hover .learn-card__content { box-shadow: 0 0 40px rgba(236, 72, 153, 0.4); }
.learn-card--amber:hover .learn-card__content { box-shadow: 0 0 40px rgba(245, 158, 11, 0.4); }
.learn-card__icon { width: 4rem; height: 4rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; border: 1px solid var(--color-border); transition: transform 0.3s ease; }
.learn-card--purple .learn-card__icon { background: rgba(139, 92, 246, 0.1); box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
.learn-card--cyan .learn-card__icon { background: rgba(6, 182, 212, 0.1); box-shadow: 0 0 20px rgba(6, 182, 212, 0.3); }
.learn-card--pink .learn-card__icon { background: rgba(236, 72, 153, 0.1); box-shadow: 0 0 20px rgba(236, 72, 153, 0.3); }
.learn-card--amber .learn-card__icon { background: rgba(245, 158, 11, 0.1); box-shadow: 0 0 20px rgba(245, 158, 11, 0.3); }
.learn-card:hover .learn-card__icon { transform: scale(1.1); }
.learn-card__icon svg { color: var(--color-white); }
.learn-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--color-white); margin-bottom: 0.75rem; line-height: 1.3; }
@media (min-width: 1024px) { .learn-card h3 { font-size: 1.5rem; } }
.learn-card p { color: var(--color-text); font-size: 1rem; line-height: 1.6; }
@media (min-width: 1024px) { .learn-card p { font-size: 1.125rem; } }

/* Pricing Section */
.pricing { position: relative; padding: 7.5rem 1rem; overflow: hidden; }
.pricing__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: flex-start; }
@media (min-width: 1024px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
.pricing__features h3 { font-size: 1.5rem; font-weight: 700; color: var(--color-white); margin-bottom: 2rem; }
.pricing__feature { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; border-radius: 1rem; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)); border: 1px solid rgba(255, 255, 255, 0.08); margin-bottom: 1rem; transition: border-color 0.3s ease; }
.pricing__feature:hover { border-color: rgba(139, 92, 246, 0.3); }
.pricing__feature-icon { flex-shrink: 0; width: 3rem; height: 3rem; border-radius: 0.75rem; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
.pricing__feature-icon svg { color: var(--color-white); }
.pricing__feature h4 { font-size: 1.125rem; font-weight: 600; color: var(--color-white); margin-bottom: 0.25rem; }
.pricing__feature p { color: var(--color-text); }
.pricing__card { position: relative; }
@media (min-width: 1024px) { .pricing__card { position: sticky; top: 2rem; } }
.pricing__card-glow { position: absolute; inset: -4px; background: linear-gradient(to right, var(--color-purple-dark), var(--color-purple), var(--color-purple-dark)); border-radius: 1.5rem; filter: blur(32px); opacity: 0.75; }
.pricing__card-content { position: relative; padding: 2rem 2.5rem; border-radius: 1.5rem; background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.08)); backdrop-filter: blur(20px); border: 2px solid rgba(139, 92, 246, 0.6); box-shadow: 0 0 60px rgba(139, 92, 246, 0.6), 0 0 30px rgba(139, 92, 246, 0.4) inset; }
.pricing__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 9999px; margin-bottom: 1.5rem; background: linear-gradient(to right, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2)); border: 1px solid rgba(245, 158, 11, 0.4); }
.pricing__badge svg { color: var(--color-amber); }
.pricing__badge span { font-size: 0.875rem; font-weight: 600; color: var(--color-amber); }
.pricing__price { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.5rem; }
.pricing__price-current { font-size: clamp(2.5rem, 6vw, 3.75rem); font-weight: 700; color: var(--color-white); }
.pricing__price-old { font-size: 1.5rem; color: var(--color-text); text-decoration: line-through; }
.pricing__discount { color: var(--color-text); margin-bottom: 2rem; }
.pricing__terms { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing__terms li { display: flex; align-items: center; gap: 0.5rem; color: var(--color-text-light); }
.pricing__terms svg { color: var(--color-cyan); }
.pricing__start { padding: 1rem; border-radius: 0.75rem; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--color-border); text-align: center; color: var(--color-text); margin-bottom: 2rem; }
.pricing__start span { font-weight: 600; color: var(--color-white); }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ================================================
   ��������� ����������� - �������� � ����� styles.css
   ================================================ */

@media (max-width: 767px) {
    
    /* 1. ���� ��� ������� - �� ������� �� ������� */
    .story-card {
        padding: 1.25rem;
        margin: 0;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .story-card__content {
        font-size: 0.9375rem;
    }
    
    .gallery__story {
        gap: 1.5rem;
    }
    
    /* 2. ������� � ����� - �� ������� �� ������� */
    .story-stats {
        max-width: 100%;
    }
    
    .story-stats__content {
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
    }
    
    .story-stats__value {
        font-size: 1.125rem;
    }
    
    .story-stats__label {
        font-size: 0.8125rem;
    }
    
    /* 3. ������� ����� - ���� ������� */
    .gallery__showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .browser-card--offset {
        margin-top: 0;
    }
    
    /* 4. ������ - ������ ������ */
    .module__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .module__icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .module__icon svg {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .module__meta {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        flex-direction: row;
        align-items: center;
    }
    
    .module__card {
        position: relative;
    }
    
    .module__title {
        font-size: 1.125rem;
        padding-right: 3rem;
    }
    
    .module__desc {
        font-size: 0.9375rem;
    }
    
    /* ����� ������ ������� */
    .lessons {
        padding: 0.5rem 1rem 1.5rem;
    }
    
    .lesson__header {
        padding: 1rem;
        gap: 1rem;
    }
    
    .lesson__number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.875rem;
    }
    
    .lesson__title {
        font-size: 0.9375rem;
    }
    
    .lesson__list {
        margin-left: 3.5rem;
        padding: 0.5rem 1rem 1rem;
    }
    
    .lesson__result {
        margin-left: 3.5rem;
        padding: 0.5rem 1rem 1rem;
    }
}

/* ================================================
   OUTPUT SECTION - ���� ��������� ���������
   �������� � styles.css
   ================================================ */

/* Output Section */
.output {
    position: relative;
    padding: 7.5rem 1rem;
    overflow: hidden;
}

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

@media (min-width: 768px) {
    .output-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.output-card {
    position: relative;
}

.output-card__glow {
    position: absolute;
    inset: -1px;
    border-radius: 1.5rem;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.output-card--cyan .output-card__glow {
    background: rgba(6, 182, 212, 0.4);
}

.output-card--purple .output-card__glow {
    background: rgba(139, 92, 246, 0.4);
}

.output-card--pink .output-card__glow {
    background: rgba(236, 72, 153, 0.4);
}

.output-card--amber .output-card__glow {
    background: rgba(245, 158, 11, 0.5);
}

.output-card:hover .output-card__glow {
    opacity: 1;
}

.output-card__content {
    position: relative;
    height: 100%;
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.output-card--cyan .output-card__content {
    border-color: rgba(6, 182, 212, 0.5);
}

.output-card--purple .output-card__content {
    border-color: rgba(139, 92, 246, 0.5);
}

.output-card--pink .output-card__content {
    border-color: rgba(236, 72, 153, 0.5);
}

.output-card--amber .output-card__content {
    border-color: rgba(245, 158, 11, 0.5);
}

.output-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.output-card__number {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--color-cyan), var(--color-cyan-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.output-card__number--purple {
    background: linear-gradient(to right, var(--color-purple), var(--color-purple-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.output-card__number--pink {
    background: linear-gradient(to right, var(--color-pink), var(--color-pink-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.output-card__number--amber {
    background: linear-gradient(to right, var(--color-amber), var(--color-amber-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.output-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.output-card__icon--cyan {
    background: linear-gradient(to right, var(--color-cyan), var(--color-cyan-dark));
}

.output-card__icon--purple {
    background: linear-gradient(to right, var(--color-purple), var(--color-purple-dark));
}

.output-card__icon--pink {
    background: linear-gradient(to right, var(--color-pink), var(--color-pink-dark));
}

.output-card__icon--amber {
    background: linear-gradient(to right, var(--color-amber), var(--color-amber-dark));
}

.output-card__icon svg {
    color: var(--color-white);
}

.output-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.output-card__desc {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.output-card__links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.output-card__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.output-card__link svg {
    flex-shrink: 0;
}

.output-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.125rem;
    color: var(--color-text);
    font-style: italic;
}

/* ================================================
   BONUS SECTION - �������� ����
   �������� � styles.css
   ================================================ */

/* Bonus Section */
.bonus {
    position: relative;
    padding: 7.5rem 1rem;
    overflow: hidden;
}

.bonus__bg {
    position: absolute;
    inset: 0;
}

.bonus__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: linear-gradient(to right, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 50%;
    filter: blur(200px);
}

.bonus__card {
    position: relative;
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.3);
}

@media (min-width: 768px) {
    .bonus__card {
        padding: 3rem;
    }
}

.bonus__card-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(to right, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 1.5rem;
    filter: blur(32px);
    opacity: 0.6;
    z-index: -1;
}

.bonus__content {
    position: relative;
}

/* Badge */
.bonus__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--color-purple), var(--color-cyan));
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Header */
.bonus__header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .bonus__header {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.bonus__title {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
}

/* Price Card */
.bonus__price-card {
    position: relative;
    flex-shrink: 0;
}

.bonus__price-glow {
    position: absolute;
    inset: -8px;
    background: linear-gradient(to right, rgba(6, 182, 212, 0.6), rgba(139, 92, 246, 0.6), rgba(6, 182, 212, 0.6));
    border-radius: 1.5rem;
    filter: blur(32px);
}

.bonus__price-content {
    position: relative;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.4), rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.4));
    border: 3px solid rgba(34, 211, 238, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.4);
    min-width: 280px;
}

@media (min-width: 768px) {
    .bonus__price-content {
        min-width: 320px;
    }
}

.bonus__price-old {
    font-size: 1rem;
    color: var(--color-text);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .bonus__price-old {
        font-size: 1.125rem;
    }
}

.bonus__price-new {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4ADE80;
    text-shadow: 0 0 12px rgba(74, 222, 128, 0.6);
}

@media (min-width: 768px) {
    .bonus__price-new {
        font-size: 2rem;
    }
}

/* Body */
.bonus__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .bonus__body {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Info */
.bonus__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bonus__text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bonus__text p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.bonus__why {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-left: 4px solid var(--color-cyan);
    backdrop-filter: blur(8px);
}

.bonus__why h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.bonus__why p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Structure */
.bonus__structure h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.bonus__lessons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

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

@media (min-width: 1024px) {
    .bonus__lessons {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1280px) {
    .bonus__lessons {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bonus__lesson {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.bonus__lesson-num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: linear-gradient(to right, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    background-image: linear-gradient(to right, #A78BFA, #22D3EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: border-color 0.3s ease;
}

.bonus__lesson:hover .bonus__lesson-num {
    border-color: rgba(139, 92, 246, 0.6);
}

.bonus__lesson-title {
    color: var(--color-text-light);
    font-size: 0.875rem;
    line-height: 1.6;
    padding-top: 0.25rem;
}

/* Bonus 2 - Orange Variant */
.bonus__glow--orange {
    background: linear-gradient(to right, rgba(249, 115, 22, 0.2), rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2));
}

.bonus__card--orange {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 0 60px rgba(249, 115, 22, 0.3);
}

.bonus__card-glow--orange {
    background: linear-gradient(to right, rgba(249, 115, 22, 0.2), rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2));
}

.bonus__badge--orange {
    background: linear-gradient(to right, #ea580c, #d97706);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.6);
}

.bonus__price-card--orange .bonus__price-glow--orange {
    background: linear-gradient(to right, rgba(249, 115, 22, 0.6), rgba(245, 158, 11, 0.6), rgba(249, 115, 22, 0.6));
}

.bonus__price-content--orange {
    background: linear-gradient(to bottom right, rgba(154, 52, 18, 0.4), rgba(120, 53, 15, 0.3), rgba(154, 52, 18, 0.4));
    border-color: rgba(251, 191, 36, 0.8);
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.4);
}

.bonus__why--orange {
    border-left-color: #f59e0b;
}

.text-amber {
    color: #fbbf24;
    font-weight: 700;
}

.text-green {
    color: #4ade80;
    font-weight: 700;
}

/* Bonus Feature List */
.bonus__features-list h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.bonus__feature-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bonus__feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.bonus__feature-icon-box {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(to right, rgba(249, 115, 22, 0.2), rgba(245, 158, 11, 0.2));
    border: 1px solid rgba(249, 115, 22, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
}

.bonus__feature-item p {
    color: var(--color-text-light);
    line-height: 1.6;
    padding-top: 0.375rem;
}

/* ����������� �������� ��� Safari */
.module__content,
.lesson__content {
    transition: max-height 0.3s ease-out;
    will-change: max-height;
}

.module__chevron,
.lesson__chevron {
    transition: transform 0.3s ease-out;
    will-change: transform;
}

/* ��������� blur �� ������ ����������� */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Bonus Section - Mobile Fixes */
@media (max-width: 767px) {
    .bonus__title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .bonus__price-card {
        max-width: 100%;
    }
    
    .bonus__price-content {
        min-width: auto;
        width: 100%;
        padding: 1.25rem 1.5rem;
    }
    
    .bonus__price-old {
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
    }
    
    .bonus__price-new {
        font-size: 1.375rem;
        line-height: 1.3;
    }
    
    .bonus__card {
        padding: 1.5rem;
    }
}

/* ================================================
   AI COST SECTION - ������� ����� ����� �� ��
   �������� � styles.css
   ================================================ */

/* AI Cost Section */
.ai-cost {
    position: relative;
    padding: 7.5rem 1rem;
    overflow: hidden;
}

.ai-cost__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .ai-cost__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Cards */
.ai-cost__card {
    position: relative;
    height: 100%;
}

.ai-cost__card-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(to right, rgba(139, 92, 246, 0.4), rgba(6, 182, 212, 0.4));
    border-radius: 1.5rem;
    filter: blur(20px);
    opacity: 0.6;
    animation: pulse 3s infinite;
}

.ai-cost__card--recommended .ai-cost__card-glow {
    opacity: 0.8;
}

.ai-cost__card:hover .ai-cost__card-glow {
    opacity: 1;
}

.ai-cost__card-content {
    position: relative;
    height: 100%;
    padding: 2rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
}

.ai-cost__card--recommended .ai-cost__card-content {
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border: 2px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.ai-cost__card--basic .ai-cost__card-content {
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-cost__card--basic:hover .ai-cost__card-content {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Badge */
.ai-cost__badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5rem 1rem;
    border-radius: 0 1.25rem 0 1rem;
    background: linear-gradient(to right, var(--color-purple), var(--color-cyan));
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

/* Price */
.ai-cost__price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ai-cost__card--recommended .ai-cost__price {
    margin-top: 1rem;
}

.ai-cost__price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
}

@media (min-width: 768px) {
    .ai-cost__price-value {
        font-size: 3.75rem;
    }
}

.ai-cost__card--recommended .ai-cost__price-value {
    background: linear-gradient(to right, #A78BFA, #22D3EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-cost__price-period {
    font-size: 1.25rem;
    color: var(--color-text);
}

.ai-cost__desc {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Note */
.ai-cost__note {
    position: relative;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-left: 4px solid var(--color-cyan);
    backdrop-filter: blur(8px);
}

.ai-cost__note h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.ai-cost__note p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.text-cyan {
    color: #22D3EE;
    font-weight: 700;
}

/* ================================================
   FURTHER DEVELOPMENT — Factories Section
   ================================================ */

.further-dev {
    position: relative;
    padding: 7.5rem 1rem;
    overflow: hidden;
}

.further-dev__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .further-dev__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.factory-card {
    position: relative;
}

.factory-card__glow {
    position: absolute;
    inset: -1px;
    border-radius: 1.5rem;
    filter: blur(24px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.factory-card:hover .factory-card__glow {
    opacity: 0.4;
}

.factory-card--purple .factory-card__glow {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(124, 58, 237, 0.3));
}

.factory-card--cyan .factory-card__glow {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.4), rgba(8, 145, 178, 0.3));
}

.factory-card--pink .factory-card__glow {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.4), rgba(219, 39, 119, 0.3));
}

.factory-card__content {
    position: relative;
    height: 100%;
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.factory-card--purple .factory-card__content {
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.factory-card--cyan .factory-card__content {
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.factory-card--pink .factory-card__content {
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.factory-card:hover .factory-card__content {
    border-color: rgba(255, 255, 255, 0.2);
}

.factory-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.factory-card__number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.factory-card--purple .factory-card__number {
    background: linear-gradient(135deg, #A78BFA, #7C3AED);
    -webkit-background-clip: text;
    background-clip: text;
}

.factory-card--cyan .factory-card__number {
    background: linear-gradient(135deg, #22D3EE, #0891B2);
    -webkit-background-clip: text;
    background-clip: text;
}

.factory-card--pink .factory-card__number {
    background: linear-gradient(135deg, #F472B6, #DB2777);
    -webkit-background-clip: text;
    background-clip: text;
}

.factory-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.factory-card--purple .factory-card__icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.factory-card--cyan .factory-card__icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(8, 145, 178, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.factory-card--pink .factory-card__icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.1));
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.factory-card--purple .factory-card__icon svg {
    color: #A78BFA;
}

.factory-card--cyan .factory-card__icon svg {
    color: #22D3EE;
}

.factory-card--pink .factory-card__icon svg {
    color: #F472B6;
}

.factory-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.factory-card__desc {
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.6;
}

/* ================================================
   PRICING TIMER
   ================================================ */

.pricing__timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1.25rem;
    border-radius: 1rem;
    background: linear-gradient(to right, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.pricing__timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 3.5rem;
}

@media (min-width: 480px) {
    .pricing__timer-item {
        min-width: 4.5rem;
    }
}

.pricing__timer-value {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(to right, #A78BFA, #22D3EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

@media (min-width: 480px) {
    .pricing__timer-value {
        font-size: 2.25rem;
    }
}

.pricing__timer-label {
    font-size: 0.625rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

@media (min-width: 480px) {
    .pricing__timer-label {
        font-size: 0.75rem;
    }
}

.pricing__timer-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(139, 92, 246, 0.5);
    margin-bottom: 1rem;
}

@media (min-width: 480px) {
    .pricing__timer-separator {
        font-size: 2rem;
    }
}

/* �������� ��������� ��� ����� ������� */
.pricing__timer--urgent {
    animation: timerPulse 1s ease-in-out infinite;
    border-color: rgba(239, 68, 68, 0.5);
    background: linear-gradient(to right, rgba(239, 68, 68, 0.15), rgba(245, 158, 11, 0.15));
}

.pricing__timer--urgent .pricing__timer-value {
    background: linear-gradient(to right, #EF4444, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes timerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}
/* ================================================
   SITE HEADER
   ================================================ */

body {
    padding-top: 5rem;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #171B24;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.site-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header__logo img {
    height: 3.9rem;
    width: auto;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-header__link {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: 0.5rem;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.site-header__link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.06);
}

.site-header__link--cta {
    color: var(--color-white);
    background: linear-gradient(to right, #7C3AED, #EC4899);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.35);
    margin-left: 0.5rem;
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
}

.site-header__link--cta:hover {
    color: var(--color-white);
    background: linear-gradient(to right, #7C3AED, #EC4899);
    box-shadow: 0 0 36px rgba(236, 72, 153, 0.6);
    transform: translateY(-2px);
}

/* Mobile burger */
.site-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.site-header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.site-header__mobile-menu {
    display: none;
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    background: #171B24;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 999;
}

.site-header__mobile-menu .site-header__link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 0.75rem;
}

.site-header__mobile-menu .site-header__link--cta {
    text-align: center;
    margin-left: 0;
    margin-top: 0.5rem;
    padding: 0.875rem 1.25rem;
}

@media (max-width: 767px) {
    .site-header__nav {
        display: none;
    }

    .site-header__burger {
        display: flex;
    }

    .site-header__mobile-menu--open {
        display: flex;
    }

    .site-header__burger--open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .site-header__burger--open span:nth-child(2) {
        opacity: 0;
    }
    .site-header__burger--open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* ================================================
   PRICING TWO-TIER
   ================================================ */

.pricing-tiers {
    position: relative;
    padding: 7.5rem 1rem;
    overflow: hidden;
}

.pricing-tiers__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-tiers__grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
    }
}

.tier-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: visible;
    transition: transform 0.4s ease;
}

.tier-card:hover {
    transform: translateY(-4px);
}

.tier-card__inner {
    position: relative;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tier-card--premium .tier-card__inner {
    border: 2px solid rgba(139, 92, 246, 0.5);
    background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.12), rgba(6, 182, 212, 0.05));
    box-shadow:
        0 0 60px rgba(139, 92, 246, 0.25),
        0 0 20px rgba(139, 92, 246, 0.15) inset;
}

.tier-card--premium .tier-card__glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(to right, var(--color-purple-dark), var(--color-purple), var(--color-cyan), var(--color-purple-dark));
    border-radius: 1.5rem;
    filter: blur(28px);
    opacity: 0.5;
    z-index: -1;
}

.tier-card__recommended {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1.25rem;
    border-radius: 9999px;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow-purple);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
    z-index: 10;
    letter-spacing: 0.02em;
}

.tier-card__header {
    margin-bottom: 2rem;
}

.tier-card__name {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.tier-card--premium .tier-card__name {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.tier-card__price-value {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
}

.tier-card__price-old {
    font-size: 1.25rem;
    color: var(--color-text);
    text-decoration: line-through;
}

.tier-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    margin-bottom: 2rem;
}

.tier-card__feature-group {
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tier-card__feature-group:last-child {
    border-bottom: none;
}

.tier-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.tier-card__feature-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.1rem;
}

.tier-card__feature-icon svg {
    color: var(--color-cyan);
}

.tier-card--premium .tier-card__feature-icon svg {
    color: #A78BFA;
}

.tier-card__feature-icon--bonus svg {
    color: var(--color-amber) !important;
}

.tier-card__feature-text {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.tier-card__feature-text strong {
    color: var(--color-white);
    font-weight: 600;
}

.tier-card__feature-text span {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-text);
    margin-top: 0.15rem;
}

.tier-card__feature--dimmed {
    opacity: 0.3;
}

.tier-card__feature--dimmed .tier-card__feature-icon svg {
    color: var(--color-text) !important;
}

.tier-card__separator {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text);
    padding: 1rem 0 0.5rem;
    margin-top: 0.25rem;
}

.tier-card--premium .tier-card__separator {
    color: #A78BFA;
}

/* Secondary button */
.btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

/* Common footer under tiers */
.pricing-tiers__common {
    max-width: 960px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
}

.pricing-tiers__common-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.pricing-tiers__common-item svg {
    flex-shrink: 0;
    color: var(--color-cyan);
}

/* Promo block (special offer) */
.pricing-tiers__promo {
    max-width: 720px;
    margin: 0 auto 1.25rem;
    padding: 1.25rem 1.75rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, rgba(236, 72, 153, 0.12), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(236, 72, 153, 0.35);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}
.pricing-tiers__promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.85rem;
    border-radius: 9999px;
    background: linear-gradient(to right, rgba(236, 72, 153, 0.25), rgba(245, 158, 11, 0.25));
    border: 1px solid rgba(236, 72, 153, 0.45);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.pricing-tiers__promo-badge svg { color: #FBBF24; }
.pricing-tiers__promo-text {
    margin: 0;
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.5;
}
.pricing-tiers__promo-text strong { color: var(--color-white); font-weight: 700; }
@media (max-width: 640px) {
    .pricing-tiers__promo { padding: 1rem 1.15rem; }
    .pricing-tiers__promo-text { font-size: 0.9375rem; }
}

/* Countdown Timer */
.pricing-tiers__timer {
    max-width: 960px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    background: linear-gradient(to right, rgba(139, 92, 246, 0.12), rgba(6, 182, 212, 0.12));
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.pricing-tiers__timer-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-right: 0.5rem;
}

.pricing-tiers__timer-blocks {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-tiers__timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 3.25rem;
}

.pricing-tiers__timer-value {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(to right, #A78BFA, #22D3EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-tiers__timer-unit {
    font-size: 0.625rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
}

.pricing-tiers__timer-sep {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(139, 92, 246, 0.45);
    margin-bottom: 0.875rem;
}

.pricing-tiers__timer--expired {
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(to right, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.1));
}

.pricing-tiers__timer--expired .pricing-tiers__timer-value {
    background: linear-gradient(to right, #EF4444, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 767px) {
    .tier-card__inner {
        padding: 2rem 1.5rem;
    }

    .tier-card--premium {
        order: -1;
    }

    .pricing-tiers__common {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 560px) {
    .pricing-tiers__timer {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 1.25rem;
    }

    .pricing-tiers__timer-label {
        margin-right: 0;
    }

    .pricing-tiers__timer-value {
        font-size: 1.5rem;
    }

    .pricing-tiers__timer-block {
        min-width: 2.75rem;
    }
}

/* ================================================
   SITE FOOTER
   ================================================ */

.site-footer {
    position: relative;
    z-index: 1;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.site-footer__left {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.site-footer__text {
    font-size: 0.8125rem;
    color: var(--color-text);
}

.site-footer__tg {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: color 0.25s ease;
}

.site-footer__tg:hover {
    color: #29B6F6;
}

@media (min-width: 640px) {
    .site-footer__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .site-footer__left {
        text-align: left;
        align-items: flex-start;
    }

    .site-footer__right {
        text-align: right;
        align-items: flex-end;
    }
}

@media (max-width: 639px) {
    .site-footer__left {
        align-items: center;
    }
}

/* ================================================
   MINI-COURSE MODULE CARDS (no accordion)
   ================================================ */

.module--static .module__card {
    transition: border-color 0.3s ease;
}

.module__header--static {
    cursor: default;
}

.module__header--static .module__chevron {
    display: none;
}

.module__meta--static {
    display: flex;
    align-items: center;
}

.module__card--pink {
    border-color: rgba(236, 72, 153, 0.3);
    background: linear-gradient(to bottom right, rgba(236, 72, 153, 0.08), rgba(255, 255, 255, 0.04));
}

.module__card--pink:hover {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.15);
}

.module__icon--pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.1));
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.module__icon--pink svg {
    color: #F472B6;
}

.module__label--pink {
    color: #F472B6;
}

.module__card--green {
    border-color: rgba(16, 185, 129, 0.3);
    background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.08), rgba(255, 255, 255, 0.04));
}

.module__card--green:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.15);
}

.module__icon--green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.module__icon--green svg {
    color: #34D399;
}

.module__label--green {
    color: #34D399;
}

/* ================================================
   GUARANTEE Section
   ================================================ */
.guarantee { position: relative; padding: 7.5rem 1rem; overflow: hidden; }
.guarantee .section-header { display: flex; flex-direction: column; align-items: center; }
.guarantee__shield { display: inline-flex; align-items: center; justify-content: center; width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 1.5rem; background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.22), rgba(6, 182, 212, 0.18)); border: 1px solid rgba(16, 185, 129, 0.45); box-shadow: 0 0 40px rgba(16, 185, 129, 0.25); color: #4ADE80; }
.guarantee .section-subtitle strong { color: var(--color-white); font-weight: 700; }
.guarantee__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
@media (min-width: 768px) { .guarantee__grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; } }
.guarantee-card { position: relative; padding: 1.875rem 1.75rem; border-radius: 1.25rem; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)); border: 1px solid rgba(139, 92, 246, 0.3); backdrop-filter: blur(12px); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; overflow: hidden; }
.guarantee-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--color-purple), var(--color-cyan)); opacity: 0.7; }
.guarantee-card:hover { transform: translateY(-3px); border-color: rgba(139, 92, 246, 0.5); box-shadow: 0 0 30px rgba(139, 92, 246, 0.2); }
.guarantee-card__head { display: flex; align-items: baseline; gap: 0.875rem; margin-bottom: 0.875rem; }
.guarantee-card__num { font-size: 1.875rem; font-weight: 800; line-height: 1; background: linear-gradient(to right, var(--color-purple), var(--color-cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.guarantee-card__title { margin: 0; font-size: 1.25rem; font-weight: 700; color: var(--color-white); line-height: 1.3; }
.guarantee-card p { margin: 0; color: var(--color-text-light); font-size: 1rem; line-height: 1.65; }
.guarantee-card p strong { color: var(--color-white); font-weight: 700; }

.guarantee__terms { max-width: 1000px; margin: 2.5rem auto 0; padding: 1.5rem 1.75rem; border-radius: 1rem; background: linear-gradient(to right, rgba(16, 185, 129, 0.08), rgba(6, 182, 212, 0.08)); border: 1px solid rgba(16, 185, 129, 0.3); text-align: center; }
.guarantee__terms-title { margin: 0 0 0.5rem; font-size: 1.125rem; font-weight: 700; color: var(--color-white); }
.guarantee__terms p { margin: 0; color: var(--color-text-light); font-size: 1rem; line-height: 1.6; }
.guarantee__terms strong { color: #4ADE80; font-weight: 700; }

.guarantee__outcomes { max-width: 1000px; margin: 2.5rem auto 0; padding: 2rem 1.75rem; border-radius: 1.25rem; background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.08), rgba(6, 182, 212, 0.05)); border: 1px solid rgba(139, 92, 246, 0.25); }
.guarantee__outcomes-lead { margin: 0 0 1.25rem; color: var(--color-white); font-size: 1.0625rem; font-weight: 600; text-align: center; }
.guarantee__outcomes-list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.guarantee__outcomes-list li { display: flex; align-items: flex-start; gap: 0.875rem; color: var(--color-text-light); font-size: 1rem; line-height: 1.55; }
.guarantee__outcomes-list strong { color: var(--color-white); font-weight: 700; }
.guarantee__bullet { flex: 0 0 auto; width: 10px; height: 10px; border-radius: 50%; margin-top: 0.45rem; }
.guarantee__bullet--purple { background: var(--color-purple); box-shadow: 0 0 12px rgba(139, 92, 246, 0.6); }
.guarantee__bullet--cyan { background: var(--color-cyan); box-shadow: 0 0 12px rgba(6, 182, 212, 0.6); }
.guarantee__bullet--green { background: #10B981; box-shadow: 0 0 12px rgba(16, 185, 129, 0.6); }
.guarantee__outcomes-final { margin: 1.5rem 0 0; text-align: center; font-size: 1.125rem; line-height: 1.5; }

@media (max-width: 640px) {
    .guarantee__shield { width: 68px; height: 68px; }
    .guarantee-card { padding: 1.5rem 1.25rem; }
    .guarantee-card__num { font-size: 1.5rem; }
    .guarantee-card__title { font-size: 1.125rem; }
    .guarantee__terms, .guarantee__outcomes { padding: 1.5rem 1.15rem; }
}

/* ================================================
   FAQ Section
   ================================================ */
.faq { position: relative; padding: 7.5rem 1rem; overflow: hidden; }
.faq__items { display: flex; flex-direction: column; gap: 0.875rem; max-width: 880px; margin: 0 auto; }
.faq__item { border-radius: 1rem; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)); border: 1px solid var(--color-border); overflow: hidden; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.faq__item:hover { border-color: rgba(139, 92, 246, 0.35); }
.faq__item.open { border-color: rgba(139, 92, 246, 0.55); box-shadow: 0 0 30px rgba(139, 92, 246, 0.15); }
.faq__header { width: 100%; padding: 1.5625rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; background: transparent; border: none; cursor: pointer; color: var(--color-white); text-align: left; font: inherit; transition: background 0.2s ease; }
.faq__header:hover { background: rgba(255, 255, 255, 0.025); }
.faq__question { font-size: 1.0625rem; font-weight: 600; line-height: 1.45; }
.faq__chevron { flex-shrink: 0; transition: transform 0.35s ease; color: var(--color-cyan); }
.faq__item.open .faq__chevron { transform: rotate(180deg); }
.faq__content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__content p { padding: 0 1.5rem 1.6875rem; margin: 0; color: var(--color-text-light); line-height: 1.7; font-size: 1rem; }
@media (max-width: 640px) { .faq__header { padding: 1.3125rem 1.15rem; } .faq__question { font-size: 0.9875rem; } .faq__content p { padding: 0 1.15rem 1.46875rem; } }

/* ================================================
   P.S. Section
   ================================================ */
.ps { position: relative; padding: 7.5rem 1rem; overflow: hidden; }
.ps__card { position: relative; max-width: 760px; margin: 0 auto; padding: 2.75rem 2.25rem; border-radius: 1.5rem; background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.06)); border: 1px solid rgba(139, 92, 246, 0.35); backdrop-filter: blur(20px); }
.ps__card-glow { position: absolute; inset: -2px; background: linear-gradient(to right, rgba(139, 92, 246, 0.3), rgba(6, 182, 212, 0.3), rgba(139, 92, 246, 0.3)); border-radius: 1.5rem; filter: blur(24px); opacity: 0.45; z-index: -1; }
.ps__content { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
.ps__label { display: inline-flex; padding: 0.4rem 1.1rem; border-radius: 9999px; background: linear-gradient(to right, rgba(139, 92, 246, 0.25), rgba(6, 182, 212, 0.25)); border: 1px solid rgba(139, 92, 246, 0.5); color: var(--color-white); font-weight: 800; font-size: 0.9rem; letter-spacing: 0.08em; }
.ps__text { color: var(--color-text-light); font-size: 1.0625rem; line-height: 1.7; max-width: 580px; }
.ps__text strong { color: var(--color-white); font-weight: 700; }
@media (max-width: 640px) { .ps__card { padding: 2rem 1.25rem; } .ps__text { font-size: 1rem; } }


