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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Header */
.header {
  background-color: #081a51;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  height: 24px;
  width: auto;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.nav-link.active {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.login-btn {
  background-color: #db5230;
  color: #ffffff;
  border: none;
  padding: 8px 20px;
  border-radius: 3px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-btn:hover {
  background-color: #c44a2a;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background-color: #081a51;
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-login-header {
  display: none;
  background-color: #db5230;
  color: #ffffff;
  border: none;
  padding: 8px 20px;
  border-radius: 3px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mobile-login-header:hover {
  background-color: #c44a2a;
}

/* Hero Section */
.hero {
  background-color: #081a51;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -5%;
  width: 300px;
  height: 300px;
  background:
          radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.4) 30%, transparent 50%),
          radial-gradient(circle, transparent 40%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.08) 70%, transparent 100%);
  border-radius: 50%;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 25%;
  width: 200px;
  height: 200px;
  background:
          radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.4) 30%, transparent 50%),
          radial-gradient(circle, transparent 40%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.08) 70%, transparent 100%);
  border-radius: 50%;
  z-index: 1;
}

.hero .container::before {
  content: '';
  position: absolute;
  top: 30%;
  right: -10%;
  width: 250px;
  height: 250px;
  background:
          radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.4) 30%, transparent 50%),
          radial-gradient(circle, transparent 40%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.08) 70%, transparent 100%);
  border-radius: 50%;
  z-index: -1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.hero-text {
  flex: 2;
}

.hero-image {
  flex: 1;
}

.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.title-white {
  color: #ffffff;
}

.title-orange {
  color: #db5230;
}

.title-dark {
  color: #081a51;
}

.hero-description {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #c7c7c7;
  margin-bottom: 40px;
  line-height: 1.4;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  justify-content: flex-start;
}

.feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  transition: all 0.3s ease;
  white-space: nowrap;
  width: fit-content;
}

.feature-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.feature-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.feature-item span {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}

.cta-btn {
  background-color: #db5230;
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  border-radius: 7px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 24px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #c44a2a;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 800px;
  object-fit: contain;
}

/* Section Styles */
section {
  padding: 60px 0;
}

.about {
  background-color: #f2f5f9;
}

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

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-description {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #81858c;
  max-width: 1100px;
  margin: 0 auto;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature-card {
  flex: 1;
  min-width: 350px;
  max-width: 400px;
}

.feature-card {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid #081a51;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.feature-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #081a51;
}

.feature-card p {
  font-size: 16px;
  font-weight: 500;
  color: #81858c;
  line-height: 1.4;
}

.feature-card ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
}

.feature-card li {
  font-size: 16px;
  font-weight: 500;
  color: #81858c;
  line-height: 1.4;
  margin-bottom: 5px;
}

.feature-card img {
  width: 43px;
  height: 43px;
  align-self: center;
}

/* Goals Section */
.goals {
  background-color: #f2f5f9;
}

.goals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.goal-card {
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
  min-width: 300px;
}

.goal-card {
  background-color: #081a51;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.goal-card img {
  width: 80px;
  height: 80px;
}

.goal-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.goal-card p {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
}

/* Audience Section */
.audience {
  background-color: #f2f5f9;
}

.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.audience-card {
  flex: 1;
  min-width: 350px;
  max-width: 400px;
}

.audience-card {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 20px;
  border: 1px solid #081a51;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  min-height: 250px;
  justify-content: space-between;
}

.audience-card img {
  width: 40px;
  height: 40px;
}

.audience-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #081a51;
  line-height: 1.2;
}

.audience-card p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(44, 51, 63, 0.6);
  line-height: 1.4;
}

.audience-card ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
}

.audience-card li {
  font-size: 16px;
  font-weight: 500;
  color: rgba(44, 51, 63, 0.6);
  line-height: 1.4;
  margin-bottom: 5px;
}

/* Cases Section */
.cases {
  background-color: #f2f5f9;
}

.cases-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.case-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #081a51;
}

.case-item h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #db5230;
  text-align: center;
  margin-bottom: 15px;
}

.case-content {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.case-problem,
.case-solution {
  flex: 1;
}

.vs-icon {
  flex-shrink: 0;
}

.vs-icon {
  width: 60px;
  height: 50px;
  justify-self: center;
}

.case-problem,
.case-solution {
  padding: 15px;
}

.case-problem p,
.case-solution p {
  font-size: 18px;
  font-weight: 500;
  color: #404040;
  line-height: 1.4;
  margin: 0;
}


/* FAQ Section */
.faq {
  background-color: #f2f5f9;
}

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

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #081a51;
}

.faq-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 0 20px 0;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 20px;
  font-weight: 500;
  color: #ff6746;
  line-height: 1.4;
}

/* CTA Section */
.cta {
  background-color: #f2f5f9;
}

.cta-content {
  text-align: center;
}

.cta-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 70px;
}

.cta-features {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
  justify-content: space-between;
}

.cta-feature-list {
  flex: 1;
}

.cta-qr {
  flex-shrink: 0;
}

.cta-feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.check-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.cta-feature-text {
  font-size: 26px;
  font-weight: 900;
  color: #081a51;
  margin: 0;
}


.cta-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.qr-code {
  width: 200px;
  height: 200px;
}

.qr-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-icon {
  width: 30px;
  height: 30px;
}

.qr-text {
  font-size: 18px;
  font-weight: 700;
  color: #081a51;
}

.cta-btn-large {
  background-color: #081a51;
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  border-radius: 7px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 auto;
  transition: background-color 0.3s ease;
}

.cta-btn-large:hover {
  background-color: #0a1d5a;
}

.gift-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
.footer {
  background-color: #081a51;
  padding: 40px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -45px;
  width: 115px;
  height: 225px;
  background-image: url('https://c.animaapp.com/mg4ntcbpfsXWWn/img/---------1.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: 1;
  min-height: 120px;
}


.footer .container {
  position: relative;
  z-index: 2;
}

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

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-section h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #db5230;
}

.copyright,
.footer-link {
  font-size: 16px;
  font-weight: 100;
  margin-top: 20px;
}

.social-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.footer-logo-img {
  width: 150px;
  height: auto;
}

.main-menu .nav-item.active {
  background: #f2f2f2;
  border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .hero-content {
    flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
  }

  .hero-image img {
    max-width: 85%;
  }

  .features-grid {
    gap: 15px;
    justify-content: center;
  }

  .feature-card {
    flex: 0 0 calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
    min-width: 100%;
  }

  .goal-card {
    min-width: 250px;
  }

  .audience-card {
    min-width: 300px;
  }

  .case-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cta-features {
    flex-direction: column;
    gap: 40px;
  }

  .cta-feature-list {
    justify-content: center;
  }
}

@media (max-width: 768px) {

  .vs-icon {
    transform: rotate(90deg);
  }

  .header-content {
    display: flex;
    align-items: center;
  }

  .mobile-menu-btn {
    display: flex;
    flex-shrink: 0;
  }

  .logo {
    height: 19px;
    margin-left: 15px;
    flex-shrink: 0;
  }

  .mobile-login-header {
    display: block;
    margin-left: auto;
  }

  .navbar {
    display: none;
  }

  .mobile-menu.active {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 16px;
  }

  .section-description {
    font-size: 16px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .goals-grid {
    flex-direction: column;
  }

  .audience-grid {
    flex-direction: column;
  }

  .goal-card,
  .audience-card {
    max-width: 100%;
  }

  .hero-features {
    justify-content: center;
    gap: 10px;
  }

  .feature-item {
    padding: 10px 12px;
  }

  .feature-item span {
    font-size: 12px;
  }

  .cta-feature-list {
    align-items: baseline;
  }

  .cta-feature-item {
    justify-content: center;
    text-align: left;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero::before {
    width: 200px;
    height: 200px;
    top: 15%;
    left: -8%;
  }

  .hero::after {
    width: 150px;
    height: 150px;
    bottom: 5%;
    left: 20%;
  }

  .hero .container::before {
    width: 180px;
    height: 180px;
    top: 25%;
    right: -15%;
  }

  .hero-features {
    justify-content: center;
    gap: 8px;
  }

  .feature-item {
    padding: 8px 12px;
    gap: 6px;
  }

  .feature-item img {
    width: 16px;
    height: 16px;
  }

  .feature-item span {
    font-size: 11px;
  }

  .features-grid {
    justify-content: center;
  }

  .feature-card {
    flex: 0 0 calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
    min-width: 100%;
    padding: 20px 15px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .feature-card li {
    font-size: 14px;
  }

  .goal-card {
    padding: 20px;
  }

  .audience-card {
    padding: 20px;
  }

  .case-item {
    padding: 15px;
  }

  .faq-question {
    font-size: 18px;
  }

  .check-icon {
    width: 35px;
    height: 35px;
  }

  .cta-feature-text {
    font-size: 18px;
  }

  .cta-btn,
  .cta-btn-large {
    font-size: 18px;
    padding: 12px 30px;
  }
}

@media (max-width: 400px) {
  .cta-btn,
  .cta-btn-large {
    font-size: 16px;
    padding: 12px 20px;
  }
}
/* Smooth scrolling offset for fixed header */
section {
  scroll-margin-top: 80px;
}

/* Animation for mobile menu */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}
