/* PROFESSIONAL CYBER LAWYER 2025 - SEO + CONVERSION */
* { margin:0; padding:0; box-sizing:border-box; }
:root {
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --white: #ffffff;
  --dark: #111827;
  --gray: #6b7280;
  --light: #f9fafb;
  --shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  --radius: 16px;
}

body { 
  font-family: 'Inter', -apple-system, sans-serif; 
  line-height: 1.7; 
  color: var(--dark);
}

/* HERO */
.hero-professional {
  min-height: 100vh; 
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #1e3a8a 100%);
  display: flex; 
  align-items: center; 
  position: relative; 
  color: var(--white);
}
.hero-bg-gradient {
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(16,185,129,0.1) 0%, transparent 50%);
}
.hero-content-professional {
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 2rem; 
  position: relative; 
  z-index: 2;
}
.hero-badge-container {
  display: flex; 
  gap: 1rem; 
  margin-bottom: 2rem;
}
.hero-badge {
  background: rgba(255,255,255,0.2); 
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem; 
  border-radius: 50px; 
  font-weight: 700; 
  font-size: 0.9rem;
}
.hero-badge.urgent { background: var(--success); color: var(--dark); }
.hero-main-title {
  font-size: clamp(3rem, 8vw, 6rem); 
  font-weight: 900; 
  line-height: 1.1; 
  margin-bottom: 2rem;
}
.highlight-text { color: var(--success); }
.hero-subtitle {
  font-size: 1.4rem; 
  max-width: 700px; 
  margin-bottom: 3rem; 
  opacity: 0.95;
}
.hero-stats {
  display: flex; 
  gap: 3rem; 
  margin-bottom: 3rem;
}
.stat-item { text-align: center; }
.stat-number { 
  font-size: 3.5rem; 
  font-weight: 900; 
  background: linear-gradient(135deg, var(--success), var(--warning));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { 
  font-size: 1rem; 
  opacity: 0.9; 
  font-weight: 600;
}
.hero-buttons { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.btn-primary-hero, .btn-secondary-hero {
  padding: 1.25rem 2.5rem; 
  border-radius: var(--radius); 
  font-weight: 800; 
  font-size: 1.1rem; 
  text-decoration: none; 
  transition: all 0.3s;
}
.btn-primary-hero {
  background: var(--success); 
  color: var(--white); 
  box-shadow: var(--shadow);
}
.btn-primary-hero:hover { transform: translateY(-3px); box-shadow: 0 35px 60px rgba(16,185,129,0.4); }
.btn-secondary-hero {
  background: rgba(255,255,255,0.2); 
  color: var(--white); 
  border: 2px solid rgba(255,255,255,0.3);
}
.hero-trust {
  position: absolute; 
  bottom: 3rem; 
  left: 2rem; 
  right: 2rem; 
  display: flex; 
  justify-content: space-between; 
  font-size: 0.95rem; 
  opacity: 0.9;
}

/* SECTIONS */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-header {
  text-align: center; 
  max-width: 800px; 
  margin: 0 auto 4rem;
}
.section-header h2 { 
  font-size: clamp(2.5rem, 6vw, 4rem); 
  font-weight: 900; 
  margin-bottom: 1rem;
}
.services-grid, .success-grid, .trust-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 2rem;
}

/* SERVICE CARDS */
.services-section { padding: 6rem 0; background: var(--light); }
.service-card {
  background: var(--white); 
  padding: 3rem 2.5rem; 
  border-radius: var(--radius); 
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 35px 60px rgba(0,0,0,0.15); }
.service-card.featured { border-top: 5px solid var(--success); }
.service-icon { 
  font-size: 4rem; 
  margin-bottom: 1.5rem; 
  display: block;
}
.service-card h3 { font-size: 1.75rem; margin-bottom: 1.5rem; }
.service-card ul { 
  list-style: none; 
  margin-bottom: 2rem;
}
.service-card li { 
  padding: 0.5rem 0; 
  display: flex; 
  align-items: center; 
  gap: 0.75rem;
}
.service-price {
  background: var(--success); 
  color: var(--white); 
  padding: 1rem 2rem; 
  border-radius: var(--radius); 
  font-weight: 800; 
  text-align: center;
}

/* PROCESS */
.process-section { padding: 6rem 0; }
.process-steps {
  display: flex; 
  justify-content: center; 
  gap: 3rem; 
  flex-wrap: wrap;
}
.step-item { 
  text-align: center; 
  max-width: 300px;
}
.step-number {
  width: 80px; 
  height: 80px; 
  background: var(--primary); 
  color: var(--white); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 2rem; 
  font-weight: 900; 
  margin: 0 auto 1.5rem;
}

/* SUCCESS STORIES */
.success-section { padding: 6rem 0; background: var(--light); }
.success-card {
  background: var(--white); 
  padding: 2.5rem; 
  border-radius: var(--radius); 
  box-shadow: var(--shadow);
}
.success-header {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin-bottom: 1.5rem;
}
.success-bank {
  background: var(--primary); 
  color: var(--white); 
  padding: 0.5rem 1rem; 
  border-radius: 20px; 
  font-weight: 700;
}
.success-amount {
  background: var(--success); 
  color: var(--white); 
  padding: 0.5rem 1rem; 
  border-radius: 20px; 
  font-weight: 700;
}
.success-footer {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin-top: 1.5rem; 
  font-size: 0.9rem; 
  color: var(--gray);
}

/* FORM */
.form-section { 
  padding: 6rem 0; 
  background: linear-gradient(135deg, var(--light) 0%, #f1f5f9 100%);
}
.form-container {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 4rem; 
  max-width: 1000px; 
  margin: 0 auto;
}
.form-left h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-item {
  display: flex; 
  align-items: center; 
  gap: 1rem; 
  margin-bottom: 1rem; 
  font-weight: 600;
}
.emergency-form {
  background: var(--white); 
  padding: 3rem; 
  border-radius: var(--radius); 
  box-shadow: var(--shadow);
}
.form-row { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.form-row input {
  flex: 1; 
  padding: 1rem 1.25rem; 
  border: 2px solid #e5e7eb; 
  border-radius: var(--radius); 
  font-size: 1rem;
}
.form-row input:focus { outline: none; border-color: var(--primary); }
textarea {
  width: 100%; 
  padding: 1.25rem; 
  border: 2px solid #e5e7eb; 
  border-radius: var(--radius); 
  font-family: inherit; 
  resize: vertical; 
  margin-bottom: 2rem;
}
.form-submit {
  width: 100%; 
  background: linear-gradient(135deg, var(--success), #059669); 
  color: var(--white); 
  padding: 1.25rem; 
  border: none; 
  border-radius: var(--radius); 
  font-size: 1.1rem; 
  font-weight: 800; 
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* TRUST */
.trust-section { padding: 6rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.trust-item { text-align: center; }
.trust-icon { 
  font-size: 4rem; 
  margin-bottom: 1.5rem; 
  display: block;
}
.trust-item h4 { font-size: 1.5rem; margin-bottom: 1rem; }

/* EMERGENCY BAR */
.emergency-bar {
  background: linear-gradient(90deg, var(--danger), var(--warning)); 
  color: var(--white);
}
.emergency-content {
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 1.5rem 0; 
  font-weight: 700; 
  font-size: 1.1rem;
}
.emergency-btn {
  background: var(--white); 
  color: var(--danger); 
  padding: 1rem 2.5rem; 
  border-radius: 50px; 
  font-weight: 800; 
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .form-container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
}
@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .services-grid, .success-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .hero-stats { gap: 2rem; }
  .emergency-content { flex-direction: column; gap: 1rem; text-align: center; }
}
