/* ============================================
   ArmoniaEterna — Rose / Blush Theme
   Palette: #be185d (rose), #fff1f2 (blush bg), #881337 (burgundy)
   Fonts: Playfair Display + Work Sans
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --rose: #be185d;
    --rose-light: #f472b6;
    --rose-dark: #9f1239;
    --burgundy: #881337;
    --blush: #fff1f2;
    --blush-deep: #ffe4e6;
    --white: #ffffff;
    --gray-50: #fdf2f4;
    --gray-100: #fce7ea;
    --gray-200: #fbd5da;
    --gray-400: #d4a0ab;
    --gray-600: #6b3a4a;
    --gray-700: #4a2030;
    --gray-800: #3b1323;
    --gray-900: #2d0d1a;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Work Sans', 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(136, 19, 55, 0.08);
    --shadow-md: 0 4px 16px rgba(136, 19, 55, 0.1);
    --shadow-lg: 0 8px 32px rgba(136, 19, 55, 0.12);
    --shadow-xl: 0 16px 48px rgba(136, 19, 55, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--gray-800);
    background: var(--blush);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { color: var(--rose); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--burgundy); }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--gray-900); line-height: 1.25; }

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 48px;
    font-weight: 300;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: var(--white);
    border-color: transparent;
}
.btn--primary:hover { background: linear-gradient(135deg, var(--rose-dark), var(--burgundy)); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--outline {
    background: transparent;
    color: var(--rose);
    border-color: var(--rose);
}
.btn--outline:hover { background: var(--rose); color: var(--white); transform: translateY(-2px); }

.btn--white {
    background: var(--white);
    color: var(--rose);
    border-color: var(--white);
}
.btn--white:hover { background: var(--blush); color: var(--burgundy); transform: translateY(-2px); }

.btn--lg { padding: 16px 40px; font-size: 1.05rem; }
.btn--sm { padding: 8px 20px; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 241, 242, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(190, 24, 93, 0.08);
    transition: all var(--transition);
}

.header--scrolled { background: rgba(255, 255, 255, 0.95); box-shadow: var(--shadow-sm); }

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--burgundy);
}
.logo:hover { color: var(--rose); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose);
    transition: width var(--transition);
}
.nav__link:hover { color: var(--rose); }
.nav__link:hover::after { width: 100%; }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.burger span {
    width: 26px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: all var(--transition);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--blush) 0%, var(--blush-deep) 50%, var(--gray-50) 100%);
    overflow: hidden;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 480px;
}

.hero__zodiac {
    display: flex;
    align-items: center;
    justify-content: center;
}

.zodiac-wheel {
    position: relative;
    width: 380px;
    height: 380px;
}

.zodiac-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(190, 24, 93, 0.15);
    border-radius: 50%;
    animation: rotateWheel 60s linear infinite;
}

@keyframes rotateWheel { to { transform: rotate(360deg); } }

.zodiac-symbol {
    position: absolute;
    font-size: 2rem;
    color: var(--rose);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    animation: rotateWheel 60s linear infinite reverse;
}

.zodiac-symbol:nth-child(1)  { top: -24px; left: 50%; transform: translateX(-50%); }
.zodiac-symbol:nth-child(2)  { top: 12%; right: 3%; }
.zodiac-symbol:nth-child(3)  { top: 37%; right: -24px; }
.zodiac-symbol:nth-child(4)  { bottom: 37%; right: -24px; }
.zodiac-symbol:nth-child(5)  { bottom: 12%; right: 3%; }
.zodiac-symbol:nth-child(6)  { bottom: -24px; left: 50%; transform: translateX(-50%); }
.zodiac-symbol:nth-child(7)  { bottom: 12%; left: 3%; }
.zodiac-symbol:nth-child(8)  { bottom: 37%; left: -24px; }
.zodiac-symbol:nth-child(9)  { top: 37%; left: -24px; }
.zodiac-symbol:nth-child(10) { top: 12%; left: 3%; }
.zodiac-symbol:nth-child(11) { top: -24px; left: 15%; }
.zodiac-symbol:nth-child(12) { top: -24px; right: 15%; }

.zodiac-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    color: var(--rose);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse { 0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); } }

.hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    font-weight: 300;
    line-height: 1.8;
}

/* --- Steps --- */
.steps {
    padding: 100px 0;
    background: var(--white);
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
    padding: 40px 28px;
}

.step__number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 16px rgba(190, 24, 93, 0.25);
}

.step__title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.step__text {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Plans --- */
.plans {
    padding: 100px 0;
    background: var(--blush);
}

.plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.plan-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.plan-card--featured {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: var(--white);
    transform: scale(1.05);
    border-color: transparent;
}
.plan-card--featured:hover { transform: scale(1.05) translateY(-4px); }
.plan-card--featured .plan-card__name { color: var(--white); }
.plan-card--featured .plan-card__price { color: var(--white); }
.plan-card--featured .plan-card__price span { color: rgba(255, 255, 255, 0.7); }
.plan-card--featured .plan-card__features li { color: rgba(255, 255, 255, 0.9); }
.plan-card--featured .plan-card__features li::before { color: rgba(255, 255, 255, 0.8); }

.plan-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--rose);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.plan-card__name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.plan-card__price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--rose);
    margin-bottom: 28px;
}
.plan-card__price span {
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-body);
    color: var(--gray-600);
}

.plan-card__features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}
.plan-card__features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
    color: var(--gray-700);
}
.plan-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rose);
    font-weight: 600;
}

/* --- Features --- */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 28px;
}

.feature-card {
    background: var(--blush);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition);
    border: 1px solid rgba(190, 24, 93, 0.06);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.feature-card--large {
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--blush-deep), var(--gray-50));
    padding: 48px 40px;
}

.feature-card__icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--rose);
}

.feature-card--large .feature-card__icon { font-size: 3rem; margin-bottom: 24px; }

.feature-card__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card--large .feature-card__title { font-size: 1.5rem; margin-bottom: 16px; }

.feature-card__text {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-card--large .feature-card__text { font-size: 1.05rem; line-height: 1.8; }

/* --- Reviews --- */
.reviews {
    padding: 100px 0;
    background: var(--blush);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.review-card__stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-card__text {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.review-card__name {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.95rem;
}

.review-card__badge {
    font-size: 0.8rem;
    color: var(--rose);
    font-weight: 500;
}

/* --- FAQ --- */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--blush-deep);
}

.faq-item__question {
    width: 100%;
    text-align: left;
    padding: 22px 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color var(--transition);
}
.faq-item__question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--rose);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq-item.active .faq-item__question::after { content: '−'; }
.faq-item__question:hover { color: var(--rose); }

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-item__answer { max-height: 300px; }

.faq-item__answer p {
    padding-bottom: 22px;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
}
.faq-item__answer a { color: var(--rose); text-decoration: underline; }

/* --- CTA Banner --- */
.cta-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--rose), var(--burgundy));
}

.cta-banner__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-banner__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 12px;
}

.cta-banner__text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
    background: var(--blush);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--blush-deep);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--blush);
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose);
    background: var(--white);
}

.form-group textarea { resize: vertical; }

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.form-group--checkbox input { width: auto; margin-top: 4px; flex-shrink: 0; }
.form-group--checkbox label { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 0; }

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.contact-info-card h4 {
    font-size: 0.9rem;
    color: var(--rose);
    margin-bottom: 6px;
    font-family: var(--font-body);
    font-weight: 600;
}
.contact-info-card p { font-size: 0.95rem; color: var(--gray-700); }
.contact-info-card a { color: var(--gray-700); }
.contact-info-card a:hover { color: var(--rose); }

.contact__disclaimer {
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.7;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 3px solid var(--rose);
}
.contact__disclaimer a { color: var(--rose); text-decoration: underline; }

/* --- Footer --- */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand .logo { color: var(--white); display: inline-block; margin-bottom: 12px; }
.footer__brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255, 255, 255, 0.5); }

.footer__links h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-weight: 600;
}
.footer__links a,
.footer__links p {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    transition: color var(--transition);
}
.footer__links a:hover { color: var(--rose-light); }

.footer__legal {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__legal p {
    font-size: 0.75rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.footer__bottom {
    padding: 20px 0;
    text-align: center;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); }

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 24px rgba(136, 19, 55, 0.12);
    z-index: 9999;
    padding: 20px 0;
    transform: translateY(0);
    transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(100%); pointer-events: none; }

.cookie-banner__inner {
    display: flex;
    align-items: center;
    gap: 24px;
}
.cookie-banner__inner p { font-size: 0.85rem; color: var(--gray-700); flex: 1; }
.cookie-banner__inner a { color: var(--rose); text-decoration: underline; }

.cookie-banner__buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* --- Legal Pages --- */
.legal-page {
    padding: 120px 0 80px;
    background: var(--blush);
    min-height: 100vh;
}

.legal-page .container { max-width: 860px; }

.legal-page h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 8px;
    color: var(--gray-900);
}

.legal-page .legal-date {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.legal-page h3 {
    font-size: 1.15rem;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-page p,
.legal-page li {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-page ul, .legal-page ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-page a { color: var(--rose); text-decoration: underline; }

/* --- Contact Page --- */
.contact-page__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.contact-page-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.contact-page-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-page-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--rose);
    font-family: var(--font-body);
    font-weight: 600;
}
.contact-page-card p { font-size: 0.95rem; color: var(--gray-700); line-height: 1.7; }
.contact-page-card a { color: var(--gray-700); }
.contact-page-card a:hover { color: var(--rose); }

/* --- Form Success --- */
.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}
.form-success.show { display: block; }
.form-success__icon { font-size: 3rem; color: var(--rose); margin-bottom: 16px; }
.form-success__title { font-size: 1.3rem; font-weight: 600; margin-bottom: 8px; }
.form-success__text { color: var(--gray-600); }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero__zodiac { order: -1; }
    .zodiac-wheel { width: 300px; height: 300px; }
    .zodiac-symbol { font-size: 1.5rem; width: 40px; height: 40px; }
    .zodiac-symbol:nth-child(1)  { top: -20px; }
    .zodiac-symbol:nth-child(3)  { right: -20px; }
    .zodiac-symbol:nth-child(4)  { right: -20px; }
    .zodiac-symbol:nth-child(6)  { bottom: -20px; }
    .zodiac-symbol:nth-child(8)  { left: -20px; }
    .zodiac-symbol:nth-child(9)  { left: -20px; }

    .footer__top { grid-template-columns: 1fr 1fr; }
    .plans__grid { gap: 24px; }
    .plan-card--featured { transform: scale(1.02); }
    .plan-card--featured:hover { transform: scale(1.02) translateY(-4px); }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform 0.4s ease;
        z-index: 999;
    }
    .nav.open { transform: translateY(0); }
    .burger { display: flex; }

    .hero { padding: 100px 0 60px; }
    .zodiac-wheel { width: 250px; height: 250px; }

    .steps__grid { grid-template-columns: 1fr; gap: 24px; }
    .plans__grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .plan-card--featured { transform: none; }
    .plan-card--featured:hover { transform: translateY(-4px); }

    .features__grid { grid-template-columns: 1fr; }
    .feature-card--large { grid-row: auto; }

    .reviews__grid { grid-template-columns: 1fr; }
    .contact__grid { grid-template-columns: 1fr; }
    .contact-form { padding: 28px; }

    .footer__top { grid-template-columns: 1fr; gap: 28px; }

    .cookie-banner__inner { flex-direction: column; text-align: center; }
    .cookie-banner__buttons { width: 100%; justify-content: center; }

    .contact-page__grid { grid-template-columns: 1fr; }

    .section-title { font-size: 1.6rem; }
    .section-subtitle { margin-bottom: 36px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__title { font-size: 1.8rem; }
    .zodiac-wheel { width: 200px; height: 200px; }
    .zodiac-symbol { font-size: 1.2rem; width: 32px; height: 32px; }
    .zodiac-symbol:nth-child(1)  { top: -16px; }
    .zodiac-symbol:nth-child(3)  { right: -16px; }
    .zodiac-symbol:nth-child(4)  { right: -16px; }
    .zodiac-symbol:nth-child(6)  { bottom: -16px; }
    .zodiac-symbol:nth-child(8)  { left: -16px; }
    .zodiac-symbol:nth-child(9)  { left: -16px; }
}