
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700;800;900&display=swap');

:root{
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --bg-hero: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0c4a6e 100%);
  --text: #1e293b;
  --text-light: #64748b;
  --text-white: #ffffff;
  --accent: #00c6ff;
  --accent-gradient: linear-gradient(135deg, #00c6ff, #0072ff);
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 40px -12px rgba(0,0,0,0.25);
  --radius: 12px;
  --radius-lg: 20px;
}

*{box-sizing:border-box; margin:0; padding:0}
html{scroll-behavior:smooth}
body{
  font-family: 'Heebo', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.6;
}

a{color: var(--accent); text-decoration:none}
a:hover{text-decoration:underline}

/* Navigation */
.navbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--text-white);
}
.logo-icon{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg{
  width: 20px;
  height: 20px;
  fill: white;
}
.nav-badge{
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(0,198,255,0.15);
  color: var(--accent);
  font-weight: 600;
}

/* Hero Section */
.hero{
  background: var(--bg-hero);
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(0,198,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after{
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(0,114,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px){
  .hero-inner{grid-template-columns: 1fr; text-align: center}
}

.hero-content h1{
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content h1 span{
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle{
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Trust Badges */
.trust-row{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px){
  .trust-row{justify-content: center}
}
.trust-item{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}
.trust-item .icon{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Form Card */
.form-card{
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.form-card h2{
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text);
}
.form-card .form-sub{
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.form-group{
  margin-bottom: 16px;
}
.form-label{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-input{
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  background: var(--bg-light);
  color: var(--text);
  transition: all 0.2s;
}
.form-input:focus{
  outline: none;
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 4px rgba(0,198,255,0.1);
}
.form-input::placeholder{
  color: var(--text-light);
}
.form-input[type="date"]{
  direction: ltr;
}

.btn{
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary{
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 8px 24px rgba(0,114,255,0.3);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,114,255,0.4);
}
.btn-primary:disabled{
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn-success{
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 8px 24px rgba(34,197,94,0.3);
}
.btn-success:hover{
  box-shadow: 0 12px 28px rgba(34,197,94,0.4);
}

.form-error{
  color: var(--error);
  font-size: 13px;
  margin-top: 8px;
}
.form-hint{
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.6;
}

/* How it Works Section */
.section{
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header{
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2{
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.section-header p{
  font-size: 16px;
  color: var(--text-light);
}

.steps-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px){
  .steps-grid{grid-template-columns: 1fr}
}
.step-card{
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.step-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step-number{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: white;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-card h3{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p{
  font-size: 14px;
  color: var(--text-light);
}

/* Compensation Amounts */
.amounts-row{
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
}
.amount-item{
  text-align: center;
  padding: 16px 32px;
}
.amount-value{
  font-size: 36px;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.amount-label{
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

/* Result States */
#state-loading, #state-result, #state-submitting{
  display: none;
  max-width: 700px;
  margin: 0 auto;
  padding: 100px 24px 60px;
}

.loading-card{
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.spinner{
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin{to{transform: rotate(360deg)}}
.loading-card h3{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.loading-card p{
  color: var(--text-light);
  font-size: 14px;
}

/* Result Card */
.result-card{
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.result-header{
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.result-status{
  display: flex;
  align-items: center;
  gap: 12px;
}
.status-dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-light);
}
.status-dot.good{background: var(--success)}
.status-dot.bad{background: var(--error)}
.status-dot.warn{background: var(--warning)}
.result-status span{
  font-weight: 700;
  font-size: 16px;
}
.link-again{
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--bg-light);
  color: var(--text);
  border: 1px solid var(--border);
}
.link-again:hover{
  background: var(--border);
  text-decoration: none;
}

.result-flight{
  padding: 24px;
  background: var(--bg-light);
}
.flight-number{
  font-size: 24px;
  font-weight: 800;
}
.flight-route{
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}

.result-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width: 500px){
  .result-grid{grid-template-columns: 1fr}
}
.result-item{
  padding: 20px 24px;
  background: white;
}
.result-item .label{
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 4px;
}
.result-item .value{
  font-size: 18px;
  font-weight: 700;
}
.result-item .value.highlight{
  color: var(--success);
}

/* CTA Section in Result */
.result-cta{
  padding: 24px;
  background: linear-gradient(135deg, rgba(0,198,255,0.08), rgba(0,114,255,0.08));
  border-top: 1px solid rgba(0,198,255,0.2);
}
.cta-headline{
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}
.cta-sub{
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.user-form{
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 20px;
}

.consent-box{
  margin: 16px 0;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
}
.checkbox-label{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}
.checkbox-label input{
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--success);
  cursor: pointer;
  flex-shrink: 0;
}

.benefits-list{
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.benefits-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-light);
}
.benefits-list li::before{
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

.disclaimer{
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Reviews Section */
.section-alt{
  background: var(--bg-light);
}

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px){
  .reviews-grid{grid-template-columns: 1fr}
}

.review-card{
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.review-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review-stars{
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text{
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}
.review-author{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.author-avatar{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: white;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-name{
  font-weight: 700;
  font-size: 14px;
}
.author-flight{
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

.trust-banner{
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding: 32px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (max-width: 600px){
  .trust-banner{gap: 32px}
}
.trust-stat{
  text-align: center;
}
.stat-value{
  font-size: 32px;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label{
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}

/* FAQ Section */
.faq-list{
  max-width: 800px;
  margin: 0 auto;
}
.faq-item{
  background: white;
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover{
  border-color: var(--accent);
}
.faq-item[open]{
  box-shadow: var(--shadow);
}
.faq-item[open] .faq-icon{
  transform: rotate(45deg);
}
.faq-question{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker{
  display: none;
}
.faq-question span:first-child{
  flex: 1;
  padding-left: 16px;
}
.faq-icon{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-answer{
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Footer */
.footer{
  background: var(--bg-hero);
  padding: 48px 24px;
  text-align: center;
  color: rgba(255,255,255,0.8);
}
.footer p{
  font-size: 13px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
