:root {
  --primary-color: #818cf8; /* Light Purple/Blue */
  --secondary-color: #a78bfa; /* Lighter Purple */
  --background-color: #0f172a; /* Dark Blue */
  --text-color: #cbd5e1; /* Light Gray/Blue */
  --header-text-color: #e2e8f0; /* Lighter Gray/Blue */
  --card-background: #1e293b; /* Slate Blue */
  --border-color: #334155;
  --hover-color: #6366f1;
  --glow-color-start: rgba(129, 140, 248, 0.5);
  --glow-color-end: rgba(167, 139, 250, 0.5);
}

body.page {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #0f172a;
  color: #e2e8f0;
  margin: 0;
  min-height: 100vh;
}
.header {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}
.header__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.header__logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--header-text-color);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.header__logo:focus, .header__logo:hover {
  color: #8b5cf6;
}
.header__nav {}
.header__menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__menu-link {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
  padding-bottom: 4px;
}
.header__menu-link:focus, .header__menu-link:hover {
  color: #a78bfa;
}
.header__menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #8b5cf6;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}
.header__menu-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background: radial-gradient(ellipse at bottom, #1e293b, #0f172a);
  position: relative;
  overflow: hidden;
}
.hero__content {
  z-index: 2;
  max-width: 600px;
  text-align: left;
  margin-left: 3vw;
  flex: 1 1 50%;
}
.hero__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  color: #f0fdf4;
  text-shadow: 0 4px 30px rgba(139, 92, 246, 0.4);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s 0.2s cubic-bezier(.23,1.01,.32,1) forwards;
}
.hero__subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #cbd5e1;
  opacity: 0.9;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s 0.5s cubic-bezier(.23,1.01,.32,1) forwards;
}
.hero__highlight {
  color: var(--primary-color);
  font-weight: 700;
  background: linear-gradient(90deg, #a78bfa 0%, #d8b4fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__cta-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(129, 140, 248, 0.3);
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s 0.8s cubic-bezier(.23,1.01,.32,1) forwards;
}
.hero__cta-btn:focus, .hero__cta-btn:hover {
  background-color: var(--hover-color);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}
.hero__cta-btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
  background: rgba(0,230,208,0.25);
  pointer-events: none;
  width: 120px;
  height: 120px;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: 2;
}
@keyframes ripple-effect {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}
@keyframes fadeInHeroTitle {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInHeroSubtitle {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInHeroBtn {
  to { opacity: 1; transform: translateY(0); }
}
.hero__visuals {
  position: relative;
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 340px;
  min-height: 340px;
  height: 100%;
}
.hero__animation-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.1) 100%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
  animation: floatGlow 8s ease-in-out infinite alternate;
}
.hero__svg-parallax {
  position: relative;
  z-index: 2;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(.23,1.01,.32,1);
  opacity: 0.7;
}
@keyframes floatGlow {
  from { transform: scale(0.9) translateY(20px) rotate(-10deg); }
  to { transform: scale(1.1) translateY(-20px) rotate(10deg); }
}
.aboutus {
  padding: 4rem 0 2rem 0;
  background: linear-gradient(135deg, #1a222b 0%, #232b36 100%);
}
.aboutus__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}
.aboutus__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00e6d0;
  margin-bottom: 1.5rem;
  text-align: center;
}
.aboutus__desc {
  font-size: 1.3rem;
  color: #c7eaff;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.6;
}
.aboutus__section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #00e6d0;
  margin-bottom: 1.5rem;
  text-align: center;
}
.aboutus__story, .aboutus__mission {
  margin-bottom: 4rem;
}
.aboutus__text {
  font-size: 1.1rem;
  color: #c7eaff;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}
.aboutus__values {
  margin-bottom: 4rem;
}
.aboutus__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.aboutus__value {
  background: rgba(35,43,54,0.8);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,230,208,0.06);
  border: 1px solid rgba(0,230,208,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s cubic-bezier(.23,1.01,.32,1) both;
}
.aboutus__value:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,230,208,0.12);
}
.aboutus__value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.aboutus__value-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.aboutus__value-desc {
  color: #c7eaff;
  font-size: 1rem;
  line-height: 1.6;
}
.aboutus__team {
  margin-bottom: 4rem;
}
.aboutus__team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.aboutus__team-member {
  background: rgba(35,43,54,0.8);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,230,208,0.06);
  border: 1px solid rgba(0,230,208,0.1);
  animation: fadeInUp 1s cubic-bezier(.23,1.01,.32,1) both;
}
.aboutus__team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00e6d0 0%, #0072ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.aboutus__team-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.aboutus__team-role {
  font-size: 1rem;
  color: #00e6d0;
  font-weight: 500;
  margin-bottom: 1rem;
}
.aboutus__team-bio {
  font-size: 0.95rem;
  color: #c7eaff;
  line-height: 1.5;
}
.aboutus__cta {
  background: rgba(35,43,54,0.6);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(0,230,208,0.1);
}
.aboutus__cta-title {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.aboutus__cta-desc {
  font-size: 1.1rem;
  color: #c7eaff;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.aboutus__cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00e6d0 0%, #0072ff 100%);
  color: #fff;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 24px rgba(0,230,208,0.2);
  transition: all 0.3s cubic-bezier(.23,1.01,.32,1);
}
.aboutus__cta-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 32px rgba(0,230,208,0.3);
}
.service {
  padding: 4rem 0 2rem 0;
  background: linear-gradient(135deg, #202a33 0%, #2c3e50 100%);
}
.service__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.service__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00e6d0;
  margin-bottom: 1.5rem;
  text-align: center;
}
.service__desc {
  font-size: 1.3rem;
  color: #c7eaff;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.6;
}
.service__hero {
  background: rgba(35,43,54,0.6);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 4rem;
  border: 1px solid rgba(0,230,208,0.1);
}
.service__hero-title {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.service__hero-text {
  font-size: 1.1rem;
  color: #c7eaff;
  line-height: 1.6;
}
.service__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}
.service__item {
  background: rgba(35,43,54,0.8);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0,230,208,0.08);
  border: 1px solid rgba(0,230,208,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s cubic-bezier(.23,1.01,.32,1) both;
}
.service__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,230,208,0.15);
}
.service__item-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.service__item-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.service__item-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.service__item-desc {
  color: #c7eaff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.service__item-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.service__item-features li {
  color: #c7eaff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.service__item-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00e6d0;
  font-weight: bold;
}
.service__item-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,230,208,0.1);
}
.service__stat {
  text-align: center;
  flex: 1;
}
.service__stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #00e6d0;
  margin-bottom: 0.3rem;
}
.service__stat-label {
  font-size: 0.9rem;
  color: #c7eaff;
  font-weight: 500;
}
.service__pricing {
  margin-bottom: 4rem;
}
.service__pricing-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #00e6d0;
  margin-bottom: 1rem;
  text-align: center;
}
.service__pricing-desc {
  font-size: 1.1rem;
  color: #c7eaff;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.6;
}
.service__pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.service__pricing-plan {
  background: rgba(35,43,54,0.8);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(0,230,208,0.1);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service__pricing-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,230,208,0.15);
}
.service__pricing-plan--featured {
  border: 2px solid #00e6d0;
  transform: scale(1.05);
}
.service__pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00e6d0 0%, #0072ff 100%);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}
.service__pricing-plan-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}
.service__pricing-plan-price {
  margin-bottom: 2rem;
}
.service__pricing-currency {
  font-size: 1.5rem;
  color: #00e6d0;
  vertical-align: top;
}
.service__pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #00e6d0;
}
.service__pricing-period {
  font-size: 1rem;
  color: #c7eaff;
}
.service__pricing-text {
  font-size: 2rem;
  font-weight: 600;
  color: #00e6d0;
}
.service__pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service__pricing-features li {
  color: #c7eaff;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}
.service__pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00e6d0;
  font-weight: bold;
}
.service__cta {
  background: rgba(35,43,54,0.6);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(0,230,208,0.1);
}
.service__cta-title {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.service__cta-desc {
  font-size: 1.1rem;
  color: #c7eaff;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.service__cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.service__cta-btn {
  display: inline-block;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(.23,1.01,.32,1);
}
.service__cta-btn--primary {
  background: linear-gradient(90deg, #00e6d0 0%, #0072ff 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,230,208,0.2);
}
.service__cta-btn--primary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 32px rgba(0,230,208,0.3);
}
.service__cta-btn--secondary {
  background: transparent;
  color: #00e6d0;
  border: 2px solid #00e6d0;
}
.service__cta-btn--secondary:hover {
  background: #00e6d0;
  color: #fff;
  transform: translateY(-2px);
}
.service__package-note {
  font-size: 1rem;
  color: #c7eaff;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s cubic-bezier(.23,1.01,.32,1) both;
}
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 100%);
  min-height: 100vh;
}
.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact__title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out;
}
.contact__desc {
  font-size: 1.2rem;
  color: #c7eaff;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.contact__form-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInLeft 0.8s ease-out 0.4s both;
}
.contact__form-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2rem;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact__form-group {
  display: flex;
  flex-direction: column;
}
.contact__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #c7eaff;
  margin-bottom: 0.5rem;
}
.contact__input,
.contact__select,
.contact__textarea {
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.contact__input::placeholder,
.contact__textarea::placeholder {
  color: rgba(199, 234, 255, 0.6);
}
.contact__select {
  cursor: pointer;
}
.contact__textarea {
  resize: vertical;
  min-height: 120px;
}
.contact__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #c7eaff;
  line-height: 1.5;
}
.contact__checkbox {
  margin-top: 2px;
  accent-color: #3b82f6;
}
.contact__submit-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact__submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}
.contact__submit-btn:active {
  transform: translateY(0);
}
.contact__info-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInRight 0.8s ease-out 0.4s both;
}
.contact__info-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2rem;
}
.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.contact__info-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}
.contact__info-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  flex-shrink: 0;
}
.contact__info-content {
  flex: 1;
}
.contact__info-label {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}
.contact__info-value {
  font-size: 0.9rem;
  color: #c7eaff;
  line-height: 1.5;
}
.contact__response-time {
  padding: 1.5rem;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.contact__response-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 0.5rem;
}
.contact__response-text {
  font-size: 0.9rem;
  color: #c7eaff;
  line-height: 1.5;
}
.contact__faq {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
.contact__faq-title {
  font-size: 2rem;
  font-weight: 600;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}
.contact__faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}
.contact__faq-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.contact__faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.contact__faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}
.contact__faq-answer {
  font-size: 0.95rem;
  color: #c7eaff;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .contact__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact__form-row {
    grid-template-columns: 1fr;
  }
  
  .contact__title {
    font-size: 2.5rem;
  }
  
  .contact__form-section,
  .contact__info-section,
  .contact__faq {
    padding: 1.5rem;
  }
  
  .contact__faq-list {
    grid-template-columns: 1fr;
  }
}
.policy {
  padding: 6rem 0;
  background: #0f172a;
  color: #cbd5e1;
}
.policy__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.policy__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  text-align: center;
  animation: fadeInUp 1s cubic-bezier(.23,1.01,.32,1) both;
}
.policy__subtitle {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 3rem;
  text-align: center;
  animation: fadeInUp 1s 0.2s cubic-bezier(.23,1.01,.32,1) both;
}
.policy h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #c4b5fd;
  margin-top: 3rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  padding-bottom: 0.5rem;
}
.policy p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.policy ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.policy li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.7;
}
.policy__link {
  color: #a78bfa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}
.policy__link:hover {
  color: #c4b5fd;
  border-bottom-color: #c4b5fd;
}
.footer {
  background: #0f172a;
  padding: 3rem 0 2rem 0;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}
.footer__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__nav {
  margin-bottom: 1rem;
}
.footer__menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__menu-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer__menu-link:focus, .footer__menu-link:hover {
  color: #a78bfa;
}
.footer__copyright {
  color: #64748b;
  font-size: 0.95rem;
  text-align: center;
}
@media (max-width: 900px) {
  .aboutus__values, .service__list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .header__container, .aboutus__container, .service__container, .footer__container {
    padding: 1rem;
  }
  .hero {
    flex-direction: column;
    min-height: 60vh;
  }
  .hero__content {
    margin-left: 0;
    text-align: center;
    max-width: 100vw;
  }
  .hero__visuals {
    justify-content: center;
    margin-top: 2rem;
  }
}
@media (max-width: 600px) {
  .hero__visuals {
    min-width: 220px;
    min-height: 220px;
  }
  .hero__svg-parallax svg {
    width: 180px;
    height: 180px;
  }
  .aboutus__title, .service__title, .contact__title {
    font-size: 1.3rem;
  }
  .header__menu {
    gap: 1rem;
  }
}

/* About section styles */
.about {
  padding: 6rem 0;
  background-color: #0f172a;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  position: relative;
}
.about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.about__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 3rem;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s 0.2s cubic-bezier(.23,1.01,.32,1) forwards;
}
.about__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.about__feature {
  background: #1e293b;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.05);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s cubic-bezier(.23,1.01,.32,1) forwards;
}
.about__feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
}
.about__icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
  background-image: radial-gradient(circle, var(--secondary-color), var(--primary-color));
}
.about__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 1rem;
}
.about__feature-desc {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* How it works section */
.how {
  padding: 6rem 0;
  background: #0f172a;
  position: relative;
}
.how__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}
.how__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 4rem;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s 0.2s cubic-bezier(.23,1.01,.32,1) forwards;
}
.how__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.how__step {
  display: flex;
  align-items: center;
  background: #1e293b;
  border-radius: 16px;
  padding: 2rem;
  border-left: 4px solid #8b5cf6;
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.08);
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInLeft 1s cubic-bezier(.23,1.01,.32,1) forwards;
  transition: transform 0.3s, box-shadow 0.3s;
}
.how__step:hover {
  transform: translateX(-30px);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
}
.how__step-number {
  color: var(--primary-color);
  font-size: 36px;
  font-weight: 700;
  margin-right: 2rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}
.how__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--header-text-color);
  margin-bottom: 0.5rem;
}
.how__step-desc {
  font-size: 1.1rem;
  color: #cbd5e1;
  font-weight: 400;
  line-height: 1.6;
}
.how__step-content {
  border-left: 3px solid var(--border-color);
  padding-left: 30px;
}

/* CTA section */
.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%), url('...') no-repeat center center / cover;
  text-align: center;
  position: relative;
}
.cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}
.cta__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.cta__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s 0.2s cubic-bezier(.23,1.01,.32,1) forwards;
}
.cta__subtitle {
  font-size: 1.3rem;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s 0.4s cubic-bezier(.23,1.01,.32,1) forwards;
}
.cta__btn {
  display: inline-block;
  background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 100%);
  color: #f0fdf4;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(129, 140, 248, 0.3);
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s 0.6s cubic-bezier(.23,1.01,.32,1) forwards;
}
.cta__btn:hover {
  background-color: var(--hover-color);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

/* Stats section */
.stats {
  padding: 5rem 0;
  background: linear-gradient(180deg, #1e293b, #0f172a);
}
.stats__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.stats__item {
  text-align: center;
  padding: 2rem 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(.23,1.01,.32,1) forwards;
}
.stats__item:nth-child(1) { animation-delay: 0.2s; }
.stats__item:nth-child(2) { animation-delay: 0.4s; }
.stats__item:nth-child(3) { animation-delay: 0.6s; }
.stats__item:nth-child(4) { animation-delay: 0.8s; }
.stats__number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(167, 139, 250, 0.2);
}
.stats__label {
  font-size: 1.1rem;
  color: #cbd5e1;
  font-weight: 500;
}

/* Testimonials section */
.testimonials {
  padding: 6rem 0;
  background: #0f172a;
}
.testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.testimonials__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 3rem;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s 0.2s cubic-bezier(.23,1.01,.32,1) forwards;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.testimonials__item {
  background: #1e293b;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s cubic-bezier(.23,1.01,.32,1) forwards;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonials__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}
.testimonials__quote {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  padding-left: 2rem;
}
.testimonials__quote::before {
  content: '“';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: #8b5cf6;
  opacity: 0.5;
}
.testimonials__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonials__avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0fdf4;
  font-weight: 700;
  font-size: 1.2rem;
}
.testimonials__info {
  flex: 1;
}
.testimonials__name {
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 0.2rem;
}
.testimonials__position {
  color: #a78bfa;
  font-size: 0.9rem;
}

/* Animation keyframes */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.about__title,
.stats__title,
.how__title,
.testimonials__title,
.cta__title,
.aboutus__title,
.aboutus__section-title,
.service__title,
.service__pricing-title,
.service__cta-title,
.contact__title,
.contact__form-title,
.contact__info-title,
.contact__faq-title,
.policy__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.about__icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 20px;
  background-image: radial-gradient(circle, var(--secondary-color), var(--primary-color));
}

@keyframes pulse {
  from {
    box-shadow: 0 0 0 10px rgba(129, 140, 248, 0.3), 0 0 0 20px rgba(129, 140, 248, 0.1);
  }
  to {
    box-shadow: 0 0 0 10px rgba(129, 140, 248, 0.3), 0 0 0 20px rgba(129, 140, 248, 0.1);
  }
}

.about__feature-title,
.how__step-title,
.testimonials__name,
.aboutus__value-title,
.aboutus__team-name,
.service__item-title,
.service__hero-title,
.service__pricing-plan-name,
.contact__info-label,
.contact__response-title,
.contact__faq-question {
  color: var(--header-text-color);
  margin-bottom: 10px;
  font-size: 20px;
}

.aboutus__value-icon,
.aboutus__team-avatar,
.service__item-icon,
.contact__info-icon {
  font-size: 32px;
  line-height: 1;
  color: var(--primary-color);
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.aboutus__cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(129, 140, 248, 0.3);
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.aboutus__cta-btn:hover {
  background-color: var(--hover-color);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

.service__item-header {
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service__item-features li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 10px;
}

.service__stat-number {
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.service__pricing-badge {
  padding: 5px 15px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 12px;
}

.service__pricing-plan--featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.service__cta-btn {
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.service__cta-btn--primary {
  background-color: var(--primary-color);
  color: #fff;
}

.service__cta-btn--primary:hover {
  background-color: var(--hover-color);
  transform: translateY(-2px);
}

.service__cta-btn--secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.service__cta-btn--secondary:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

.contact__input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.3);
}

.contact__checkbox:checked + .contact__checkbox-text::before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

.contact__submit-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(129, 140, 248, 0.3);
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.contact__submit-btn:hover {
  background-color: var(--hover-color);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

.contact__info-value a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}

.contact__info-value a:hover {
  color: var(--primary-color);
}

.contact__response-time {
  padding: 20px;
  background-color: rgba(129, 140, 248, 0.1);
  border-left: 4px solid var(--primary-color);
}

.policy__link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
}

.policy__link:hover {
  text-decoration: underline;
  color: var(--secondary-color);
} 