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

.footer-list a{
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-bottom{
    justify-content: center !important;
}

:root {
  --color-bg: #fafafa;
  --color-text: #0a0a0a;
  --color-primary: #1a1f3a;
  --color-secondary: #2d3558;
  --color-accent: #4ade80;
  --color-white: #ffffff;
  --color-muted: #6b7280;
  --radius: 12px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 31, 58, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
 background: linear-gradient(90deg, #2b7fff 0%, #9810fa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.logo-title {
  font-weight: bold;
  font-size: 18px;
  color: white;
}

.logo-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

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

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.phone-link:hover {
  color: #60a5fa;
}

.phone-number {
  font-size: 14px;
  font-weight: 600;
}

.phone-hours {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.phone-info {
  text-align: right;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
 background: linear-gradient(90deg, #2b7fff 0%, #9810fa 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.4);
}

.btn-hero {
  background: linear-gradient(159deg, #37981b 0%, #00c14a 100%);
  color: white;
  padding: 16px 32px;
  font-size: 18px;
  box-shadow: 0 0 40px rgba(74, 222, 128, 0.3);
}

.btn-hero:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 100%;
}

.btn-outline:hover {
  background: #4ade80;
  border-color: #4ade80;
}

.btn-submit {
  background: var(--color-primary);
  color: white;
  width: 100%;
  padding: 16px;
  font-size: 18px;
}

.btn-submit:hover {
  background: var(--color-secondary);
}

/* Icons */
.icon {
  width: 24px;
  height: 24px;
}

.icon-large {
  width: 64px;
  height: 64px;
  color: #4ade80;
  filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.5));
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
background: linear-gradient(148deg, #000943 0%, #001562 50%, #0c0063 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.png');
  background-size: cover;
  background-position: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

.hero-orb-1 {
  top: 80px;
  right: 80px;
  width: 384px;
  height: 384px;
  background: rgba(74, 222, 128, 0.2);
}

.hero-orb-2 {
  bottom: 80px;
  left: 80px;
  width: 320px;
  height: 320px;
  background: rgba(45, 53, 88, 0.3);
  animation-delay: 1s;
}

.hero-container {
  position: relative;
  z-index: 10;
  padding: 80px 20px;
}

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

.hero-icon {
  display: inline-flex;
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: bold;
  margin-bottom: 32px;
  line-height: 1.1;
  color: white;
}

.text-gradient {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #86efac 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Styles */
.section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: clamp(40px, 6vw, 60px);
  font-weight: bold;
  margin-bottom: 80px;
  text-align: center;
  color: var(--color-text);
}

.section-title.text-white {
  color: white;
}

/* Orbs */
.section-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.section-orb-1 {
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(74, 222, 128, 0.1);
}

.section-orb-2 {
  bottom: 0;
  left: 0;
  width: 320px;
  height: 320px;
  background: rgba(45, 53, 88, 0.1);
}

/* Advantages Section */
.advantages-section {
  background: var(--color-bg);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.advantage-item {
  display: flex;
  gap: 24px;
}

.advantage-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2d3558 0%, #3d4568 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(45, 53, 88, 0.4);
}

.advantage-icon .icon {
  width: 32px;
  height: 32px;
  color: white;
}

.advantage-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
  color: var(--color-text);
}

.advantage-text {
  font-size: 18px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Services Section */
.services-section {
 background: linear-gradient(151deg, #001340 0%, #001d5c 100%);
}

.services-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

.services-orb-1 {
  top: 80px;
  left: 40px;
  width: 288px;
  height: 288px;
  background: rgba(74, 222, 128, 0.2);
}

.services-orb-2 {
  bottom: 80px;
  right: 40px;
  width: 256px;
  height: 256px;
  background: rgba(26, 31, 58, 0.3);
  animation-delay: 0.7s;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(26, 31, 58, 0.4);
}

.service-card:hover {
  border-color: rgba(74, 222, 128, 0.5);
  transform: scale(1.05);
}

.service-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  color: white;
}

.service-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-price {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #86efac 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 48px;
  font-size: 18px;
}

/* Stats Section */
.stats-section {
 background: linear-gradient(171deg, #000943 0%, #001562 50%, #0c0063 100%);
}

.stats-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

.stats-orb-1 {
  top: 40px;
  right: 80px;
  width: 320px;
  height: 320px;
  background: rgba(74, 222, 128, 0.3);
}

.stats-orb-2 {
  bottom: 40px;
  left: 80px;
  width: 288px;
  height: 288px;
  background: rgba(45, 53, 88, 0.4);
  animation-delay: 0.5s;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(56px, 8vw, 72px);
  font-weight: bold;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #86efac 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.3));
}

.stat-label {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

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

.reviews-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.reviews-orb-1 {
  top: 0;
  left: 25%;
  width: 384px;
  height: 384px;
  background: rgba(74, 222, 128, 0.1);
}

.reviews-orb-2 {
  bottom: 0;
  right: 25%;
  width: 320px;
  height: 320px;
  background: rgba(45, 53, 88, 0.1);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.review-card {
  background: linear-gradient(142deg, #001f6c 0%, #004092 100%);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(45, 53, 88, 0.4);
  transition: transform 0.3s;
}

.review-card:hover {
  transform: scale(1.05);
}

.review-text {
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.review-author {
  font-weight: bold;
  color: white;
  margin-bottom: 4px;
}

.review-company {
  color: rgba(255, 255, 255, 0.7);
}

/* SEO Section */
.seo-section {
  background: #0f3778;
  color: white;
}

.seo-content {
  max-width: 1000px;
  margin: 0 auto;
}

.seo-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 32px;
  color: white;
}

.seo-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

/* FAQ Section */
.faq-section {
  background: var(--color-bg);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: white;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 24px;
  font-size: 18px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
 background: #0f3778;
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-subtitle {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 32px;
  color: white;
}

.contact-items {
  margin-bottom: 48px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-label {
  font-weight: bold;
  margin-bottom: 4px;
  color: white;
}

.contact-link {
  font-size: 18px;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-link:hover {
  color: #4ade80;
}

.contact-text {
  font-size: 18px;
  color: white;
}

.contact-note {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.contact-form-wrapper {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  border: 2px solid #e5e7eb;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-input,
.form-textarea {
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  font-size: 18px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #4ade80;
}

.form-textarea {
  min-height: 128px;
  resize: vertical;
}

.form-privacy {
  font-size: 14px;
  color: var(--color-muted);
  text-align: center;
}

/* Footer */
.footer {
 background: #002246;
  color: white;
  padding: 48px 0;
}

.contact-section .section-title{
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  color: white;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-heading {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 18px;
  color: white;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: white;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .phone-link {
    display: none;
  }
  .btn{
    font-size: 14px;
    padding: 13px;
    white-space: nowrap;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .header-content {
      gap: 20px;
  }

  .advantages-grid,
  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
