/* ============================================
   DeelayHelp.com — Main Stylesheet
   Playful EU261 Flight Compensation Site
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --color-primary: #FF6B35;
  --color-primary-dark: #E55A2B;
  --color-primary-light: #FF8C5A;
  --color-secondary: #2B4C7E;
  --color-secondary-dark: #1E3A5F;
  --color-secondary-light: #3D6BA8;
  --color-accent: #FFD23F;
  --color-accent-dark: #F0C030;
  --color-success: #4CAF50;
  --color-success-light: #E8F5E9;
  --color-danger: #E53935;
  --color-bg: #FFF8F0;
  --color-bg-alt: #FFF0E0;
  --color-bg-card: #FFFFFF;
  --color-text: #2D2D2D;
  --color-text-light: #6B7280;
  --color-text-muted: #9CA3AF;
  --color-border: #E5E7EB;
  --color-cloud: #F0F4FF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;
  --font-display: 'Baloo 2', cursive;
  --font-body: 'Nunito', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-secondary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

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

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
  color: #fff;
}

.btn--secondary {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(43, 76, 126, 0.3);
}

.btn--secondary:hover {
  background: var(--color-secondary-dark);
  transform: translateY(-2px);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn--large {
  padding: 18px 42px;
  font-size: 1.15rem;
}

.btn--small {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-secondary);
  text-decoration: none;
}

.navbar__logo svg {
  width: 42px;
  height: 42px;
}

.navbar__logo span.highlight {
  color: var(--color-primary);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-secondary);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__link:hover {
  color: var(--color-primary);
}

.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-secondary);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  background: linear-gradient(170deg, var(--color-bg) 0%, var(--color-cloud) 50%, var(--color-bg-alt) 100%);
}

.hero__clouds {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  animation: float-cloud linear infinite;
}

.hero__cloud::before,
.hero__cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.hero__cloud--1 {
  width: 200px; height: 60px; top: 15%; left: -200px;
  animation-duration: 35s;
}
.hero__cloud--1::before { width: 80px; height: 80px; top: -40px; left: 30px; }
.hero__cloud--1::after { width: 100px; height: 100px; top: -50px; left: 80px; }

.hero__cloud--2 {
  width: 160px; height: 50px; top: 35%; left: -160px;
  animation-duration: 45s; animation-delay: 8s;
}
.hero__cloud--2::before { width: 60px; height: 60px; top: -30px; left: 25px; }
.hero__cloud--2::after { width: 80px; height: 80px; top: -40px; left: 60px; }

.hero__cloud--3 {
  width: 240px; height: 70px; top: 55%; left: -240px;
  animation-duration: 50s; animation-delay: 15s;
}
.hero__cloud--3::before { width: 90px; height: 90px; top: -45px; left: 40px; }
.hero__cloud--3::after { width: 120px; height: 120px; top: -60px; left: 100px; }

@keyframes float-cloud {
  from { transform: translateX(0); }
  to { transform: translateX(calc(100vw + 300px)); }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__text {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent);
  color: var(--color-secondary);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.hero__title {
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.hero__title .wavy {
  color: var(--color-primary);
  display: inline-block;
  position: relative;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__stats {
  display: flex;
  gap: 40px;
}

.hero__stat {
  text-align: left;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__mascot-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

/* --- Mascot SVG area --- */
.mascot-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.mascot-container svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
  animation: mascot-bob 3s ease-in-out infinite;
}

@keyframes mascot-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Floating elements around mascot */
.hero__float {
  position: absolute;
  animation: float-item 4s ease-in-out infinite;
}

.hero__float--ticket {
  top: 5%;
  right: 0;
  animation-delay: 0s;
}

.hero__float--coins {
  bottom: 10%;
  left: 0;
  animation-delay: 1s;
}

.hero__float--plane {
  top: -5%;
  left: 10%;
  animation-delay: 2s;
}

@keyframes float-item {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

/* --- How It Works --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 16.6%;
  right: 16.6%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-success));
  border-radius: 2px;
  z-index: 0;
}

.step-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.step-card__number {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.step-card:nth-child(1) .step-card__number { background: var(--color-primary); }
.step-card:nth-child(2) .step-card__number { background: var(--color-accent); color: var(--color-secondary); }
.step-card:nth-child(3) .step-card__number { background: var(--color-success); }

.step-card__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.step-card__title {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.step-card__desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Compensation Table --- */
.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
}

.comp-table thead {
  background: var(--color-secondary);
}

.comp-table th {
  padding: 18px 24px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
}

.comp-table td {
  padding: 16px 24px;
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border);
  font-weight: 500;
}

.comp-table tbody tr:hover td {
  background: var(--color-bg-alt);
}

.comp-table .amount {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-primary);
  font-size: 1.2rem;
}

/* --- Claim Form --- */
.claim-form-wrapper {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.claim-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-success));
}

.form-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.form-progress__step {
  width: 40px;
  height: 6px;
  border-radius: 3px;
  background: var(--color-border);
  transition: var(--transition);
}

.form-progress__step.active {
  background: var(--color-primary);
  width: 60px;
}

.form-progress__step.done {
  background: var(--color-success);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--color-danger);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: #fff;
  color: var(--color-text);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-control::placeholder {
  color: var(--color-text-muted);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%236B7280'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --- Rights Section --- */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.rights-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-primary);
  transition: var(--transition);
}

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

.rights-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.rights-card__title {
  margin-bottom: 10px;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card__stars {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.testimonial-card__text {
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.8;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-primary);
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 0.95rem;
}

.testimonial-card__route {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-align: left;
  transition: var(--transition);
}

.faq-item__question:hover {
  color: var(--color-primary);
}

.faq-item__icon {
  font-size: 1.5rem;
  transition: var(--transition);
  color: var(--color-primary);
  flex-shrink: 0;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 24px 20px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- Footer --- */
.footer {
  background: var(--color-secondary);
  color: #fff;
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__logo .highlight {
  color: var(--color-accent);
}

.footer__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--color-accent);
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer__legal a:hover {
  color: #fff;
}

/* --- Section Headings --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 16px;
}

.section-header__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 16px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-secondary);
  color: #fff;
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: var(--transition);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* --- Success / Error Messages --- */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-weight: 600;
}

.alert--success {
  background: var(--color-success-light);
  color: var(--color-success);
  border: 1px solid var(--color-success);
}

.alert--error {
  background: #FFEBEE;
  color: var(--color-danger);
  border: 1px solid var(--color-danger);
}

/* --- Page Header (for inner pages) --- */
.page-header {
  background: linear-gradient(170deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  padding: 120px 0 60px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--color-bg);
  border-radius: 40px 40px 0 0;
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }

/* --- Admin Styles --- */
.admin-header {
  background: var(--color-secondary);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-header h1 {
  color: #fff;
  font-size: 1.2rem;
}

.admin-content {
  padding: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.admin-stat-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.admin-stat-card__label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.admin-stat-card__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-secondary);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.admin-table th {
  background: var(--color-bg-alt);
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.admin-table tr:hover td {
  background: var(--color-bg);
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
}

.status-badge--new { background: #E3F2FD; color: #1565C0; }
.status-badge--review { background: #FFF3E0; color: #E65100; }
.status-badge--approved { background: #E8F5E9; color: #2E7D32; }
.status-badge--paid { background: #F3E5F5; color: #7B1FA2; }
.status-badge--rejected { background: #FFEBEE; color: #C62828; }

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero__text { max-width: 100%; }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__mascot-wrapper { max-width: 320px; }
  .steps::before { display: none; }
  .steps { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    gap: 0;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: var(--transition);
    opacity: 0;
  }
  .navbar__menu.open {
    transform: translateY(0);
    opacity: 1;
  }
  .navbar__link {
    display: block;
    padding: 12px 16px;
    width: 100%;
  }
  .navbar__menu .btn {
    width: 100%;
    margin-top: 8px;
  }
  .navbar__toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .claim-form-wrapper { padding: 28px 20px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .comp-table { font-size: 0.85rem; }
  .comp-table th, .comp-table td { padding: 12px 14px; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: 20px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .form-actions { flex-direction: column; }
  .form-actions .btn { width: 100%; }
}

/* --- Animations / Scroll --- */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Print --- */
@media print {
  .navbar, .cookie-banner, .footer { display: none; }
  .hero { min-height: auto; padding: 20px 0; }
}
