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

:root {
  --primary: rgb(38, 73, 119);
  --primary-light: rgb(70, 105, 150);
  --primary-dark: rgb(25, 50, 85);
  --secondary: rgb(76, 175, 80);
  --secondary-light: rgb(129, 199, 132);
  --accent: rgb(103, 58, 183);
  --accent-light: rgb(171, 144, 226);
  --text-primary: rgb(20, 20, 25);
  --text-secondary: rgb(110, 115, 125);
  --border: rgb(235, 238, 245);
  --bg: rgb(255, 255, 255);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0.5rem 1.5rem;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 48px;
  width: 48px;
}

.logo img {
  height: 100%;
  width: auto;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-button {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.cta-button:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(38, 73, 119, 0.15);
}

/* Hero Section */
.hero {
  margin-top: 80px;
  padding: 6rem 3rem;
  background: linear-gradient(
    135deg,
    rgba(38, 73, 119, 0.02) 0%,
    rgba(242, 109, 83, 0.02) 100%
  );
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
  letter-spacing: -1px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-button {
  display: flex;
  width: 100%;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-button button {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(38, 73, 119, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(38, 73, 119, 0.15);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.8s ease-out 0.3s both;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.shield-icon {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  box-shadow: 0 24px 48px rgba(38, 73, 119, 0.15);
  position: relative;
  overflow: hidden;
}

.shield-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.2),
    transparent 50%
  );
  pointer-events: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Features Section */
.features {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(38, 73, 119, 0.02);
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(38, 73, 119, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Protection Section */
.protection {
  padding: 6rem 3rem;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: white;
}

.protection-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.protection h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

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

.protection-list li {
  padding: 1rem 0;
  display: flex;
  gap: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.protection-list li::before {
  content: "✓";
  font-weight: bold;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--secondary-light);
}

.protection-visual {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.protection-visual h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.feature-mini {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.feature-mini-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.feature-mini-text h4 {
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.feature-mini-text p {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  padding: 5rem 3rem;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(38, 73, 119, 0.05) 0%,
    rgba(242, 109, 83, 0.05) 100%
  );
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Footer */
footer {
  padding: 3rem;
  background: var(--text-primary);
  color: white;
  text-align: center;
}

footer p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

footer a {
  color: var(--secondary-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--secondary);
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    margin-top: 70px;
    padding: 3rem 1.5rem;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-visual {
    order: -1;
  }

  .shield-icon {
    width: 250px;
    height: 250px;
    font-size: 80px;
  }

  .protection-container {
    grid-template-columns: 1fr;
  }

  .features {
    padding: 3rem 1.5rem;
  }

  .protection {
    padding: 3rem 1.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }
}

.back-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--primary-dark);
}

/* Main Content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  text-align: center;
}

.intro-text {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.support-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(38, 73, 119, 0.02);
  transition: all 0.3s ease;
}

.support-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(38, 73, 119, 0.1);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.support-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}

.support-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-link {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(38, 73, 119, 0.15);
}

/* FAQ Section */
.faq-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.faq-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

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

.faq-item {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.8rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-dark);
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Contact Form */
.contact-form-section {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(38, 73, 119, 0.05) 0%,
    rgba(76, 175, 80, 0.05) 100%
  );
  border-radius: 12px;
}

.contact-form-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.5px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(38, 73, 119, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  background: var(--primary);
  color: white;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(38, 73, 119, 0.15);
}

/* Response Message */
.form-message {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 6px;
  display: none;
}

.form-message.success {
  background: rgba(76, 175, 80, 0.15);
  color: var(--secondary-dark);
  border-left: 4px solid var(--secondary);
  display: block;
}

.form-message.error {
  background: rgba(244, 67, 54, 0.15);
  color: #c62828;
  border-left: 4px solid #f44336;
  display: block;
}

/* Footer */
footer {
  padding: 3rem;
  background: var(--text-primary);
  color: white;
  text-align: center;
}

footer p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.8;
  color: white;
}

footer a {
  color: var(--secondary-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--secondary);
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .container {
    padding: 2rem 1.5rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-section {
    padding: 1.5rem;
  }
}

        /* Pricing Section */
        .pricing {
            padding: 5rem 3rem;
            text-align: center;
            background: linear-gradient(135deg, rgba(38, 73, 119, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
        }

        .pricing-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .pricing-container h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }

        .pricing-container p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
        }

        .pricing-display {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .pricing-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .pricing-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-amount {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }

        .pricing-amount span {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .pricing-saving {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--secondary);
            margin-top: 0.3rem;
        }

        .pricing-divider {
            font-size: 1.5rem;
            color: var(--border);
        }