/* Modern dark minimal UI */
:root {
  --bg: #0b0c10;
  --surface: #101218;
  --surface-2: #0e1117;
  --border: #1b2130;
  --text: #e6e7eb;
  --muted: #9aa3af;
  --accent: #ffd34e;
  --accent-2: #ffb800;
  --radius: 16px;
}

/* Light theme variables */
:root.light {
  --bg: #f7f7f9;
  --surface: #ffffff;
  --surface-2: #fafafa;
  --border: #e8e8ef;
  --text: #0e1117;
  --muted: #5b6976;
  --accent: #ffb800;
  --accent-2: #ffcf5a;
}

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

html, body { height: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(255, 211, 78, 0.06), transparent 60%),
              radial-gradient(900px 500px at 100% 0%, rgba(255, 184, 0, 0.05), transparent 60%),
              var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.page { display: flex; flex-direction: column; min-height: 100%; }

/* Header */
.header { position: sticky; top: 0; backdrop-filter: saturate(120%) blur(6px); background: color-mix(in oklab, var(--bg) 70%, transparent); border-bottom: 1px solid var(--border); z-index: 10; }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__dot { width: 12px; height: 12px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 0 0 4px rgba(255, 211, 78, 0.15); }
.logo__text { font-weight: 700; letter-spacing: -0.02em; font-size: 1.2rem; color: var(--text); }

/* Switches removed */

/* Theme toggle */
.theme-toggle { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: transparent; color: var(--text); border: 1px solid var(--border); border-radius: 12px; padding: 0; font-weight: 600; cursor: pointer; transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease; }
.theme-toggle:hover { background: color-mix(in oklab, var(--text) 6%, transparent); border-color: #243047; transform: translateY(-1px); }
.theme-toggle:active { transform: translateY(0); }
.theme-toggle__icon { font-size: 1rem; line-height: 1; }

/* Main */
.main { flex: 1 1 auto; }

/* Hero */
.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: flex-start; padding: 5px 0 32px; }
/* Секция способов получения */
.methods { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin: 48px 0 0; }
.methods .feature { margin: 0; }
@media (max-width: 768px) {
  .methods { grid-template-columns: 1fr; gap: 18px; margin-top: 32px; }
}
.hero__content { max-width: 640px; }
.hero__title { font-size: 3.25rem; line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; margin-bottom: 20px; }
.hero__subtitle { color: var(--muted); font-size: 1.125rem; line-height: 1.75; margin-bottom: 20px; }
.hero__meta { display: inline-block; background: rgba(255, 211, 78, 0.1); color: #f6d670; border: 1px solid rgba(255, 211, 78, 0.25); padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: 0.9rem; }

.header__actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.badge-hours { font-size: 12px; padding: 6px 10px; border-radius: 999px; background: color-mix(in oklab, var(--accent) 12%, transparent); border: 1px solid color-mix(in oklab, var(--accent) 35%, var(--border)); color: var(--text); white-space: nowrap; }
.lang__select { appearance: none; -webkit-appearance: none; -moz-appearance: none; padding: 8px 28px 8px 10px; font: inherit; color: var(--text); background: var(--surface); border: 1px solid var(--border); border-radius: 10px; cursor: pointer; box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset; position: relative; }
.lang { position: relative; }
.lang::after { content: '▾'; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--muted); font-size: 12px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 1px, 1px); white-space: nowrap; border: 0; }
.hero__actions { display: flex; align-items: center; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero__hint { color: var(--muted); font-size: 0.95rem; }

.btn { display: inline-flex; align-items: center; gap: 12px; border: 1px solid transparent; border-radius: 14px; padding: 14px 20px; font-weight: 600; cursor: pointer; text-decoration: none; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.3s ease, border-color 0.3s ease; will-change: transform; }
.btn--primary { color: #121212; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 8px 30px rgba(255, 195, 26, 0.25), inset 0 1px 0 rgba(255,255,255,0.15); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(255, 195, 26, 0.35), inset 0 1px 0 rgba(255,255,255,0.2); }
.btn--primary:active { transform: translateY(0); box-shadow: 0 8px 30px rgba(255, 195, 26, 0.25); }
.btn__icon { margin-left: -2px; }

/* QR card */
.hero__qr { display: flex; flex-direction: column; align-items: center; justify-content: start; gap: 24px; perspective: 1000px; }

/* Character section */
.hero__character-section { display: flex; justify-content: center; margin-bottom: 8px; margin-top: -95px; }
.hero__character { position: relative; display: flex; flex-direction: column; align-items: center; }
.character-mascot { width: 500px; height: 550px; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(255, 211, 78, 0.3)); animation: characterFloat 3s ease-in-out infinite; transition: transform 0.3s ease; }
.character-mascot:hover { transform: scale(1.1) rotate(5deg); }

/* Character speech bubble */
.character-bubble { position: relative; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #121212; padding: 10px 14px; border-radius: 16px; margin-top: -120px; font-weight: 600; font-size: 0.85rem; box-shadow: 0 6px 20px rgba(255, 211, 78, 0.4); animation: bubbleFloat 3s ease-in-out infinite; max-width: 180px; text-align: center; z-index: 10; }
.character-bubble::before { content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 8px solid var(--accent); }

/* Character animations */
@keyframes characterFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }
@keyframes bubblePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
@keyframes bubbleFloat { 0%, 100% { transform: translateY(0px) scale(1); } 50% { transform: translateY(-8px) scale(1.02); } }
/* QR cards container */
.qr-cards-container { display: flex; flex-direction: row; gap: 20px; justify-content: flex-start; align-items: flex-start; position: relative; width: 100%; max-width: 900px; margin: 0 auto; overflow-x: auto; }
.qr-cards-container .qr-card:first-child { transform: translateX(15px) translateY(-2px); }
.qr-cards-container .qr-card:nth-child(2) { transform: translateX(-10px) translateY(-2px); }

/* Desktop optimization */
@media (min-width: 1024px) {
  .qr-cards-container { max-width: 1200px; gap: 40px; }
  .qr-cards-container .qr-card:first-child { transform: translateX(-10px) translateY(-2px); }
  .qr-cards-container .qr-card:first-child { transform: translateX(5px) translateY(-2px); }
  .qr-cards-container .qr-card:first-child:hover { transform: translateX(5px) translateY(-8px); }
  .qr-cards-container .qr-card:nth-child(2):hover { transform: translateX(-20px) translateY(-8px); }
}

.qr-card { width: 280px; flex-shrink: 0; background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.02); padding: 18px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; transform-style: preserve-3d; position: relative; }
.qr-card:hover { transform: translateY(-2px); box-shadow: 0 28px 70px rgba(0,0,0,0.4); border-color: #243047; }
.qr-cards-container .qr-card:first-child:hover { transform: translateX(15px) translateY(-8px); }
.qr-cards-container .qr-card:nth-child(2):hover { transform: translateX(-10px) translateY(-8px); }
.qr-card::before { content: ""; position: absolute; inset: -1px; border-radius: calc(var(--radius) + 1px); background: conic-gradient(from 180deg at 50% 50%, rgba(255, 211, 78, 0.0), rgba(255, 211, 78, 0.25), rgba(255, 184, 0, 0.0)); filter: blur(14px); opacity: 0.0; transition: opacity 0.35s ease; z-index: -1; }
.qr-card:hover::before { opacity: 0.8; }
.qr-card__header, .qr-card__footer { display: flex; align-items: center; justify-content: space-between; padding: 8px 6px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; color: #101218; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.muted { color: var(--muted); }
.qr-card__code { display: grid; place-items: center; padding: 14px; position: relative; }
.qr-code { width: 160px; height: 160px; border-radius: 12px; background: #0f141c; display: flex; align-items: center; justify-content: center; overflow: hidden; }

/* Feature grid */
.features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; padding: 64px 0 32px; }
.feature { background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid var(--border); border-radius: 14px; padding: 28px; box-shadow: 0 12px 40px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.02); transition: transform 0.2s ease, border-color 0.2s ease; }
.feature:hover { transform: translateY(-2px); border-color: #243047; }
.feature__icon { font-size: 1.6rem; margin-bottom: 12px; }
.feature__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.feature__desc { color: var(--muted); line-height: 1.7; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: 1fr; gap: 24px; padding: 40px 0 84px; border-top: 1px solid var(--border); position: relative; margin-top: 8px; }

/* Dynamic reviews container */
#dynamic-reviews { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 24px; }
.testimonials::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--accent) 28%, var(--border)), transparent); opacity: 0.85; pointer-events: none; background-size: 200% 100%; animation: separatorShimmer 3.8s ease-in-out infinite; }
/* Subtle glow under the hairline */
.testimonials::after { content: ""; position: absolute; top: -3px; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--accent) 28%, #000) 8%, transparent); filter: blur(6px); opacity: 0.08; pointer-events: none; animation: separatorPulse 5.5s ease-in-out infinite; }

.t-card { background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid var(--border); border-radius: 14px; padding: 22px; box-shadow: 0 10px 34px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.02); transition: transform 0.2s ease, border-color 0.2s ease; display: flex; flex-direction: column; height: 100%; }
.t-card:hover { transform: translateY(-2px); border-color: #243047; }
.t-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: color-mix(in oklab, var(--accent) 15%, var(--surface)); color: #111; font-weight: 800; box-shadow: inset 0 1px 0 rgba(255,255,255,0.25); }
.t-name { font-weight: 700; letter-spacing: -0.01em; }
.t-stars { color: #ffda6a; font-size: 0.9rem; }
.t-stars .star {
    color: #ffc107;
    font-size: 1rem;
}

.t-stars .star.empty {
    color: #ddd;
}
.t-text { color: var(--muted); line-height: 1.7; flex-grow: 1; }

/* Footer */
.footer { border-top: 1px solid var(--border); }
.footer__inner { padding: 24px 0; display: flex; align-items: center; justify-content: center; }

/* Accessibility focus */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 8px; }

/* Responsive */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding: 56px 0; }
  .hero__qr { order: -1; }
  .qr-cards-container { flex-direction: column; align-items: center; gap: 16px; justify-content: center; }
  .qr-cards-container .qr-card:first-child { transform: translateY(-2px); }
  .qr-cards-container .qr-card:nth-child(2) { transform: translateY(-2px); }
  .qr-cards-container .qr-card:first-child:hover { transform: translateY(-8px); }
  .qr-cards-container .qr-card:nth-child(2):hover { transform: translateY(-8px); }
  .qr-card { width: 100%; max-width: 320px; margin: 0 auto; }
  .character-mascot { width: 300px; height: 330px; }
  .character-bubble { font-size: 0.8rem; padding: 8px 12px; max-width: 160px; }
  .hero__character-section { margin-top: -40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero__title { font-size: 2.4rem; }
  .hero__subtitle { font-size: 1rem; }
  .features { grid-template-columns: 1fr; gap: 18px; padding: 40px 0 24px; }
  .testimonials { grid-template-columns: 1fr; gap: 18px; padding: 8px 0 64px; }
  #dynamic-reviews { grid-template-columns: 1fr; gap: 18px; }
  .stats { margin-top: 32px; }
  .hero__character-section { margin-top: -50px; }
  .qr-card { width: 240px; }
  .qr-code { width: 140px; height: 140px; }
}

@media (max-width: 420px) {
  .btn { width: 100%; justify-content: center; }
  .hero__actions { gap: 10px; }
  .hero__title { font-size: 2rem; }
  .methods { margin-top: 24px; }
  .stats { margin-top: 24px; }
  .hero__character-section { margin-top: -30px; }
  .qr-cards-container { gap: 8px; }
  .qr-card { max-width: 160px; padding: 12px; }
  .qr-code { width: 120px; height: 120px; }
  .qr-card__code { padding: 8px; }
}

/* Premium background effects removed */

/* Stats (premium metrics) */
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 48px; }
.stat { background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.02); }
.stat__value { display: block; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; }
.stat__label { display: block; color: var(--muted); font-size: 0.85rem; margin-top: 4px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btn--primary, .feature, .qr-card, .t-card { transition: none; }
  .qr-card:hover, .t-card:hover { transform: none; }
}

/* Responsive for stats */
@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .stats { grid-template-columns: 1fr; margin-top: 20px; }
  .methods { margin-top: 20px; }
  .hero__character-section { margin-top: -20px; }
  .character-mascot { width: 250px; height: 275px; }
  .character-bubble { font-size: 0.75rem; padding: 6px 10px; max-width: 140px; }
  .qr-card { padding: 14px; }
}
/* Theme switch (slider) удалён по просьбе пользователя */

/* QR micro particles */
/* removed per request */

/* Button ghost variant for secondary actions */
.btn--ghost { color: var(--text); background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid var(--border); }
.btn--ghost:hover { transform: translateY(-2px); border-color: #243047; }

/* Confetti */
.confetti-piece { position: absolute; width: 6px; height: 10px; border-radius: 2px; opacity: 0; will-change: transform, opacity; animation: confettiShoot 0.8s ease-out forwards; }

/* Keyframes */
@keyframes separatorShimmer { 0% { opacity: 0.55; background-position: -120% 0; } 50% { opacity: 0.9; background-position: 120% 0; } 100% { opacity: 0.55; background-position: -120% 0; } }
@keyframes separatorPulse { 0%, 100% { opacity: 0.06; } 50% { opacity: 0.12; } }
@keyframes confettiShoot { 0% { transform: translate(0,0) rotate(0deg); opacity: 1; } 100% { transform: translate(var(--tx, 0px), var(--ty, -100px)) rotate(var(--rot, 90deg)); opacity: 0; } }

/* More Reviews Button */
.more-reviews-container {
    text-align: center;
    margin: 2rem 0;
}

.more-reviews-section {
    position: relative;
    text-align: center;
    margin: 2rem 0;
    padding: 1rem 0;
    margin-top: calc(2rem - 90px);
}

.more-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    margin: 0 auto;
}

.more-reviews-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

.more-reviews-btn svg {
    width: 16px;
    height: 16px;
}

/* Reviews Page Styles */
.reviews-page {
    min-height: 100vh;
    padding: 2rem 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.add-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.add-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

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

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.modal-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.modal__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.modal__close:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    transform: scale(1.1) rotate(90deg);
}

.modal__close:active {
    transform: scale(0.95) rotate(90deg);
}

.modal__close svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Rating Input Styles */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 16px;
    border: 2px solid #e8ecef;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.rating-input:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: #ffc107;
}

.rating-input input[type="radio"] {
    display: none;
}

.star-label {
    font-size: 2.5rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.star-label:hover {
    color: #ffc107;
    transform: scale(1.2);
    text-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

.star-label:hover ~ .star-label,
.rating-input input[type="radio"]:checked ~ .star-label {
    color: #ffc107;
    text-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

.rating-input:hover .star-label {
    color: #ddd;
}

.rating-input .star-label:hover,
.rating-input .star-label:hover ~ .star-label {
    color: #ffc107;
}

.submit-btn {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: #4CAF50;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    z-index: 1001;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.notification.success {
    background: #4CAF50;
}

.notification.error {
    background: #f44336;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .testimonials::before, .testimonials::after { animation: none; }
  .confetti-piece { animation: none; opacity: 0; }
}