:root {
  --primary: #d64541;
  --secondary: #1a1a2e;
  --accent: #f5a623;
  --light: #f8f9fa;
  --dark: #0f0f1a;
  --text-primary: #1a1a2e;
  --text-secondary: #6c757d;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(26, 26, 46, 0.12);
  --shadow-hover: 0 16px 48px rgba(26, 26, 46, 0.18);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 8px 0;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--accent);
}

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

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 15px 0;
}

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

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

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
}

.navbar.scrolled .logo-text {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
  color: var(--secondary);
}

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

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: #c03933;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--white) !important;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--secondary);
  transform: translateY(-2px);
}

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

.btn-dark:hover {
  background: #0f0f1a;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
  background: var(--secondary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: var(--white);
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-block;
  width: 140px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.store-btn-playstore {
  background-image: url("../images/playstore.svg");
}

.store-btn-appstore {
  background-image: url("../images/appstore.svg");
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.store-buttons-footer {
  margin-top: 24px;
}

.store-buttons-footer .store-btn {
  width: 140px;
  height: 42px;
}

.store-buttons-footer .store-btn:hover {
  transform: translateY(-2px);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 56px;
}

.hero-image img {
  max-width: 75%;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--light);
}

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

.section-header h2 {
  font-size: 42px;
  color: var(--secondary);
  margin-bottom: 16px;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, #e57373 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
}

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

.benefit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.benefit-row.reverse .benefit-content {
  order: 2;
}

.benefit-row.reverse .benefit-image {
  order: 1;
}

.benefit-content h2 {
  font-size: 38px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.benefit-content p {
  color: var(--text-secondary);
  font-size: 17px;
  margin-bottom: 24px;
}

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

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--secondary);
}

.benefit-list li svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  flex-shrink: 0;
}

.benefit-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.benefit-illustration {
  background: linear-gradient(135deg, var(--light) 0%, #e9ecef 100%);
  border-radius: 16px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.benefit-illustration svg {
  width: 200px;
  height: 200px;
  fill: var(--primary);
  opacity: 0.3;
}

/* Roles Section */
.roles {
  padding: 100px 0;
  background: var(--secondary);
}

.roles .section-header h2 {
  color: var(--white);
}

.roles .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.role-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
}

.role-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.role-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.role-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.role-card h3 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}

.role-card > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  font-size: 15px;
}

.role-permissions {
  list-style: none;
}

.role-permissions li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  font-size: 14px;
}

.role-permissions li svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* Screenshots Section */
.screenshots {
  padding: 100px 0;
  background: var(--light);
}

.screenshots-swiper {
  padding-bottom: 40px;
  background: transparent !important;
}

.screenshots-swiper .swiper-slide img {
  width: 100%;
  height: auto;
}

.screenshots-swiper .swiper-pagination-bullet {
  background: var(--text-secondary);
  opacity: 0.5;
}

.screenshots-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
}

.screenshots-swiper .swiper-button-prev,
.screenshots-swiper .swiper-button-next {
  color: var(--primary);
  background: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.screenshots-swiper .swiper-button-prev::after,
.screenshots-swiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .screenshots-swiper .swiper-button-prev,
  .screenshots-swiper .swiper-button-next {
    display: none;
  }
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #e57373 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  color: var(--white);
}

.stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.contact .section-header h2 {
  color: var(--white);
}

.contact .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  border-color: var(--primary);
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #e57373 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1);
}

.contact-card:nth-child(3) {
  grid-column: 1 / -1;
}

.contact-card-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--white);
}

.contact-card h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  max-width: 617px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card:nth-child(3) {
    grid-column: auto;
  }
}

/* Footer */
.footer {
  background: var(--dark);
  padding: 60px 0 30px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-grid-column-2{
  display: flex;
  justify-content: space-between;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 300;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 12px;
  /* flex-wrap: wrap; */
  flex-direction: column;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 999;
  padding: 12px 5% 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 12px;
}

.mobile-menu-header h4 {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: large;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.3s ease;
}

.mobile-menu.active li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.active li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active li:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-menu.active li:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu.active li:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-menu.active li:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-close {
  font-size: 48px;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-close:hover {
  color: var(--primary);
}

.flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
