 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }

 body {
   font-family: Arial, Helvetica, sans-serif;
   background: #f4f7fb;
   color: #1f2937;
   line-height: 1.6;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 .topbar {
   background: #0f172a;
   color: #ffffff;
   padding: 18px 24px;
 }

 .topbar-inner {
   max-width: 1180px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   flex-wrap: wrap;
 }

 .brand {
   font-size: 26px;
   font-weight: 800;
   letter-spacing: -0.5px;
 }

 .brand span {
   color: #38bdf8;
 }

 .nav {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 15px;
 }

 .nav a {
   color: #e5e7eb;
 }

 .nav a:hover {
   color: #38bdf8;
 }

 .hero {
   background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #0284c7 100%);
   color: #ffffff;
   padding: 76px 24px 88px;
 }

 .hero-inner {
   max-width: 1180px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1.3fr 0.7fr;
   gap: 40px;
   align-items: center;
 }

 .hero h1 {
   font-size: clamp(34px, 5vw, 58px);
   line-height: 1.1;
   margin-bottom: 22px;
   letter-spacing: -1.2px;
 }

 .hero p {
   font-size: 19px;
   color: #dbeafe;
   max-width: 720px;
   margin-bottom: 28px;
 }

 .hero-actions {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }

 .btn {
   display: inline-block;
   padding: 14px 22px;
   border-radius: 10px;
   font-weight: 700;
   border: 2px solid transparent;
   transition: 0.2s ease;
 }

 .btn-primary {
   background: #38bdf8;
   color: #082f49;
 }

 .btn-primary:hover {
   background: #7dd3fc;
 }

 .btn-secondary {
   border-color: rgba(255, 255, 255, 0.55);
   color: #ffffff;
 }

 .btn-secondary:hover {
   background: rgba(255, 255, 255, 0.12);
 }

 .rating-box {
   background: rgba(255, 255, 255, 0.12);
   border: 1px solid rgba(255, 255, 255, 0.22);
   border-radius: 24px;
   padding: 34px;
   backdrop-filter: blur(10px);
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
   text-align: center;
 }

 .stars {
   color: #facc15;
   font-size: 30px;
   letter-spacing: 2px;
   margin-bottom: 10px;
 }

 .rating-number {
   font-size: 54px;
   font-weight: 800;
   line-height: 1;
   margin-bottom: 8px;
 }

 .rating-note {
   color: #dbeafe;
   font-size: 16px;
 }

 .section {
   padding: 70px 24px;
 }

 .container {
   max-width: 1180px;
   margin: 0 auto;
 }

 .section-title {
   text-align: center;
   margin-bottom: 42px;
 }

 .section-title h2 {
   font-size: clamp(28px, 4vw, 42px);
   color: #0f172a;
   margin-bottom: 12px;
   letter-spacing: -0.7px;
 }

 .section-title p {
   color: #64748b;
   font-size: 18px;
   max-width: 760px;
   margin: 0 auto;
 }

 .reviews-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
 }

 .review-card {
   background: #ffffff;
   border-radius: 18px;
   padding: 28px;
   box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
   border: 1px solid #e5e7eb;
 }

 .review-card .stars {
   font-size: 20px;
   margin-bottom: 14px;
 }

 .review-card h3 {
   color: #0f172a;
   font-size: 20px;
   margin-bottom: 6px;
 }

 .review-meta {
   color: #64748b;
   font-size: 14px;
   margin-bottom: 18px;
 }

 .review-card p {
   color: #374151;
   font-size: 16px;
 }

 .trust-section {
   background: #ffffff;
 }

 .benefits {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 18px;
 }

 .benefit {
   background: #f8fafc;
   border: 1px solid #e2e8f0;
   border-radius: 16px;
   padding: 22px;
   text-align: center;
   font-weight: 700;
   color: #0f172a;
 }

 .benefit span {
   display: block;
   font-size: 28px;
   margin-bottom: 10px;
 }

 .form-wrap {
   display: grid;
   grid-template-columns: 0.9fr 1.1fr;
   gap: 34px;
   align-items: start;
 }

 .form-info,
 .review-form {
   background: #ffffff;
   border-radius: 20px;
   padding: 34px;
   border: 1px solid #e5e7eb;
   box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
 }

 .form-info h2,
 .review-form h2 {
   color: #0f172a;
   font-size: 30px;
   margin-bottom: 14px;
 }

 .form-info p {
   color: #475569;
   margin-bottom: 18px;
 }

 .form-info ul {
   list-style: none;
   margin-top: 20px;
 }

 .form-info li {
   margin-bottom: 12px;
   padding-left: 28px;
   position: relative;
 }

 .form-info li::before {
   content: "✓";
   position: absolute;
   left: 0;
   color: #0284c7;
   font-weight: 800;
 }

 label {
   display: block;
   font-weight: 700;
   color: #1f2937;
   margin-bottom: 7px;
 }

 input,
 select,
 textarea {
   width: 100%;
   padding: 13px 14px;
   border-radius: 10px;
   border: 1px solid #cbd5e1;
   font-size: 16px;
   margin-bottom: 18px;
   font-family: inherit;
 }

 textarea {
   min-height: 150px;
   resize: vertical;
 }

 .checkbox-row {
   display: flex;
   align-items: flex-start;
   gap: 10px;
   margin-bottom: 20px;
   color: #475569;
   font-size: 15px;
 }

 .checkbox-row input {
   width: auto;
   margin-top: 4px;
 }

 .submit-btn {
   width: 100%;
   background: #0284c7;
   color: #ffffff;
   border: none;
   border-radius: 10px;
   padding: 15px 20px;
   font-size: 17px;
   font-weight: 800;
   cursor: pointer;
 }

 .submit-btn:hover {
   background: #0369a1;
 }

 .note {
   margin-top: 14px;
   color: #64748b;
   font-size: 14px;
 }

 .faq-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 20px;
 }

 .faq-item {
   background: #ffffff;
   border: 1px solid #e5e7eb;
   border-radius: 16px;
   padding: 24px;
   box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
 }

 .faq-item h3 {
   color: #0f172a;
   margin-bottom: 8px;
   font-size: 19px;
 }

 .faq-item p {
   color: #475569;
 }

 .cta {
   background: #0f172a;
   color: #ffffff;
   text-align: center;
   padding: 64px 24px;
 }

 .cta h2 {
   font-size: clamp(28px, 4vw, 42px);
   margin-bottom: 14px;
 }

 .cta p {
   color: #cbd5e1;
   font-size: 18px;
   margin-bottom: 26px;
 }

 footer {
   background: #020617;
   color: #94a3b8;
   padding: 28px 24px;
   text-align: center;
   font-size: 14px;
 }

 @media (max-width: 950px) {

   .hero-inner,
   .form-wrap {
     grid-template-columns: 1fr;
   }

   .reviews-grid,
   .benefits {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media (max-width: 640px) {

   .reviews-grid,
   .benefits,
   .faq-grid {
     grid-template-columns: 1fr;
   }

   .section {
     padding: 52px 18px;
   }

   .hero {
     padding: 56px 18px 64px;
   }

   .form-info,
   .review-form,
   .rating-box,
   .review-card {
     padding: 24px;
   }
 }