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

:root {
  --blue-shade-gradient: linear-gradient(156deg,
      #4c54e3 0.7%,
      rgba(88, 93, 232, 0) 53.58%),
    #fff;

  --primary-button-gradient: linear-gradient(90deg,
      #7d5dfd 0%,
      #4fefa7 100%);
}

body {
  font-family: "Host Grotesk", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--primary-button-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover {
  color: #4c54e3;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1001;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item:first-child {
  border-radius: 12px 12px 0 0;
}

.dropdown-item:last-child {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}

.dropdown-item:hover {
  background: linear-gradient(90deg,
      rgba(125, 93, 253, 0.1) 0%,
      rgba(79, 239, 167, 0.1) 100%);
  color: #4c54e3;
}

.dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.header-cta {
  background: var(--primary-button-gradient);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(125, 93, 253, 0.3);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: var(--blue-shade-gradient);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="300" cy="700" r="120" fill="url(%23a)"/><circle cx="700" cy="800" r="80" fill="url(%23a)"/></svg>') no-repeat center center;
  background-size: cover;
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-20px) rotate(1deg);
  }

  66% {
    transform: translateY(10px) rotate(-1deg);
  }
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 0;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #2c3e50, #4c54e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-text .tagline {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-text .description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-button {
  background: var(--primary-button-gradient);
  color: #fff !important;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: .8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-family: "Host Grotesk", sans-serif;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(125, 93, 253, 0.3);
}

.hero-visual {
  position: relative;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

.tech-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-button-gradient);
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tech-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  background: var(--primary-button-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.tech-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #2c3e50, #4c54e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-button-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: var(--primary-button-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

/* Solutions Section */
.solutions {
  padding: 100px 0;
  background: white;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.solution-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-button-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card:hover::before {
  opacity: 0.05;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  background: var(--primary-button-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.solution-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.solution-features {
  list-style: none;
  text-align: left;
}

.solution-features li {
  padding: 5px 0;
  color: #555;
  position: relative;
  padding-left: 20px;
}

.solution-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4fefa7;
  font-weight: bold;
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background: var(--blue-shade-gradient);
}

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

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-button-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      #4c54e3 50%,
      transparent 100%);
  z-index: 1;
}

.process-step:last-child::after {
  display: none;
}

.process-step h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.process-step p {
  color: #666;
  line-height: 1.6;
}

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

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.benefits-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #2c3e50, #4c54e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefits-list {
  list-style: none;
  space-y: 20px;
}

.benefits-list li {
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 60px;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li::before {
  content: "🚀";
  position: absolute;
  left: 0;
  font-size: 1.5rem;
}

.benefits-list li h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.benefits-list li p {
  color: #666;
  line-height: 1.6;
}

.benefits-visual {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.benefits-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-button-gradient);
  opacity: 0.05;
}

.benefits-chart {
  font-size: 4rem;
  background: var(--primary-button-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 80px 0;
  color: white;
}

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

.stat-item {
  position: relative;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--primary-button-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 10px;
  color: #ccc;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--blue-shade-gradient);
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #2c3e50, #4c54e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--primary-button-gradient);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-secondary {
  background: transparent;
  color: #4c54e3;
  border: 2px solid #4c54e3;
  padding: 16px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(125, 93, 253, 0.3);
}

.cta-secondary:hover {
  background: #4c54e3;
  color: white;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--primary-button-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #4fefa7;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
  color: #999;
}

.policy-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.policy-card h1.section-title {
  margin-bottom: 10px;
}

.policy-card .section-subtitle {
  margin-bottom: 30px;
}

.policy-card ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-card ul li {
  color: #555;
  margin-bottom: 8px;
  font-size: 1rem;
}

.policy-card h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #4c54e3;
}

.policy-card p,
.policy-card a {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

.policy-card a.cta-button {
  margin-top: 30px;
  display: inline-block;
}

.delete-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: center;
  animation: fadeIn 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkmark {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  display: inline-block;
}

.checkmark__circle {
  stroke: #4fefa7;
  stroke-width: 6;
  fill: none;
  stroke-dasharray: 176;
  stroke-dashoffset: 176;
  animation: checkmark-circle 0.6s ease-in-out forwards;
}

.checkmark__check {
  stroke: #4fefa7;
  stroke-width: 6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: checkmark-check 0.4s 0.5s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes checkmark-circle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes checkmark-check {
  to {
    stroke-dashoffset: 0;
  }
}

.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #4c54e3;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 1s linear infinite;
  margin: 40px auto 24px auto;
  display: block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.delete-form input,
.delete-form textarea,
.common-input-field {
  width: 100%;
  padding: 12px 16px;
  margin: 12px 0 20px 0;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
  outline: none;
  transition: border-color 0.3s ease;
}

.delete-form input:focus,
.delete-form textarea:focus,
.common-input-field:focus {
  border-color: #4c54e3;
}

.delete-form label {
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

.delete-form textarea {
  min-height: 80px;
  max-height: 200px;
}

/* Subsription Page */
.subscription-home {
  min-height: 80vh;
}

.subscription-home .hero-content {
  display: block;
  text-align: center;
}

.subscription-home .hero-content .hero-text {
  max-width: 620px;
  margin: auto;
}

.subscription-home .hero-content .hero-text .tagline,
.subscription-home .hero-content .hero-text .description {
  margin-bottom: 20px;
}

.subscription-home .form-md {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.subscription-home .form-md .form-group {
  position: relative;
  flex: 1 1 auto;
}

.subscription-home .form-md .form-group input {
  position: relative;
  display: block;
  height: 60px;
  padding-left: 20px;
  margin: 0;
  border-radius: 30px;
  transition: all .2s ease-in-out;
}

/* Welcome Back Section Styles */
.welcome-section {
  display: none;
  max-width: 500px;
  margin: 80px auto;
  padding: 40px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.welcome-section.active {
  display: block;
}

.welcome-section .step-indicator {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}

.welcome-section .step-indicator b {
  color: #000;
}

.welcome-section .welcome-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.5;
}

.welcome-section .welcome-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

.welcome-section .welcome-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.welcome-section .email-display {
  margin-bottom: 20px;
}

.welcome-section .email-label {
  font-size: 14px;
  color: #333;
}

.welcome-section .email-value {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.welcome-section .password-input {
  padding: 16px;
  margin-top: 0;
}

.welcome-section .cta-button {
  display: block;
  border-radius: 8px;
  width: 100%;
}

/* Loader Styles */
.loader {
  display: none;
  width: 24px;
  height: 24px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #4c54e3;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

.loader.active {
  display: block;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Hide hero section when welcome is active */
#subscriptionHome.hidden {
  display: none;
}

/* Button loading state */
.cta-button.loading {
  color: transparent !important;
}

.cta-button.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff33;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Plan Selection Section */
.plan-section {
  max-width: 100%;
}

.plan-section .plan-header .welcome-title {
  margin-bottom: 40px;
}

.plan-section .plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.plan-section .plan-card {
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background: #f8f9fa;
}

.plan-section .plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plan-section .plan-card.selected {
  border-color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.plan-section .plan-card .check-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: #4CAF50;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.plan-section .plan-card.selected .check-icon {
  display: flex;
}

.plan-section .plan-card .kid-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  font-weight: bold;
}

.plan-section .plan-card .kid-image-outer {
  width: 80px;
  margin: 0 auto 15px;
}

.plan-section .plan-card .kid-image-outer .kid-image-avatar {
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  background-color: #4ECDC4;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.plan-section .plan-card .plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.5;
}

.plan-section .plan-card .plan-quality {
  font-size: 1rem;
  margin-bottom: 20px;
  opacity: 0.8;
}

.plan-section .plan-card .plan-benefits {
  text-align: left;
  margin-top: 20px;
}

.plan-section .plan-card .benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.plan-section .plan-card .benefit-tick {
  width: 20px;
  height: 20px;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
}

.plan-section .plan-card.selected .benefit-tick {
  background: rgba(255, 255, 255, 0.8);
  color: #667eea;
}

.plan-section .total-amount {
  text-align: center;
  margin: 30px 0 20px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  display: none;
}

.plan-section .total-amount.show {
  display: block;
}

.plan-section .total-amount .total-label {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 10px;
}

.plan-section .total-amount .total-price {
  font-size: 2rem;
  font-weight: 700;
  color: #E50914;
  margin-bottom: 5px;
}

.plan-section .total-amount .total-description {
  font-size: 0.9rem;
  color: #888;
}

.plan-section .plan-next-btn {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.plan-section .plan-next-btn:disabled,
.plan-section .plan-next-btn:disabled:hover {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.plan-section .plan-card .plan-benefits {
  margin-bottom: 1.5rem;
}

.header-school-logo {
  display: none;
}

#paymentSection .plan-header {
  text-align: center;
}

#paymentSection .plan-header p {
  color: #2d2d2d;
  margin-bottom: 8px;
}

#paymentSection .plan-header .highlight-plan {
  color: #7283e7;
  text-underline-offset: 5px;
  margin-bottom: 20px;
}

#paymentSection .plan-header .highlight-plan-listed {
  margin-bottom: 20px;
}

#paymentSection .plan-header .highlight-plan-listed li {
  list-style-type: none;
}

#paymentSection .plan-section .plan-card .benefit-item{
  justify-content: center;
}

footer {
  text-align: center;
}

footer .footer-payment-desc {
  padding: 0 15px;
}

footer .footer-payment-desc p {
  margin-bottom: 10px;
}

footer .footer-payment-desc ul {
  text-align: left;
}

footer .footer-payment-desc ul li ul {
  margin-left: 15px;
}

footer .footer-bottom p {
  margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

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

  .section-title {
    font-size: 2.2rem;
  }

  .features-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .benefits-content {
    grid-template-columns: 1fr;
  }

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

  .process-step::after {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .hero-content,
  .welcome-section,
  .plan-section {
    padding: 40px 20px;
  }

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

@media (max-width: 767px) {
  #paymentSection {
    min-height: 100%;
    background: linear-gradient(180deg,
        #fff 20%,
        #8385bc 45.58%);
  }

  .plan-section {
    padding: 1.5rem 1rem;
    margin: 25px auto 50px;
  }

  .plan-section .plan-header .welcome-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .plan-section .plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    margin-bottom: 0;
  }

  .plan-section .plan-card .plan-name {
    font-size: 18px;
    line-height: 1;
  }

  .plan-section .plan-card .plan-quality {
    font-size: 14px;
  }

  .plan-section .plan-next-btn {
    font-size: 1rem;
    padding: 14px 40px;
  }

  .plan-section .plan-card {
    padding: 16px;
    transform: none !important;
  }

  .nav-container {
    display: none;
  }

  .footer {
    padding-top: 30px;
  }

  .header-school-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    gap: 1.5rem;
  }

  .footer-content {
    font-size: 0.9rem;
    gap: 20px;
    margin-bottom: 30px;
  }

  #paymentSection .plan-header p,
  #paymentSection .plan-header .highlight-plan,
  footer .footer-payment-desc,
  .footer-bottom {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 410px){
  #paymentSection .plan-section .plan-card .benefit-item{
    justify-content: flex-start;
  }
}

/* New styles for refund policy, pricing, and contact pages */
.policy-note {
  background: #f8f9fa;
  border-left: 4px solid #4c54e3;
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
}

.pricing-card {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 30px;
  margin: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: #4c54e3;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(76, 84, 227, 0.15);
}

.pricing-card h4 {
  color: #4c54e3;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
}

.pricing-card ul li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4c54e3;
  font-weight: bold;
  font-size: 1.2rem;
}

.pricing-note {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.contact-info h2 {
  margin-bottom: 30px;
}

.company-details {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.company-details h3 {
  color: #4c54e3;
  margin-bottom: 10px;
}

.contact-method {
  margin-bottom: 30px;
}

.contact-method h4 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-method p {
  margin: 8px 0;
  line-height: 1.6;
}

.contact-method a {
  color: #4c54e3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-method a:hover {
  color: #333;
  text-decoration: underline;
}

.contact-form {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
  margin-bottom: 25px;
}

.contact-form-element .form-group {
  margin-bottom: 20px;
}

.contact-form-element label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.contact-form-element input,
.contact-form-element select,
.contact-form-element textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.contact-form-element input:focus,
.contact-form-element select:focus,
.contact-form-element textarea:focus {
  outline: none;
  border-color: #4c54e3;
}

.contact-form-element textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.cta-button.secondary {
  background: #6c757d;
  color: white;
  border: none;
  margin-left: 15px;
}

.cta-button.secondary:hover {
  background: #5a6268;
}

.additional-contact {
  margin: 50px 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.contact-card {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #4c54e3;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(76, 84, 227, 0.1);
}

.contact-card h4 {
  color: #4c54e3;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.contact-card p {
  margin: 8px 0;
  line-height: 1.6;
}

.contact-card a {
  color: #4c54e3;
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

.location-info {
  margin: 50px 0;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 16px;
}

.location-details h4 {
  color: #4c54e3;
  margin: 20px 0 15px 0;
  font-size: 1.2rem;
}

.location-details ul {
  list-style: none;
  padding: 0;
}

.location-details ul li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.location-details ul li::before {
  content: "📍";
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}

/* Responsive design for contact page */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 25px 20px;
  }
  
  .company-details {
    padding: 20px;
  }
  
  .location-info {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 20px;
  }
  
  .pricing-card .price {
    font-size: 2rem;
  }
  
  .contact-form-element input,
  .contact-form-element select,
  .contact-form-element textarea {
    padding: 10px 14px;
  }
}