:root {
  --primary: #1e293b; /* Темно-синий */
  --secondary: #334155;
  --accent: #d97706; /* Золотисто-оранжевый */
  --accent-hover: #b45309;
  --light: #f8fafc;
  --white: #ffffff;
  --text: #334155;
  --text-light: #64748b;
  --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Georgia', serif; color: var(--text); line-height: 1.6; background: var(--white); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { font-family: system-ui, sans-serif; font-weight: 700; }
a { text-decoration: none; color: inherit; }

/* Header & Logo */
.header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; padding: 15px 0; }
.header__inner { display: flex; justify-content: space-between; align-items: center; }

/* Логотип urik96 */
.logo { 
  font-size: 1.5rem; 
  font-weight: 800; 
  color: var(--primary); 
  font-family: system-ui, sans-serif; 
  letter-spacing: -0.5px;
}
.logo span {
  color: var(--accent); /* Цифры 96 будут оранжевыми */
}

.nav { display: flex; gap: 20px; align-items: center; }
.nav a { font-size: 0.95rem; transition: 0.2s; }
.nav a:hover { color: var(--accent); }
.btn-nav { border: 1px solid var(--primary); padding: 8px 16px; border-radius: var(--radius); }
.btn-nav:hover { background: var(--primary); color: white; }

/* Hero Section */
.hero { 
  background: linear-gradient(rgba(30, 41, 59, 0.9), rgba(30, 41, 59, 0.9)), url('img/law-bg.jpg') center/cover no-repeat; 
  color: white; padding: 100px 0; text-align: center; 
}
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; opacity: 0.9; }
.hero-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; font-size: 0.9rem; }
.btn { display: inline-block; padding: 16px 32px; border-radius: var(--radius); font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
.btn-main { background: var(--accent); color: white; }
.btn-main:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* Sections General */
.section { padding: 80px 0; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--primary); color: white; }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 50px; color: var(--primary); }
.text-white { color: white !important; }

/* Problems / Who is it for */
.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.problem-card { background: white; padding: 30px; border-radius: var(--radius); box-shadow: 0 4px 6px rgba(0,0,0,0.05); border-left: 4px solid var(--accent); }
.problem-card h3 { margin-bottom: 10px; color: var(--primary); font-size: 1.2rem; }
.problem-card p { font-size: 0.95rem; color: var(--text-light); }

/* Solution / Benefits */
.solution-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.sol-item { text-align: center; padding: 20px; }
.sol-icon { font-size: 3rem; margin-bottom: 15px; }
.sol-item h3 { margin-bottom: 10px; color: var(--primary); }
.sol-item p { color: var(--text-light); font-size: 0.95rem; }

/* Myths Grid */
.myths-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 20px; }
.myth-card { background: white; border: 1px solid #e2e8f0; border-radius: var(--radius); overflow: hidden; }
.myth-header { background: #fee2e2; color: #991b1b; padding: 15px 20px; font-weight: bold; }
.myth-body { padding: 20px; color: #166534; background: #f0fdf4; }

/* Steps Vertical */
.steps-vertical { max-width: 800px; margin: 0 auto; }
.step-v { display: flex; gap: 20px; margin-bottom: 30px; align-items: flex-start; background: white; padding: 20px; border-radius: var(--radius); box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.step-num { font-size: 2rem; font-weight: 800; color: var(--accent); min-width: 50px; }
.step-text h3 { margin-bottom: 5px; color: var(--primary); }
.step-text p { color: var(--text-light); font-size: 0.95rem; }

/* Guarantee */
.guarantee-box { text-align: center; max-width: 800px; margin: 0 auto; }
.guarantee-text { font-size: 1.3rem; margin-bottom: 30px; font-style: italic; line-height: 1.5; }
.guarantee-icons { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.g-icon { font-weight: bold; border: 1px solid rgba(255,255,255,0.3); padding: 10px 20px; border-radius: 50px; background: rgba(255,255,255,0.05); }

/* Reviews & Photos */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: white; padding: 30px; border-radius: var(--radius); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.review-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); display: block; }
.review-name { font-weight: bold; color: var(--primary); }
.review-sum { color: var(--accent); font-weight: bold; font-size: 0.9rem; }
.review-text { font-style: italic; color: var(--text-light); font-size: 0.95rem; }

/* Contact Form */
.contact-section { background: var(--primary); padding: 80px 0; }
.form-wrapper { max-width: 500px; margin: 0 auto; text-align: center; }
.form-sub { color: rgba(255,255,255,0.7); margin-bottom: 30px; }
.modern-form { display: flex; flex-direction: column; gap: 15px; }
.modern-form input, .modern-form textarea { padding: 16px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: white; font-size: 1rem; }
.modern-form input::placeholder, .modern-form textarea::placeholder { color: rgba(255,255,255,0.6); }
.btn-accent { background: var(--accent); color: white; width: 100%; }
.btn-accent:hover { background: var(--accent-hover); }
.form-status { color: white; margin-top: 10px; min-height: 20px; }

/* Footer */
.footer { background: #0f172a; color: #94a3b8; padding: 30px 0; text-align: center; font-size: 0.9rem; }
.footer__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }

@media (max-width: 768px) {
  .nav { display: none; }
  .hero { padding: 60px 0; }
  .myths-grid { grid-template-columns: 1fr; }
  .step-v { flex-direction: column; gap: 10px; }
  .footer__inner { justify-content: center; }
}