/* Variables */
:root {
  --yellow: #FCD116;
  --blue: #003893;
  --red: #CE1126;
  --white: #ffffff;
  --black: #222222;
  --gray-light: #f5f5f5;
  --gray-medium: #dddddd;
  --gray-dark: #555555;
  
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  color: var(--black);
  line-height: 1.6;
  font-size: 16px;
  background-color: var(--white);
}

.page-wrapper {
  overflow: hidden;
  position: relative;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

img, svg {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--blue);
  transition: var(--transition);
}

a:hover {
  color: var(--red);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5em;
}

/* Typography */
h1 {
  font-size: 2.5rem;
  color: var(--blue);
}

h1 span {
  color: var(--red);
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  color: var(--blue);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--yellow), var(--red));
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

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

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

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

.brand-text h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.brand-text p {
  font-size: 0.8rem;
  margin-top: -5px;
  color: var(--gray-dark);
  margin-bottom: 0;
}

nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--black);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--yellow), var(--red));
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--red);
}

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

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--black);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero-section {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, rgba(252, 209, 22, 0.1) 0%, rgba(206, 17, 38, 0.1) 100%);
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h2 {
  font-size: 2.5rem;
  color: var(--blue);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-visual {
  text-align: right;
}

.hero-visual svg {
  max-width: 400px;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(to right, var(--yellow), var(--red));
  color: var(--white);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(206, 17, 38, 0.3);
  transition: var(--transition);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(206, 17, 38, 0.4);
}

.btn-primary.large {
  padding: 15px 30px;
  font-size: 1rem;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(206, 17, 38, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(206, 17, 38, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(206, 17, 38, 0);
  }
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: var(--gray-light);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-wrapper svg {
  width: 35px;
  height: 35px;
  color: var(--white);
}

.yellow-bg {
  background-color: var(--yellow);
}

.blue-bg {
  background-color: var(--blue);
}

.red-bg {
  background-color: var(--red);
}

.benefit-card h3 {
  margin-bottom: 15px;
  color: var(--blue);
}

.benefit-card p {
  color: var(--gray-dark);
  margin-bottom: 0;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--red) 100%);
  color: var(--white);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-primary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* How it Works Section */
.how-section {
  padding: 80px 0;
  background-color: var(--white);
}

.steps {
  max-width: 800px;
  margin: 0 auto 40px;
}

.step {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--yellow), var(--red));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 10px;
  color: var(--blue);
}

.step-content p {
  color: var(--gray-dark);
  margin-bottom: 0;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: var(--gray-light);
}

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

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius);
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--white);
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(252, 209, 22, 0.05);
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--blue);
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--red) 100%);
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: var(--blue);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 300px;
}

.footer-brand h3 {
  color: var(--white);
  margin-bottom: 5px;
}

.footer-brand p {
  opacity: 0.7;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 2;
}

.links-column {
  flex: 1;
  min-width: 150px;
}

.links-column h4 {
  color: var(--yellow);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.links-column ul li {
  margin-bottom: 10px;
}

.links-column ul li a {
  color: var(--white);
  opacity: 0.8;
}

.links-column ul li a:hover {
  opacity: 1;
  color: var(--yellow);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2, .section-title {
    font-size: 1.8rem;
  }
  
  .hero-section .container {
    grid-template-columns: 1fr;
  }
  
  .hero-visual {
    text-align: center;
    margin-top: 30px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    padding: 40px 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 99;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .benefit-card {
    padding: 20px;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .icon-wrapper {
    width: 60px;
    height: 60px;
  }
}
