* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #1a2e3f;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.header {
  background-color: #0a2540;
  color: white;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background-color: rgba(10, 37, 64, 0.98);
  border-bottom: 1px solid rgba(230, 177, 126, 0.2);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #e6b17e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-phone i {
  color: #e6b17e;
  font-size: 1.3rem;
}
.header-phone a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.header-phone a:hover {
  color: #e6b17e;
}

.btn-call {
  background: transparent;
  border: 1.5px solid #e6b17e;
  color: #e6b17e;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-call i {
  font-size: 1rem;
}
.btn-call:hover {
  background: #e6b17e;
  color: #0a2540;
  border-color: #e6b17e;
}

.hero {
  padding: 100px 0 80px;
  background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0a2540;
  margin-bottom: 25px;
}

.hero h1 span {
  color: #e6b17e;
  position: relative;
}

.hero p {
  font-size: 1.4rem;
  color: #4a5a6e;
  max-width: 700px;
  margin: 0 auto 45px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #0a2540;
  border: none;
  color: white;
  padding: 18px 42px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 15px 25px -8px rgba(10, 37, 64, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #0a2540;
}

.btn-primary:hover {
  background: #1d3b5c;
  border-color: #1d3b5c;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #0a2540;
  color: #0a2540;
  padding: 18px 42px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  background: #0a2540;
  color: white;
}

.benefits {
  padding: 60px 0;
  background: white;
}

.benefits-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f6f9fc;
  padding: 15px 30px;
  border-radius: 60px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.benefit-item i {
  font-size: 1.8rem;
  color: #e6b17e;
}

.benefit-item span {
  font-weight: 600;
  font-size: 1.1rem;
  color: #0a2540;
}

.forms-section {
  padding: 90px 0;
  background: #fafcff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.3rem;
  color: #4a5a6e;
}

.forms-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}

.form-card {
  flex: 1 1 450px;
  max-width: 550px;
  background: white;
  border-radius: 48px;
  padding: 45px 40px;
  box-shadow: 0 30px 50px -20px rgba(10, 37, 64, 0.15);
  border: 1px solid rgba(230, 177, 126, 0.2);
  transition: all 0.3s ease;
}

.form-card:hover {
  box-shadow: 0 40px 60px -20px rgba(10, 37, 64, 0.25);
  border-color: rgba(230, 177, 126, 0.5);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}

.card-header i {
  font-size: 2.5rem;
  color: #e6b17e;
  background: rgba(230, 177, 126, 0.1);
  padding: 15px;
  border-radius: 30px;
}

.card-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #0a2540;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 25px;
  font-size: 1rem;
  border: 1px solid #e0e8f0;
  border-radius: 40px;
  background: #f9fbfe;
  transition: 0.2s;
  outline: none;
  font-family: "Inter", sans-serif;
}

.form-group textarea {
  border-radius: 30px;
  resize: vertical;
  min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #e6b17e;
  background: white;
  box-shadow: 0 0 0 4px rgba(230, 177, 126, 0.15);
}

.form-card button {
  width: 100%;
  padding: 18px 25px;
  background: #0a2540;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.2s;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid #0a2540;
}

.form-card button:hover {
  background: #1d3b5c;
  border-color: #1d3b5c;
}

.contact-premium {
  background: #0a2540;
  border-radius: 80px;
  margin: 60px auto 0;
  padding: 60px 40px;
  color: white;
  text-align: center;
  max-width: 1000px;
}

.contact-premium h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-premium .phone-big {
  font-size: 3.5rem;
  font-weight: 800;
  color: #e6b17e;
  text-decoration: none;
  display: inline-block;
  margin: 25px 0;
  letter-spacing: -1px;
}

.contact-premium .phone-big:hover {
  color: #f5c9a3;
}

.contact-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid #e6b17e;
  color: #e6b17e;
  padding: 16px 38px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-light:hover {
  background: #e6b17e;
  color: #0a2540;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.7);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-card {
  background: white;
  max-width: 450px;
  width: 90%;
  padding: 50px 45px;
  border-radius: 70px;
  text-align: center;
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.4);
}

.modal-card i {
  font-size: 3rem;
  color: #e6b17e;
  margin-bottom: 15px;
}

.modal-card h3 {
  font-size: 2.2rem;
  color: #0a2540;
  margin-bottom: 10px;
}

.modal-card p {
  color: #4a5a6e;
  margin-bottom: 30px;
}

.modal-card input {
  width: 100%;
  padding: 18px 25px;
  border-radius: 60px;
  border: 1px solid #dde3ec;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.modal-card button {
  background: #0a2540;
  color: white;
  border: none;
  padding: 18px 30px;
  border-radius: 60px;
  font-weight: 600;
  width: 100%;
  font-size: 1.2rem;
  cursor: pointer;
  margin-bottom: 15px;
}

.modal-card .close-modal {
  background: none;
  border: none;
  color: #7b8a9b;
  text-decoration: underline;
  cursor: pointer;
  font-size: 1rem;
}

.float-phone {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #e6b17e;
  color: #0a2540;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
  z-index: 99;
  text-decoration: none;
}

.float-phone:hover {
  background: #f5c9a3;
  transform: scale(1.05);
}

.footer {
  background: #0f2a42;
  color: #9fb3cc;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(230, 177, 126, 0.1);
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #0a2540;
  color: white;
  padding: 16px 24px;
  border-radius: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 1001;
  border-left: 4px solid #e6b17e;
}

.notification i {
  color: #e6b17e;
  font-size: 1.3rem;
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .contact-premium .phone-big {
    font-size: 2.2rem;
  }
  .btn-primary,
  .btn-secondary {
    padding: 14px 30px;
  }
  .container {
    padding: 0 20px;
  }
  .form-card {
    padding: 35px 25px;
  }
}
