/* ========================================
   FIGURA KLUB - Zensky Klub
   Design System v3
   ======================================== */

/* === Variables === */
:root {
    --paper: #fffaf5;
    --coral: #ff7f6e;
    --coral-dark: #e86b5a;
    --rose: #b64063;
    --plum: #4b244a;
    --plum-light: #6b3d6a;
    --mint: #d9f0df;
    --mint-dark: #b8dfc4;
    --cream: #fff3e7;
    --gold: #f2bd4b;
    --gold-dark: #daa520;

    --text-dark: #2c2028;
    --text-body: #544950;
    --text-light: #8a7f85;
    --white: #ffffff;
    --border: rgba(75, 36, 74, 0.08);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --container: 1200px;
    --nav-height: 72px;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

    --shadow-sm: 0 2px 8px rgba(75, 36, 74, 0.06);
    --shadow-md: 0 8px 32px rgba(75, 36, 74, 0.08);
    --shadow-lg: 0 16px 48px rgba(75, 36, 74, 0.1);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
}

/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--white);
    overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* === Container === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* === Reveal Animations === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal--left { transform: translateX(-40px) translateY(0); }
.reveal--right { transform: translateX(40px) translateY(0); }
.reveal--visible { opacity: 1; transform: translateY(0) translateX(0); }

/* Stagger */
.target-grid .reveal:nth-child(2),
.benefit-grid .reveal:nth-child(2),
.pricing-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.target-grid .reveal:nth-child(3),
.benefit-grid .reveal:nth-child(3),
.pricing-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.target-grid .reveal:nth-child(4),
.benefit-grid .reveal:nth-child(4),
.pricing-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.target-grid .reveal:nth-child(5),
.benefit-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.target-grid .reveal:nth-child(6),
.benefit-grid .reveal:nth-child(6) { transition-delay: 0.4s; }

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 50px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: 2px solid transparent;
}
.btn--primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}
.btn--primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 127, 110, 0.3);
}
.btn--ghost {
    background: transparent;
    color: var(--plum);
    border-color: rgba(75, 36, 74, 0.2);
}
.btn--ghost:hover {
    border-color: var(--plum);
    transform: translateY(-2px);
}
.btn--outline {
    background: transparent;
    color: var(--plum);
    border-color: var(--plum);
}
.btn--outline:hover {
    background: var(--plum);
    color: var(--white);
    transform: translateY(-2px);
}
.btn--gold {
    background: var(--gold);
    color: var(--plum);
    border-color: var(--gold);
    font-weight: 700;
}
.btn--gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 189, 75, 0.3);
}
.btn--white {
    background: var(--white);
    color: var(--plum);
    border-color: var(--white);
}
.btn--white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn--full { width: 100%; }

/* === Flash messages === */
.flash {
    position: fixed;
    top: calc(var(--nav-height) + 12px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 480px;
    width: calc(100% - 32px);
    box-shadow: var(--shadow-md);
}
.flash--success { background: var(--mint); color: #2d6a3e; border: 1px solid var(--mint-dark); }
.flash--error { background: #fce4ec; color: #c62828; border: 1px solid #f8bbd0; }
.flash--warning { background: #fff3e7; color: #e65100; border: 1px solid #ffe0b2; }
.flash__close {
    background: none; border: none; font-size: 1.25rem;
    cursor: pointer; color: inherit; padding: 0; line-height: 1;
    margin-left: auto;
}

/* === Navigation === */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all 0.3s var(--ease);
}
.nav--scrolled {
    background: rgba(255, 250, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}
.nav__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--plum);
    letter-spacing: 0.1em;
}
.nav__menu { display: flex; gap: 32px; align-items: center; }
.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--coral);
    transition: width 0.3s var(--ease);
}
.nav__link:hover, .nav__link--active { color: var(--plum); }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__link--cta {
    background: var(--coral);
    color: var(--white) !important;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--coral-dark); }
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px; width: 28px;
    padding: 4px 0;
}
.nav__toggle span {
    display: block; width: 100%; height: 2px;
    background: var(--plum); border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.nav__toggle--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle--open span:nth-child(2) { opacity: 0; }
.nav__toggle--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === Hero === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--paper);
}
.hero__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 127, 110, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(182, 64, 99, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(217, 240, 223, 0.2) 0%, transparent 50%);
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero__content {
    text-align: left;
    max-width: 600px;
    padding: 120px 0 80px;
}
.hero__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 16px;
    padding: 8px 20px;
    border: 1px solid rgba(182, 64, 99, 0.25);
    border-radius: 50px;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--plum);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero__subtitle {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 480px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 100px;
    position: relative;
}
.hero__visual picture {
    display: block; max-width: 400px; width: 100%;
    position: relative; z-index: 1;
}
.hero__visual img {
    width: 100%; height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.hero__blob {
    position: absolute;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mint) 0%, rgba(255, 127, 110, 0.15) 100%);
    top: 50%; left: 50%;
    transform: translate(-50%, -45%);
    z-index: 0;
}

/* === Sections === */
.section { padding: 100px 0; }
.section--cream { background: var(--cream); }
.section--plum { background: var(--plum); }
.section--mint { background: var(--mint); }
.section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.section__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 12px;
}
.section--plum .section__tag { color: var(--coral); }
.section--mint .section__tag { color: var(--plum); }
.section__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--plum);
    margin-bottom: 12px;
}
.section--plum .section__title { color: var(--white); }
.section__desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}
.section__closing {
    text-align: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    color: var(--rose);
    margin-top: 48px;
}

/* === Target Cards (Pre koho) === */
.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.target-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.target-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.target-card__icon {
    font-size: 32px;
    margin-bottom: 16px;
}
.target-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 8px;
    line-height: 1.3;
}
.target-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* === Benefit Cards (Co dostanes) === */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.benefit-card {
    background: var(--paper);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.benefit-card__number {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--coral);
    margin-bottom: 16px;
    display: block;
}
.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 10px;
}
.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

/* === Philosophy === */
.philosophy {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}
.philosophy__quote {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 24px;
    border: none;
}
.philosophy__author {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

/* === Pricing Cards === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 24px 32px;
    border: 2px solid var(--border);
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.pricing-card--popular {
    border-color: var(--coral);
    box-shadow: var(--shadow-md);
}
.pricing-card--premium {
    border-color: var(--gold);
}
.pricing-card__badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
}
.pricing-card__header { margin-bottom: 24px; }
.pricing-card__header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 8px;
}
.pricing-card__price {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--plum);
    line-height: 1;
}
.pricing-card__price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}
.pricing-card__features {
    flex-grow: 1;
    margin-bottom: 24px;
    text-align: left;
}
.pricing-card__features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-body);
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid rgba(75, 36, 74, 0.04);
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li::before {
    content: '\2713';
    position: absolute;
    left: 0; top: 8px;
    color: var(--coral);
    font-weight: 700;
    font-size: 14px;
}

/* === Noshame === */
.noshame {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}
.noshame__content p {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.7;
}
.noshame__values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.noshame__value {
    background: var(--paper);
    border-radius: var(--radius-sm);
    padding: 24px;
}
.noshame__icon {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}
.noshame__value h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 4px;
}
.noshame__value p {
    font-size: 14px;
    color: var(--text-light);
}

/* === Register === */
.register {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.register__content {
    margin-bottom: 32px;
}
.register__content p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.6;
}
.register__form { }
.register__input-group {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}
.register__input-group input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(75, 36, 74, 0.12);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
}
.register__input-group input:focus {
    border-color: var(--coral);
}
.register__input-group input::placeholder { color: var(--text-light); }
.register__note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-light);
}

/* === Footer === */
.footer {
    background: var(--plum);
    padding: 48px 0 32px;
}
.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
}
.footer__brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}
.footer__links { display: flex; gap: 28px; }
.footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom { padding-top: 24px; }
.footer__bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero__content { text-align: center; max-width: 640px; margin: 0 auto; padding: 120px 0 0; }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__visual { padding-top: 0; padding-bottom: 40px; }
    .hero__visual picture { max-width: 320px; }
    .hero__blob { width: 340px; height: 340px; }
    .target-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .noshame { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    :root { --nav-height: 64px; }
    .nav__toggle { display: flex; }
    .nav__menu {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: 280px;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.08);
    }
    .nav__menu--open { transform: translateX(0); }
    .nav__link {
        font-size: 17px;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }
    .nav__link::after { display: none; }
    .nav__link--cta { margin-top: 16px; text-align: center; display: block; }
    .section { padding: 72px 0; }
    .section__header { margin-bottom: 40px; }
    .hero__content { padding: 100px 0 0; }
    .hero__visual picture { max-width: 260px; }
    .hero__blob { width: 280px; height: 280px; }
    .target-grid { grid-template-columns: 1fr; }
    .benefit-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .noshame__values { flex-direction: row; flex-wrap: wrap; gap: 16px; }
    .noshame__value { flex: 1; min-width: 140px; }
    .register__input-group { flex-direction: column; }
    .register__input-group input { border-radius: var(--radius-sm); }
    .register__input-group .btn { border-radius: var(--radius-sm); }
    .footer__content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .footer__links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__title { font-size: 42px; }
    .btn { padding: 12px 24px; font-size: 14px; }
    .pricing-card { padding: 28px 20px 24px; }
}
