/* Base Styles */
:root {
  --primary: #FF6B6B;       /* Red */
  --secondary: #1CB5E0;     /* Blue */
  --accent: #FFD166;        /* Yellow */
  --dark: #111111;
  --light: #FFFFFF;
  --gray: #777777;
  --light-gray: #F8F9FA;
  --dark-gray: #343A40;
  --border-radius: 8px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
}

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

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

ul {
  list-style: none;
}

section {
  padding: 80px 0;
}

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

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray);
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5em;
}

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

h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

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

.btn-primary:hover {
  background-color: #ff5252;
  color: var(--light);
}

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

.btn-secondary:hover {
  background-color: #18a0c7;
  color: var(--light);
}

.btn-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
}

.btn-cta:hover {
  background: linear-gradient(135deg, var(--primary) 30%, var(--secondary) 100%);
  color: var(--light);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--light);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1rem;
}

/* Header */
header {
  background-color: var(--light);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
}

.logo-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: var(--dark);
  font-weight: 500;
  position: relative;
}

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

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: var(--transition);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-color: var(--light);
  position: relative;
  overflow: hidden;
  padding: 120px 0 160px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(28, 181, 224, 0.05));
  z-index: -1;
}

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

.hero-content {
  flex: 1;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 500px;
}

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

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

.media-card {
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.tech-badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--light);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom right, transparent 49%, var(--light) 50%);
}

/* Features Section */
.features {
  background-color: var(--light);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

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

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  margin: 0 auto 20px;
}

.svg-icon {
  width: 80px;
  height: 80px;
}

.icon-bg {
  fill: url(#icon-gradient);
}

.icon-text {
  fill: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: middle;
}

.feature-item h3 {
  margin-bottom: 15px;
}

.feature-item p {
  color: var(--gray);
}

/* Process Section */
.process {
  background-color: var(--light-gray);
  position: relative;
}

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

.step {
  background-color: var(--light);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: var(--gray);
}

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

/* Pricing Section */
.pricing {
  background-color: var(--light);
}

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

.pricing-plan {
  background-color: var(--light);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.pricing-plan:hover {
  transform: translateY(-10px);
}

.pricing-plan.popular {
  transform: scale(1.05);
  z-index: 1;
  border: 2px solid var(--primary);
}

.pricing-plan.popular:hover {
  transform: translateY(-10px) scale(1.05);
}

.popular-tag {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(45deg);
}

.plan-header {
  padding: 30px;
  text-align: center;
  background-color: var(--light);
  border-bottom: 1px solid var(--light-gray);
}

.price {
  margin: 20px 0;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.currency {
  font-size: 1.5rem;
  margin-right: 5px;
}

.period {
  font-size: 1rem;
  color: var(--gray);
  font-weight: normal;
}

.plan-header p {
  color: var(--gray);
  font-size: 0.9rem;
}

.plan-features {
  padding: 30px;
  list-style: none;
}

.plan-features li {
  padding: 10px 0;
  text-align: center;
  color: var(--dark-gray);
  border-bottom: 1px solid var(--light-gray);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: '✓';
  color: var(--primary);
  margin-right: 8px;
  font-weight: bold;
}

.plan-footer {
  padding: 0 30px 30px;
  text-align: center;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.3), transparent 70%);
  z-index: 0;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

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

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

.cta .btn:hover {
  background-color: var(--light);
  color: var(--primary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--light-gray);
  padding: 80px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 60px;
}

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

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

.footer-brand p {
  color: var(--gray);
  max-width: 300px;
}

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

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--light);
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

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

.footer-column ul li a {
  color: var(--gray);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--primary);
}

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

.footer-icon-text {
  fill: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-anchor: middle;
  dominant-baseline: middle;
}

.copyright {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  .hero .container {
    flex-direction: column;
  }
  .hero-content {
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--light);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: var(--transition);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links li {
    margin: 15px 0;
  }
  
  .menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .btn {
    padding: 10px 20px;
  }
  .hero {
    padding: 80px 0 120px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .media-card {
    width: 280px;
    height: 280px;
  }
  .pricing-plan.popular {
    transform: scale(1);
  }
  .pricing-plan.popular:hover {
    transform: translateY(-10px) scale(1);
  }
}
