:root {
  --ocean-depth: #0a0f1c;
  --midnight-steel: #1a2332;
  --electric-cyan: #00d4ff;
  --neon-accent: #7c3aed;
  --pearl-white: #f8fafc;
  --silver-mist: #e2e8f0;
  --charcoal-text: #334155;
  --steel-border: #475569;
  --glass-overlay: rgba(255, 255, 255, 0.08);
  --shadow-depth: rgba(0, 0, 0, 0.25);
}

* {
  margin: 0;
    padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--midnight-steel) 100%);
  color: var(--pearl-white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Navigation Styles */
.primary-navigation {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 18px 0;
}

.nav-container {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 34px;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--electric-cyan);
  letter-spacing: -0.5px;
}

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--pearl-white);
  transition: all 0.3s ease;
}

.nav-menu-list {
  display: flex;
  list-style: none;
  gap: 42px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--silver-mist);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-accent));
  transition: width 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--electric-cyan);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section Styles */
.hero-showcase {
  margin-top: 95px;
  padding: 85px 34px 55px;
  min-height: calc(100vh - 95px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-content-wrapper {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 75px;
  align-items: center;
}

.hero-text-block {
  z-index: 2;
}

.main-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--pearl-white);
  margin-bottom: 28px;
  letter-spacing: -1.5px;
}

.hero-description {
  font-size: 21px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin-bottom: 48px;
  font-weight: 400;
}

.hero-action-buttons {
  display: flex;
  gap: 21px;
  flex-wrap: wrap;
}

.primary-cta-button {
  background: linear-gradient(135deg, var(--electric-cyan), var(--neon-accent));
  color: var(--ocean-depth);
  padding: 18px 38px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
}

.primary-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 42px rgba(0, 212, 255, 0.4);
}

.secondary-cta-button {
  background: var(--glass-overlay);
  color: var(--pearl-white);
  padding: 18px 38px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.secondary-cta-button:hover {
  border-color: var(--electric-cyan);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

.hero-visual-element {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 21px;
  box-shadow: 0 25px 75px var(--shadow-depth);
  z-index: 1;
}

.floating-design-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-cyan), var(--neon-accent));
  animation: float 6s ease-in-out infinite;
}

.element-one {
  width: 85px;
  height: 85px;
  top: -25px;
  right: -35px;
  animation-delay: 0s;
}

.element-two {
  width: 55px;
  height: 55px;
  bottom: 15px;
  left: -25px;
  animation-delay: 2s;
}

.element-three {
  width: 35px;
  height: 35px;
  top: 40%;
  right: -45px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-stats-bar {
  display: flex;
  justify-content: center;
  gap: 85px;
  margin-top: 75px;
  padding: 34px;
  background: var(--glass-overlay);
  backdrop-filter: blur(15px);
  border-radius: 21px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--electric-cyan);
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: var(--silver-mist);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 890px) {
  .nav-menu-toggle {
    display: flex;
  }

  .nav-menu-list {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: var(--midnight-steel);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 34px;
    padding-top: 55px;
    transition: left 0.4s ease;
  }

  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 55px;
    text-align: center;
  }

  .main-headline {
    font-size: 48px;
    margin-bottom: 21px;
  }

  .hero-description {
    font-size: 19px;
    margin-bottom: 34px;
  }

  .hero-action-buttons {
    justify-content: center;
  }

  .hero-stats-bar {
    gap: 42px;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .stat-number {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .nav-container {
    padding: 0 21px;
  }

  .hero-showcase {
    padding: 55px 21px 34px;
  }

  .main-headline {
    font-size: 38px;
  }

  .hero-description {
    font-size: 17px;
  }

  .primary-cta-button,
  .secondary-cta-button {
    padding: 15px 28px;
    font-size: 16px;
  }

  .hero-action-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-stats-bar {
    gap: 28px;
    padding: 21px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 14px;
  }
}











/* Course Overview Section */
.course-overview-zone {
  padding: 95px 34px;
  background: linear-gradient(145deg, var(--midnight-steel) 0%, var(--ocean-depth) 100%);
  position: relative;
}

.course-content-container {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 85px;
  align-items: center;
}

.course-info-block {
  z-index: 2;
}

.section-main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--pearl-white);
  margin-bottom: 28px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.course-intro-text {
  font-size: 22px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin-bottom: 55px;
  font-weight: 400;
}

.course-details-grid {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.detail-card {
  background: var(--glass-overlay);
  backdrop-filter: blur(10px);
  padding: 34px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
}

.detail-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--electric-cyan);
  margin-bottom: 21px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 13px;
  color: var(--silver-mist);
  font-size: 17px;
  line-height: 1.5;
}

.feature-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--electric-cyan);
  font-size: 14px;
  top: 2px;
}

.duration-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.time-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--neon-accent);
  line-height: 1;
}

.time-description {
  font-size: 18px;
  color: var(--electric-cyan);
  font-weight: 600;
  margin-bottom: 15px;
}

.schedule-text {
  color: var(--silver-mist);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 21px;
}

.audience-tag {
  background: linear-gradient(135deg, var(--neon-accent), var(--electric-cyan));
  color: var(--ocean-depth);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.audience-description {
  color: var(--silver-mist);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Visual Showcase */
.course-visual-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.course-image {
  width: 100%;
  max-width: 485px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 28px 85px var(--shadow-depth);
  z-index: 1;
  transition: transform 0.4s ease;
}

.course-image:hover {
  transform: scale(1.02) rotate(1deg);
}

.visual-accent-shape {
  position: absolute;
  background: linear-gradient(45deg, var(--electric-cyan), var(--neon-accent));
  opacity: 0.8;
  animation: pulse 4s ease-in-out infinite;
}

.shape-alpha {
  width: 120px;
  height: 120px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: -35px;
  left: -45px;
  animation-delay: 0s;
}

.shape-beta {
  width: 85px;
  height: 85px;
  border-radius: 50% 20% 80% 40% / 60% 30% 70% 40%;
  bottom: -25px;
  right: -35px;
  animation-delay: 2s;
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1) rotate(0deg); 
    opacity: 0.6;
  }
  50% { 
    transform: scale(1.1) rotate(180deg); 
    opacity: 0.9;
  }
}

/* Responsive Design */
@media (max-width: 890px) {
  .course-content-container {
    grid-template-columns: 1fr;
    gap: 65px;
    text-align: center;
  }

  .section-main-title {
    font-size: 42px;
    margin-bottom: 21px;
  }

  .course-intro-text {
    font-size: 20px;
    margin-bottom: 42px;
  }

  .course-details-grid {
    gap: 34px;
  }

  .detail-card {
    padding: 28px;
  }

  .audience-tags {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .course-overview-zone {
    padding: 65px 21px;
  }

  .section-main-title {
    font-size: 34px;
  }

  .course-intro-text {
    font-size: 18px;
    margin-bottom: 34px;
  }

  .detail-card {
    padding: 21px;
  }

  .detail-heading {
    font-size: 21px;
    margin-bottom: 15px;
  }

  .feature-list li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .time-number {
    font-size: 32px;
  }

  .time-description {
    font-size: 16px;
  }

  .audience-tags {
    gap: 8px;
  }

  .audience-tag {
    padding: 6px 14px;
    font-size: 13px;
  }
}













/* Course Curriculum Section */
.curriculum-learning-zone {
  padding: 105px 34px;
  background: var(--ocean-depth);
  position: relative;
}

.curriculum-learning-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric-cyan), transparent);
}

.curriculum-main-container {
  max-width: 1420px;
  margin: 0 auto;
}

.curriculum-header-block {
  text-align: center;
  margin-bottom: 75px;
}

.curriculum-primary-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--pearl-white);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1.2px;
}

.curriculum-subtitle {
  font-size: 21px;
  line-height: 1.6;
  color: var(--silver-mist);
  max-width: 720px;
  margin: 0 auto;
}

.modules-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 34px;
  margin-bottom: 85px;
}

.learning-module-card {
  background: var(--glass-overlay);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 21px;
  padding: 42px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.learning-module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-accent));
  transition: left 0.6s ease;
}

.learning-module-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 65px rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.3);
}

.learning-module-card:hover::before {
  left: 0;
}

.module-header {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.module-number {
  background: linear-gradient(135deg, var(--neon-accent), var(--electric-cyan));
  color: var(--ocean-depth);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.module-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--pearl-white);
  flex: 1;
  min-width: 200px;
}

.module-duration {
  background: rgba(124, 58, 237, 0.2);
  color: var(--neon-accent);
  padding: 6px 15px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.lesson-inventory {
  list-style: none;
    padding: 0;
  margin: 0;
}

.lesson-inventory li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 15px;
  color: var(--silver-mist);
  font-size: 16px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.lesson-inventory li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--electric-cyan);
  font-size: 12px;
  transform: rotate(45deg);
}

.lesson-inventory li:hover {
  color: var(--pearl-white);
}

/* Bonus Section */
.curriculum-bonus-section {
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
}

.bonus-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--electric-cyan);
  margin-bottom: 38px;
}

.bonus-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 34px;
}

.bonus-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.bonus-item:hover {
  transform: translateY(-4px);
  background: rgba(0, 212, 255, 0.1);
}

.bonus-icon {
  font-size: 42px;
  line-height: 1;
}

.bonus-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--pearl-white);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 890px) {
  .curriculum-learning-zone {
    padding: 75px 21px;
  }

  .curriculum-primary-title {
    font-size: 42px;
    margin-bottom: 18px;
  }

  .curriculum-subtitle {
    font-size: 19px;
  }

  .curriculum-header-block {
    margin-bottom: 55px;
  }

  .modules-showcase-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 65px;
  }

  .learning-module-card {
    padding: 32px;
  }

  .module-header {
    gap: 15px;
  }

  .module-title {
    font-size: 21px;
    min-width: auto;
  }

  .bonus-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
  }

  .curriculum-bonus-section {
    padding: 34px;
  }

  .bonus-title {
    font-size: 28px;
    margin-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .modules-showcase-grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .learning-module-card {
    padding: 24px;
  }

  .module-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }

  .module-title {
    font-size: 19px;
  }

  .lesson-inventory li {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .bonus-features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bonus-item {
    padding: 18px;
  }

  .bonus-icon {
    font-size: 34px;
  }

  .bonus-text {
    font-size: 15px;
  }

  .curriculum-bonus-section {
    padding: 28px;
  }

  .bonus-title {
    font-size: 24px;
  }
}













/* Course Advantages Section */
.advantages-showcase-area {
  padding: 95px 34px;
  background: linear-gradient(135deg, var(--midnight-steel) 0%, var(--ocean-depth) 50%, var(--midnight-steel) 100%);
  position: relative;
  overflow: hidden;
}

.advantages-showcase-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.advantages-content-wrapper {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 75px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.advantages-text-zone {
  padding-right: 21px;
}

.advantages-main-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 54px;
  font-weight: 700;
  color: var(--pearl-white);
  margin-bottom: 32px;
  line-height: 1.1;
  letter-spacing: -1.3px;
}

.advantages-intro-paragraph {
  font-size: 22px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin-bottom: 55px;
  font-weight: 400;
}

.benefits-collection {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.benefit-point-item {
  background: var(--glass-overlay);
  backdrop-filter: blur(8px);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.benefit-point-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(45deg, var(--electric-cyan), var(--neon-accent));
  border-radius: 2px;
  transition: height 0.3s ease;
}

.benefit-point-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
}

.benefit-point-item:hover::before {
  height: 60%;
}

.benefit-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--electric-cyan);
  margin-bottom: 13px;
  line-height: 1.3;
}

.benefit-description {
  font-size: 17px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin: 0;
}

/* Visual Element */
.advantages-visual-element {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 42px;
}

.advantages-photo {
  width: 100%;
  max-width: 485px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 32px 85px var(--shadow-depth);
  z-index: 1;
  transition: all 0.4s ease;
}

.advantages-photo:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 38px 95px rgba(0, 0, 0, 0.35);
}

.floating-benefit-shape {
  position: absolute;
  background: linear-gradient(135deg, var(--neon-accent), var(--electric-cyan));
  opacity: 0.7;
  animation: drift 8s ease-in-out infinite;
}

.shape-one {
  width: 95px;
  height: 95px;
  border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  top: -45px;
  right: -55px;
  animation-delay: 0s;
}

.shape-two {
  width: 65px;
  height: 65px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: -35px;
  left: -45px;
  animation-delay: 3s;
}

.shape-three {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  top: 35%;
  left: -25px;
  animation-delay: 6s;
}

@keyframes drift {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
    opacity: 0.6;
  }
  33% { 
    transform: translateY(-15px) rotate(120deg); 
    opacity: 0.8;
  }
  66% { 
    transform: translateY(10px) rotate(240deg); 
    opacity: 0.9;
  }
}

/* Responsive Design */
@media (max-width: 890px) {
  .advantages-content-wrapper {
    grid-template-columns: 1fr;
    gap: 55px;
    text-align: left;
  }

  .advantages-text-zone {
    padding-right: 0;
  }

  .advantages-main-heading {
    font-size: 44px;
    margin-bottom: 24px;
  }

  .advantages-intro-paragraph {
    font-size: 20px;
    margin-bottom: 42px;
  }

  .benefits-collection {
    gap: 24px;
  }

  .benefit-point-item {
    padding: 28px;
  }

  .benefit-title {
    font-size: 19px;
  }

  .benefit-description {
    font-size: 16px;
  }

  .advantages-visual-element {
    margin-top: 0;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .advantages-showcase-area {
    padding: 65px 21px;
  }

  .advantages-main-heading {
    font-size: 36px;
  }

  .advantages-intro-paragraph {
    font-size: 18px;
    margin-bottom: 34px;
  }

  .benefits-collection {
    gap: 18px;
  }

  .benefit-point-item {
    padding: 21px;
  }

  .benefit-point-item:hover {
    transform: translateX(4px);
  }

  .benefit-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .benefit-description {
    font-size: 15px;
  }

  .advantages-photo {
    border-radius: 21px;
  }

  .shape-one {
    width: 75px;
    height: 75px;
    top: -35px;
    right: -35px;
  }

  .shape-two {
    width: 55px;
    height: 55px;
    bottom: -25px;
    left: -35px;
  }

  .shape-three {
    width: 35px;
    height: 35px;
    left: -15px;
  }
}


















/* Pricing Plans Section */
.pricing-plans-zone {
  padding: 105px 34px;
  background: var(--ocean-depth);
  position: relative;
}

.pricing-plans-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-content-container {
  max-width: 1420px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pricing-header-section {
  text-align: center;
  margin-bottom: 75px;
}

.pricing-main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 58px;
  font-weight: 700;
  color: var(--pearl-white);
  margin-bottom: 28px;
  line-height: 1.1;
  letter-spacing: -1.4px;
}

.pricing-subtitle {
  font-size: 21px;
  line-height: 1.6;
  color: var(--silver-mist);
  max-width: 680px;
  margin: 0 auto;
}

.tariff-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 34px;
  margin-bottom: 75px;
}

.plan-pricing-card {
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 42px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.plan-pricing-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, var(--electric-cyan), transparent);
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.plan-pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 85px rgba(0, 212, 255, 0.15);
}

.plan-pricing-card:hover::before {
  opacity: 1;
}

.featured-plan {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 15px 45px rgba(0, 212, 255, 0.1);
  transform: scale(1.05);
}

.premium-tier {
  border-color: rgba(124, 58, 237, 0.3);  
  box-shadow: 0 15px 45px rgba(124, 58, 237, 0.1);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--electric-cyan), var(--neon-accent));
  color: var(--ocean-depth);
  padding: 8px 24px;
  border-radius: 0 0 12px 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.vip-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--neon-accent), #9333ea);
  color: var(--pearl-white);
  padding: 8px 24px;
  border-radius: 0 0 12px 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.plan-header-info {
  text-align: center;
  margin-bottom: 38px;
  padding-top: 21px;
}

.plan-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--pearl-white);
  margin-bottom: 18px;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.currency-symbol {
  font-size: 18px;
  color: var(--silver-mist);
  font-weight: 600;
}

.price-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--electric-cyan);
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: var(--silver-mist);
  font-weight: 500;
}

.plan-description {
  font-size: 16px;
  line-height: 1.5;
  color: var(--silver-mist);
  margin: 0;
}

.features-list-section {
  margin-bottom: 42px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 13px;
  color: var(--silver-mist);
  font-size: 16px;
  line-height: 1.5;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--electric-cyan);
  font-weight: 700;
  font-size: 16px;
}

.plan-action-area {
  text-align: center;
}

.plan-select-button {
  width: 100%;
  padding: 18px 32px;
  border: none;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 15px;
}

.basic-plan {
  background: var(--glass-overlay);
  color: var(--pearl-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.basic-plan:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--electric-cyan);
  transform: translateY(-2px);
}

.premium-plan {
  background: linear-gradient(135deg, var(--electric-cyan), var(--neon-accent));
  color: var(--ocean-depth);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
}

.premium-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 42px rgba(0, 212, 255, 0.4);
}

.mentorship-plan {
  background: linear-gradient(135deg, var(--neon-accent), var(--electric-cyan));
  color: var(--pearl-white);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
}

.mentorship-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 42px rgba(124, 58, 237, 0.4);
}

.vip-plan {
  background: linear-gradient(135deg, var(--neon-accent), #9333ea);
  color: var(--pearl-white);
  box-shadow: 0 8px 32px rgba(147, 51, 234, 0.3);
}

.vip-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 42px rgba(147, 51, 234, 0.4);
}

.contact-link {
  text-decoration: none;
  color: var(--electric-cyan);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--pearl-white);
  text-decoration: underline;
}

/* Guarantee Section */
.pricing-guarantee-section {
  background: var(--glass-overlay);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 21px;
  padding: 42px;
  text-align: center;
}

.guarantee-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--electric-cyan);
  margin-bottom: 15px;
}

.guarantee-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 890px) {
  .pricing-plans-zone {
    padding: 75px 21px;
  }

  .pricing-main-title {
    font-size: 44px;
    margin-bottom: 21px;
  }

  .pricing-subtitle {
    font-size: 19px;
  }

  .pricing-header-section {
    margin-bottom: 55px;
  }

  .tariff-plans-grid {
    gap: 28px;
    margin-bottom: 55px;
  }

  .plan-pricing-card {
    padding: 34px;
  }

  .featured-plan {
    transform: none;
  }

  .plan-name {
    font-size: 24px;
  }

  .price-amount {
    font-size: 42px;
  }

  .pricing-guarantee-section {
    padding: 34px;
  }

  .guarantee-title {
    font-size: 24px;
  }

  .guarantee-text {
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .tariff-plans-grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .plan-pricing-card {
    padding: 28px;
  }

  .plan-header-info {
    margin-bottom: 32px;
  }

  .plan-name {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .price-amount {
    font-size: 36px;
  }

  .plan-features li {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .plan-select-button {
    padding: 16px 28px;
    font-size: 16px;
  }

  .pricing-guarantee-section {
    padding: 28px;
  }

  .guarantee-title {
    font-size: 22px;
  }

  .guarantee-text {
    font-size: 16px;
  }
}















/* Footer Section */
.site-footer-zone {
  background: linear-gradient(135deg, var(--midnight-steel) 0%, var(--ocean-depth) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.site-footer-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric-cyan), var(--neon-accent), transparent);
}

.footer-content-wrapper {
  max-width: 1420px;
  margin: 0 auto;
  padding: 65px 34px 42px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 75px;
  align-items: start;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand-identity {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--electric-cyan);
  letter-spacing: -0.8px;
}

.footer-brand-tagline {
  font-size: 18px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin: 0;
  max-width: 420px;
}

.footer-links-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pearl-white);
  margin: 0;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  text-decoration: none;
  color: var(--silver-mist);
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--electric-cyan);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--electric-cyan);
  transform: translateX(5px);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pearl-white);
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-address,
.contact-phone {
  font-size: 16px;
  line-height: 1.5;
  color: var(--silver-mist);
  margin: 0;
}

.contact-phone {
  font-weight: 500;
  color: var(--electric-cyan);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  background: var(--glass-overlay);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
  max-width: 1420px;
  margin: 0 auto;
  padding: 28px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  font-size: 16px;
  color: var(--silver-mist);
  margin: 0;
  font-weight: 400;
}

.footer-accent-line {
  width: 85px;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-accent));
  border-radius: 1px;
}

/* Responsive Design */
@media (max-width: 890px) {
  .footer-content-wrapper {
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 55px 21px 34px;
  }

  .footer-links-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand-identity {
    justify-content: center;
    text-align: center;
  }

  .footer-brand-tagline {
    text-align: center;
    margin: 0 auto;
  }

  .footer-links-group,
  .footer-contact-info {
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 18px;
    padding: 24px 21px;
  }

  .footer-accent-line {
    width: 120px;
  }
}

@media (max-width: 640px) {
  .footer-content-wrapper {
    padding: 42px 21px 28px;
    gap: 42px;
  }

  .footer-brand-name {
    font-size: 28px;
  }

  .footer-brand-tagline {
    font-size: 16px;
  }

  .footer-links-title,
  .footer-contact-title {
    font-size: 18px;
  }

  .footer-link,
  .contact-address,
  .contact-phone {
    font-size: 15px;
  }

  .copyright-text {
    font-size: 15px;
    text-align: center;
  }

  .footer-bottom-content {
    padding: 21px;
  }

  .footer-accent-line {
    width: 100px;
  }
}














:root {
  --ocean-depth: #0a0f1c;
  --midnight-steel: #1a2332;
  --electric-cyan: #00d4ff;
  --neon-accent: #7c3aed;
  --pearl-white: #f8fafc;
  --silver-mist: #e2e8f0;
  --charcoal-text: #334155;
  --steel-border: #475569;
  --glass-overlay: rgba(255, 255, 255, 0.08);
  --shadow-depth: rgba(0, 0, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--midnight-steel) 100%);
  color: var(--pearl-white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Navigation Styles (Same as main page) */
.primary-navigation {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 18px 0;
}

.nav-container {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 34px;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--electric-cyan);
  letter-spacing: -0.5px;
}

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--pearl-white);
  transition: all 0.3s ease;
}

.nav-menu-list {
  display: flex;
  list-style: none;
  gap: 42px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--silver-mist);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-accent));
  transition: width 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--electric-cyan);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* About Hero Section */
.about-hero-section {
  margin-top: 95px;
  padding: 75px 34px;
  background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--midnight-steel) 100%);
  position: relative;
  overflow: hidden;
}

.about-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 75px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--pearl-white);
  margin-bottom: 28px;
  letter-spacing: -1.2px;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--silver-mist);
  font-weight: 400;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.tool-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  perspective: 1000px;
}

.tool-icon {
  width: 85px;
  height: 85px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--pearl-white);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.figma-icon {
  background: linear-gradient(135deg, #F24E1E, #FF7262);
  animation-delay: 0s;
}

.adobe-icon {
  background: linear-gradient(135deg, #FF9A00, #FF6600);
  animation-delay: 1.5s;
}

.photoshop-icon {
  background: linear-gradient(135deg, #001E36, #31A8FF);
  animation-delay: 3s;
}

.canva-icon {
  background: linear-gradient(135deg, #00C4CC, #7B68EE);
  animation-delay: 4.5s;
}

.tool-icon:hover {
  transform: scale(1.1) rotateY(15deg);
  box-shadow: 0 15px 45px rgba(0, 212, 255, 0.3);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Technologies Showcase Section */
.technologies-showcase {
  padding: 95px 34px;
  background: linear-gradient(145deg, var(--midnight-steel) 0%, var(--ocean-depth) 100%);
  position: relative;
}

.tech-container {
  max-width: 1420px;
  margin: 0 auto;
}

.section-intro {
  text-align: center;
  margin-bottom: 75px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--pearl-white);
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.section-description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--silver-mist);
  max-width: 720px;
  margin: 0 auto;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  margin-bottom: 85px;
}

.tool-category {
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 42px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.tool-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  transition: left 0.6s ease;
}

.adobe-category::before {
  background: linear-gradient(90deg, #FF6600, #FF9A00);
}

.design-category::before {
  background: linear-gradient(90deg, #F24E1E, #A259FF);
}

.accessible-category::before {
  background: linear-gradient(90deg, #00C4CC, #7B68EE);
}

.tool-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 65px rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.2);
}

.tool-category:hover::before {
  left: 0;
}

.category-header {
  margin-bottom: 35px;
  text-align: center;
}

.category-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--electric-cyan);
  margin-bottom: 8px;
}

.category-subtitle {
  font-size: 16px;
  color: var(--silver-mist);
  font-weight: 500;
}

.tools-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.tool-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
}

.tool-logo {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--pearl-white);
  flex-shrink: 0;
}

.adobe-illustrator {
  background: linear-gradient(135deg, #FF9A00, #FF6600);
}

.adobe-photoshop {
  background: linear-gradient(135deg, #001E36, #31A8FF);
}

.adobe-indesign {
  background: linear-gradient(135deg, #FF3366, #FF6B9D);
}

.figma-logo {
  background: linear-gradient(135deg, #F24E1E, #FF7262);
}

.sketch-logo {
  background: linear-gradient(135deg, #FDB300, #FDAD00);
}

.canva-logo {
  background: linear-gradient(135deg, #00C4CC, #7B68EE);
}

.procreate-logo {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
}

.tool-info {
  flex: 1;
}

.tool-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--pearl-white);
  margin-bottom: 6px;
}

.tool-description {
  font-size: 15px;
  line-height: 1.4;
  color: var(--silver-mist);
  margin: 0;
}

/* Learning Approach Section */
.learning-approach {
  background: var(--glass-overlay);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 48px;
}

.approach-content {
  text-align: center;
}

.approach-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--electric-cyan);
  margin-bottom: 18px;
}

.approach-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin-bottom: 35px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.approach-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 32px;
  line-height: 1;
}

.feature-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--pearl-white);
  text-align: center;
}

/* Footer Section (Same as main page) */
.site-footer-zone {
  background: linear-gradient(135deg, var(--midnight-steel) 0%, var(--ocean-depth) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.site-footer-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric-cyan), var(--neon-accent), transparent);
}

.footer-content-wrapper {
  max-width: 1420px;
  margin: 0 auto;
  padding: 65px 34px 42px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 75px;
  align-items: start;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand-identity {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--electric-cyan);
  letter-spacing: -0.8px;
}

.footer-brand-tagline {
  font-size: 18px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin: 0;
  max-width: 420px;
}

.footer-links-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pearl-white);
  margin: 0;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  text-decoration: none;
  color: var(--silver-mist);
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--electric-cyan);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--electric-cyan);
  transform: translateX(5px);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pearl-white);
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-address,
.contact-phone {
  font-size: 16px;
  line-height: 1.5;
  color: var(--silver-mist);
  margin: 0;
}

.contact-phone {
  font-weight: 500;
  color: var(--electric-cyan);
}

.footer-bottom-bar {
  background: var(--glass-overlay);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
  max-width: 1420px;
  margin: 0 auto;
  padding: 28px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  font-size: 16px;
  color: var(--silver-mist);
  margin: 0;
  font-weight: 400;
}

.footer-accent-line {
  width: 85px;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-accent));
  border-radius: 1px;
}













:root {
  --ocean-depth: #0a0f1c;
  --midnight-steel: #1a2332;
  --electric-cyan: #00d4ff;
  --neon-accent: #7c3aed;
  --pearl-white: #f8fafc;
  --silver-mist: #e2e8f0;
  --charcoal-text: #334155;
  --steel-border: #475569;
  --glass-overlay: rgba(255, 255, 255, 0.08);
  --shadow-depth: rgba(0, 0, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--midnight-steel) 100%);
  color: var(--pearl-white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Navigation Styles (Same as main page) */
.primary-navigation {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 18px 0;
}

.nav-container {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 34px;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--electric-cyan);
  letter-spacing: -0.5px;
}

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--pearl-white);
  transition: all 0.3s ease;
}

.nav-menu-list {
  display: flex;
  list-style: none;
  gap: 42px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--silver-mist);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-accent));
  transition: width 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--electric-cyan);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Contact Information Section */
.contact-info-section {
  margin-top: 95px;
  padding: 75px 34px;
  background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--midnight-steel) 100%);
  position: relative;
}

.contact-info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact-container {
  max-width: 1420px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-header {
  text-align: center;
  margin-bottom: 65px;
}

.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--pearl-white);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1.2px;
}

.contact-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--silver-mist);
  max-width: 680px;
  margin: 0 auto;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 34px;
}

.contact-card {
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 21px;
  padding: 42px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-accent));
  transition: left 0.6s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 65px rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
}

.contact-card:hover::before {
  left: 0;
}

.contact-icon {
  flex-shrink: 0;
}

.icon-wrapper {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.3s ease;
}

.location-icon {
  background: linear-gradient(135deg, var(--electric-cyan), var(--neon-accent));
}

.phone-icon {
  background: linear-gradient(135deg, #10B981, #059669);
}

.email-icon {
  background: linear-gradient(135deg, #F59E0B, #D97706);
}

.contact-info {
  flex: 1;
}

.contact-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--electric-cyan);
  margin-bottom: 8px;
}

.contact-value {
  font-size: 16px;
  line-height: 1.5;
  color: var(--silver-mist);
  margin: 0;
}

/* Contact Form Section */
.contact-form-section {
  padding: 95px 34px;
  background: linear-gradient(145deg, var(--midnight-steel) 0%, var(--ocean-depth) 100%);
}

.form-container {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 75px;
  align-items: start;
}

.form-content {
  background: var(--glass-overlay);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px;
}

.form-header {
  margin-bottom: 42px;
}

.form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--pearl-white);
  margin-bottom: 15px;
}

.form-description {
  font-size: 17px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row {
  display: flex;
  gap: 21px;
}

.input-group {
  flex: 1;
  position: relative;
}

.form-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--electric-cyan);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--pearl-white);
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--silver-mist);
  opacity: 0.7;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--electric-cyan);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  margin-top: 15px;
}

.submit-button {
  background: linear-gradient(135deg, var(--electric-cyan), var(--neon-accent));
  color: var(--ocean-depth);
  padding: 18px 42px;
  border: none;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.submit-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.6s ease;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 42px rgba(0, 212, 255, 0.4);
}

.submit-button:hover::before {
  left: 100%;
}

.submit-button.loading {
  pointer-events: none;
  opacity: 0.8;
}

.button-text {
  position: relative;
  z-index: 2;
}

.button-arrow {
  position: relative;
  z-index: 2;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.submit-button:hover .button-arrow {
  transform: translateX(4px);
}

.form-note {
  font-size: 14px;
  color: var(--silver-mist);
  margin-top: 15px;
  margin: 15px 0 0 0;
}

/* Map Section */
.map-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.map-header {
  text-align: center;
}

.map-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--electric-cyan);
  margin-bottom: 8px;
}

.map-description {
  font-size: 16px;
  color: var(--silver-mist);
  margin: 0;
}

.map-wrapper {
  position: relative;
  border-radius: 21px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-depth);
}

.location-map {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 21px;
  filter: grayscale(20%) contrast(1.1);
}

.map-overlay {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 18px;
  max-width: 250px;
}

.map-marker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.marker-icon {
  font-size: 24px;
  line-height: 1;
}

.marker-info {
  flex: 1;
}

.marker-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--pearl-white);
  margin-bottom: 4px;
}

.marker-address {
  font-size: 14px;
  color: var(--silver-mist);
  margin: 0;
  line-height: 1.3;
}

/* Footer Section (Same as main page) */
.site-footer-zone {
  background: linear-gradient(135deg, var(--midnight-steel) 0%, var(--ocean-depth) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.site-footer-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric-cyan), var(--neon-accent), transparent);
}

.footer-content-wrapper {
  max-width: 1420px;
  margin: 0 auto;
  padding: 65px 34px 42px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 75px;
  align-items: start;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand-identity {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--electric-cyan);
  letter-spacing: -0.8px;
}

.footer-brand-tagline {
  font-size: 18px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin: 0;
  max-width: 420px;
}

.footer-links-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pearl-white);
  margin: 0;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  text-decoration: none;
  color: var(--silver-mist);
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--electric-cyan);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--electric-cyan);
  transform: translateX(5px);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pearl-white);
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-address,
.contact-phone {
  font-size: 16px;
  line-height: 1.5;
  color: var(--silver-mist);
  margin: 0;
}

.contact-phone {
  font-weight: 500;
  color: var(--electric-cyan);
}

.footer-bottom-bar {
  background: var(--glass-overlay);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
  max-width: 1420px;
  margin: 0 auto;
  padding: 28px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  font-size: 16px;
  color: var(--silver-mist);
  margin: 0;
  font-weight: 400;
}

.footer-accent-line {
  width: 85px;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-accent));
  border-radius: 1px;
}

/* Responsive Design */
@media (max-width: 890px) {
  .nav-menu-toggle {
    display: flex;
  }

  .nav-menu-list {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: var(--midnight-steel);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 34px;
    padding-top: 55px;
    transition: left 0.4s ease;
  }

  .contact-title {
    font-size: 42px;
    margin-bottom: 18px;
  }

  .contact-subtitle {
    font-size: 18px;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-card {
    padding: 34px;
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .form-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .form-content {
    padding: 38px;
  }

  .form-title {
    font-size: 28px;
  }

  .form-description {
    font-size: 16px;
  }

  .location-map {
    height: 320px;
  }

  .footer-content-wrapper {
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 55px 21px 34px;
  }

  .footer-links-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand-identity {
    justify-content: center;
    text-align: center;
  }

  .footer-brand-tagline {
    text-align: center;
    margin: 0 auto;
  }

  .footer-links-group,
  .footer-contact-info {
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 18px;
    padding: 24px 21px;
  }

  .footer-accent-line {
    width: 120px;
  }
}

@media (max-width: 640px) {
  .contact-info-section {
    padding: 55px 21px;
  }

  .contact-container {
    padding: 0;
  }

  .contact-title {
    font-size: 34px;
  }

  .contact-subtitle {
    font-size: 17px;
  }

  .contact-header {
    margin-bottom: 45px;
  }

  .contact-details-grid {
    gap: 21px;
  }

  .contact-card {
    padding: 28px;
  }

  .icon-wrapper {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .contact-label {
    font-size: 18px;
  }

  .contact-value {
    font-size: 15px;
  }

  .contact-form-section {
    padding: 65px 21px;
  }

  .form-content {
    padding: 28px;
  }

  .form-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .form-description {
    font-size: 15px;
  }

  .form-header {
    margin-bottom: 32px;
  }

  .contact-form {
    gap: 21px;
  }

  .form-row {
    flex-direction: column;
    gap: 21px;
  }

  .form-input,
  .form-textarea {
    padding: 14px 18px;
    font-size: 15px;
  }

  .form-textarea {
    min-height: 120px;
  }

  .submit-button {
    padding: 16px 32px;
    font-size: 16px;
    gap: 10px;
  }

  .form-note {
    font-size: 13px;
  }

  .map-title {
    font-size: 24px;
  }

  .map-description {
    font-size: 15px;
  }

  .location-map {
    height: 280px;
  }

  .map-overlay {
    top: 18px;
    left: 18px;
    padding: 15px;
    max-width: 200px;
  }

  .marker-icon {
    font-size: 20px;
  }

  .marker-title {
    font-size: 15px;
  }

  .marker-address {
    font-size: 13px;
  }

  .footer-content-wrapper {
    padding: 42px 21px 28px;
    gap: 42px;
  }

  .footer-brand-name {
    font-size: 28px;
  }

  .footer-brand-tagline {
    font-size: 16px;
  }

  .footer-links-title,
  .footer-contact-title {
    font-size: 18px;
  }

  .footer-link,
  .contact-address,
  .contact-phone {
    font-size: 15px;
  }

  .copyright-text {
    font-size: 15px;
    text-align: center;
  }

  .footer-bottom-content {
    padding: 21px;
  }

  .footer-accent-line {
    width: 100px;
  }
}

/* Form Input Focus Effects */
.input-group.focused .form-label {
  color: var(--electric-cyan);
  transform: translateY(-2px);
}

.input-group.focused .form-input,
.input-group.focused .form-textarea {
  border-color: var(--electric-cyan);
  background: rgba(255, 255, 255, 0.08);
}

/* Loading Animation for Submit Button */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.submit-button.loading .button-arrow {
  animation: spin 1s linear infinite;
}

/* Enhanced Hover Effects */
.contact-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.form-input:hover,
.form-textarea:hover {
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

/* Accessibility Improvements */
.form-input:focus-visible,
.form-textarea:focus-visible,
.submit-button:focus-visible {
  outline: 2px solid var(--electric-cyan);
  outline-offset: 2px;
}

.nav-link:focus-visible,
.footer-link:focus-visible {
  outline: 2px solid var(--electric-cyan);
  outline-offset: 4px;
  border-radius: 4px;
}













:root {
  --ocean-depth: #0a0f1c;
  --midnight-steel: #1a2332;
  --electric-cyan: #00d4ff;
  --neon-accent: #7c3aed;
  --pearl-white: #f8fafc;
  --silver-mist: #e2e8f0;
  --charcoal-text: #334155;
  --steel-border: #475569;
  --glass-overlay: rgba(255, 255, 255, 0.08);
  --shadow-depth: rgba(0, 0, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--midnight-steel) 100%);
  color: var(--pearl-white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Navigation Styles (Same as main page) */
.primary-navigation {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 18px 0;
}

.nav-container {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 34px;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--electric-cyan);
  letter-spacing: -0.5px;
}

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--pearl-white);
  transition: all 0.3s ease;
}

.nav-menu-list {
  display: flex;
  list-style: none;
  gap: 42px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--silver-mist);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-accent));
  transition: width 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--electric-cyan);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Cookies Hero Section */
.cookies-hero-section {
  margin-top: 95px;
  padding: 75px 34px;
  background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--midnight-steel) 100%);
  position: relative;
  overflow: hidden;
}

.cookies-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1420px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cookie-visual {
  position: relative;
  margin-bottom: 24px;
}

.cookie-icon {
  font-size: 85px;
  line-height: 1;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  animation: bounce 3s ease-in-out infinite;
}

.floating-crumb {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #D2691E, #CD853F);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.crumb-1 {
  top: 15px;
  left: -25px;
  animation-delay: 0s;
}

.crumb-2 {
  top: 45px;
  right: -30px;
  animation-delay: 1.5s;
}

.crumb-3 {
  bottom: 20px;
  left: -15px;
  animation-delay: 3s;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  50% { 
    transform: translateY(-15px) rotate(180deg);
    opacity: 1;
  }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--pearl-white);
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--silver-mist);
  max-width: 680px;
  font-weight: 400;
}

.last-updated {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-overlay);
  backdrop-filter: blur(8px);
  padding: 12px 24px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.update-label {
  font-size: 14px;
  color: var(--silver-mist);
  font-weight: 500;
}

.update-date {
  font-size: 14px;
  color: var(--electric-cyan);
  font-weight: 600;
}

/* Cookie Information Section */
.cookie-info-section {
  padding: 95px 34px;
  background: linear-gradient(145deg, var(--midnight-steel) 0%, var(--ocean-depth) 100%);
}

.cookie-container {
  max-width: 1420px;
  margin: 0 auto;
}

.cookie-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 34px;
  margin-bottom: 85px;
}

.cookie-type-card {
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 21px;
  padding: 38px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cookie-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  transition: left 0.6s ease;
}

.essential-card::before {
  background: linear-gradient(90deg, #10B981, #059669);
}

.performance-card::before {
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-accent));
}

.functional-card::before {
  background: linear-gradient(90deg, #F59E0B, #D97706);
}

.cookie-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 65px rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.2);
}

.cookie-type-card:hover::before {
  left: 0;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.cookie-type-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.essential-icon {
  background: linear-gradient(135deg, #10B981, #059669);
}

.performance-icon {
  background: linear-gradient(135deg, var(--electric-cyan), var(--neon-accent));
}

.functional-icon {
  background: linear-gradient(135deg, #F59E0B, #D97706);
}

.card-title-group {
  flex: 1;
}

.cookie-type-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--pearl-white);
  margin-bottom: 6px;
}

.cookie-status {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.required {
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.optional {
  background: rgba(0, 212, 255, 0.2);
  color: var(--electric-cyan);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin: 0;
}

.cookie-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.example-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--pearl-white);
  padding: 6px 14px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Controls Section */
.cookie-controls-section {
  background: var(--glass-overlay);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 65px;
}

.controls-content {
  text-align: center;
}

.controls-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--electric-cyan);
  margin-bottom: 18px;
}

.controls-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin-bottom: 42px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.control-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.control-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  transition: all 0.3s ease;
  text-align: left;
}

.control-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.control-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.control-info {
  flex: 1;
}

.control-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--pearl-white);
  margin-bottom: 8px;
}

.control-detail {
  font-size: 15px;
  line-height: 1.5;
  color: var(--silver-mist);
  margin: 0;
}

.browser-info {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--pearl-white);
  margin-bottom: 15px;
}

.browser-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin-bottom: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.browser-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.browser-link {
  text-decoration: none;
  color: var(--electric-cyan);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 18px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.browser-link:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--electric-cyan);
  transform: translateY(-2px);
}

/* Data Retention Section */
.retention-section {
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 21px;
  padding: 42px;
}

.retention-content {
  text-align: center;
}

.retention-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--electric-cyan);
  margin-bottom: 32px;
}

.retention-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.retention-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.retention-item:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-4px);
}

.retention-icon {
  font-size: 32px;
  line-height: 1;
}

.retention-info {
  text-align: center;
}

.retention-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--pearl-white);
  margin-bottom: 8px;
}

.retention-detail {
  font-size: 15px;
  line-height: 1.5;
  color: var(--silver-mist);
  margin: 0;
}

/* Footer Section (Same as main page) */
.site-footer-zone {
  background: linear-gradient(135deg, var(--midnight-steel) 0%, var(--ocean-depth) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.site-footer-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric-cyan), var(--neon-accent), transparent);
}

.footer-content-wrapper {
  max-width: 1420px;
  margin: 0 auto;
  padding: 65px 34px 42px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 75px;
  align-items: start;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand-identity {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--electric-cyan);
  letter-spacing: -0.8px;
}

.footer-brand-tagline {
  font-size: 18px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin: 0;
  max-width: 420px;
}

.footer-links-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pearl-white);
  margin: 0;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  text-decoration: none;
  color: var(--silver-mist);
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--electric-cyan);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--electric-cyan);
  transform: translateX(5px);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pearl-white);
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-address,
.contact-phone {
  font-size: 16px;
  line-height: 1.5;
  color: var(--silver-mist);
  margin: 0;
}

.contact-phone {
  font-weight: 500;
  color: var(--electric-cyan);
}

.footer-bottom-bar {
  background: var(--glass-overlay);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
  max-width: 1420px;
  margin: 0 auto;
  padding: 28px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  font-size: 16px;
  color: var(--silver-mist);
  margin: 0;
  font-weight: 400;
}

.footer-accent-line {
  width: 85px;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-accent));
  border-radius: 1px;
}

/* Responsive Design */
@media (max-width: 890px) {
  .nav-menu-toggle {
    display: flex;
  }

  .nav-menu-list {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: var(--midnight-steel);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 34px;
    padding-top: 55px;
    transition: left 0.4s ease;
  }

  .cookies-hero-section {
    padding: 55px 21px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .cookie-icon {
    font-size: 65px;
  }

  .cookie-info-section {
    padding: 75px 21px;
  }

  .cookie-types-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 65px;
  }

  .cookie-type-card {
    padding: 32px;
  }

  .card-header {
    gap: 15px;
  }

  .cookie-type-title {
    font-size: 20px;
  }

  .cookie-controls-section {
    padding: 38px;
    margin-bottom: 48px;
  }

  .controls-title {
    font-size: 28px;
  }

  .controls-description {
    font-size: 17px;
    margin-bottom: 35px;
  }

  .control-options {
    grid-template-columns: 1fr;
    gap: 21px;
    margin-bottom: 38px;
  }

  .control-item {
    padding: 24px;
  }

  .browser-description {
    margin-bottom: 24px;
  }

  .browser-links {
    gap: 12px;
  }

  .retention-section {
    padding: 35px;
  }

  .retention-title {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .retention-grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .retention-item {
    padding: 24px;
  }

  .footer-content-wrapper {
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 55px 21px 34px;
  }

  .footer-links-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand-identity {
    justify-content: center;
    text-align: center;
  }

  .footer-brand-tagline {
    text-align: center;
    margin: 0 auto;
  }

  .footer-links-group,
  .footer-contact-info {
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 18px;
    padding: 24px 21px;
  }

  .footer-accent-line {
    width: 120px;
  }
}

@media (max-width: 640px) {
  .cookies-hero-section {
    padding: 42px 21px;
  }

  .hero-content {
    gap: 21px;
  }

  .cookie-visual {
    margin-bottom: 18px;
  }

  .cookie-icon {
    font-size: 55px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .last-updated {
    padding: 10px 20px;
    gap: 6px;
  }

  .update-label,
  .update-date {
    font-size: 13px;
  }

  .cookie-info-section {
    padding: 55px 21px;
  }

  .cookie-types-grid {
    gap: 21px;
    margin-bottom: 55px;
  }

  .cookie-type-card {
    padding: 24px;
  }

  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-type-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .cookie-type-title {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .cookie-description {
    font-size: 15px;
  }

  .example-tag {
    font-size: 12px;
    padding: 5px 12px;
  }

  .cookie-controls-section {
    padding: 28px;
    margin-bottom: 42px;
  }

  .controls-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .controls-description {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .control-options {
    margin-bottom: 32px;
  }

  .control-item {
    padding: 20px;
    gap: 15px;
  }

  .control-icon {
    font-size: 24px;
  }

  .control-name {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .control-detail {
    font-size: 14px;
  }

  .browser-info {
    padding-top: 24px;
  }

  .browser-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .browser-description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .browser-links {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }

  .browser-link {
    font-size: 14px;
    padding: 8px 16px;
  }

  .retention-section {
    padding: 28px;
  }

  .retention-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .retention-item {
    padding: 20px;
    gap: 12px;
  }

  .retention-icon {
    font-size: 28px;
  }

  .retention-name {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .retention-detail {
    font-size: 14px;
  }

  .footer-content-wrapper {
    padding: 42px 21px 28px;
    gap: 42px;
  }

  .footer-brand-name {
    font-size: 28px;
  }

  .footer-brand-tagline {
    font-size: 16px;
  }

  .footer-links-title,
  .footer-contact-title {
    font-size: 18px;
  }

  .footer-link,
  .contact-address,
  .contact-phone {
    font-size: 15px;
  }

  .copyright-text {
    font-size: 15px;
    text-align: center;
  }

  .footer-bottom-content {
    padding: 21px;
  }

  .footer-accent-line {
    width: 100px;
  }
}

/* Enhanced Animation Effects */
.cookie-type-card:hover .cookie-type-icon {
  transform: scale(1.1) rotate(5deg);
}

.control-item:hover .control-icon {
  transform: scale(1.1);
}

.retention-item:hover .retention-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* Accessibility Improvements */
.nav-link:focus-visible,
.footer-link:focus-visible,
.browser-link:focus-visible {
  outline: 2px solid var(--electric-cyan);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Cookie Visual Enhancement */
.cookie-visual:hover .cookie-icon {
  transform: scale(1.05);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.4));
}

.cookie-visual:hover .floating-crumb {
  animation-duration: 2s;
}














:root {
  --ocean-depth: #0a0f1c;
  --midnight-steel: #1a2332;
  --electric-cyan: #00d4ff;
  --neon-accent: #7c3aed;
  --pearl-white: #f8fafc;
  --silver-mist: #e2e8f0;
  --charcoal-text: #334155;
  --steel-border: #475569;
  --glass-overlay: rgba(255, 255, 255, 0.08);
  --shadow-depth: rgba(0, 0, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--midnight-steel) 100%);
  color: var(--pearl-white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Navigation Styles (Same as main page) */
.primary-navigation {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 18px 0;
}

.nav-container {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 34px;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--electric-cyan);
  letter-spacing: -0.5px;
}

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--pearl-white);
  transition: all 0.3s ease;
}

.nav-menu-list {
  display: flex;
  list-style: none;
  gap: 42px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--silver-mist);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-accent));
  transition: width 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--electric-cyan);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Privacy Hero Section */
.privacy-hero-section {
  margin-top: 95px;
  padding: 75px 34px;
  background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--midnight-steel) 100%);
  position: relative;
  overflow: hidden;
}

.privacy-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric-cyan), var(--neon-accent), transparent);
}

.footer-content-wrapper {
  max-width: 1420px;
  margin: 0 auto;
  padding: 65px 34px 42px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 75px;
  align-items: start;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand-identity {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--electric-cyan);
  letter-spacing: -0.8px;
}

.footer-brand-tagline {
  font-size: 18px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin: 0;
  max-width: 420px;
}

.footer-links-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pearl-white);
  margin: 0;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  text-decoration: none;
  color: var(--silver-mist);
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--electric-cyan);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--electric-cyan);
  transform: translateX(5px);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pearl-white);
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-address,
.contact-phone {
  font-size: 16px;
  line-height: 1.5;
  color: var(--silver-mist);
  margin: 0;
}

.contact-phone {
  font-weight: 500;
  color: var(--electric-cyan);
}

.footer-bottom-bar {
  background: var(--glass-overlay);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
  max-width: 1420px;
  margin: 0 auto;
  padding: 28px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  font-size: 16px;
  color: var(--silver-mist);
  margin: 0;
  font-weight: 400;
}

.footer-accent-line {
  width: 85px;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-accent));
  border-radius: 1px;
}

/* Responsive Design */
@media (max-width: 890px) {
  .nav-menu-toggle {
    display: flex;
  }

  .nav-menu-list {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: var(--midnight-steel);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 34px;
    padding-top: 55px;
    transition: left 0.4s ease;
  }

  .privacy-hero-section {
    padding: 55px 21px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .shield-icon {
    font-size: 60px;
  }

  .ring-1 {
    width: 100px;
    height: 100px;
  }

  .ring-2 {
    width: 130px;
    height: 130px;
  }

  .ring-3 {
    width: 160px;
    height: 160px;
  }

  .trust-badges {
    gap: 18px;
  }

  .privacy-content-section {
    padding: 75px 21px;
  }

  .privacy-section {
    margin-bottom: 65px;
  }

  .section-header {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
  }

  .section-icon {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .content-card {
    padding: 32px;
  }

  .usage-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .usage-item {
    padding: 28px;
    gap: 18px;
  }

  .usage-icon {
    font-size: 28px;
  }

  .rights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
  }

  .rights-card {
    padding: 24px;
  }

  .security-features {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .security-item {
    padding: 30px;
  }

  .updates-content {
    padding: 35px;
  }

  .updates-text {
    font-size: 17px;
    margin-bottom: 28px;
  }

  .update-info {
    gap: 32px;
  }

  .footer-content-wrapper {
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 55px 21px 34px;
  }

  .footer-links-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand-identity {
    justify-content: center;
    text-align: center;
  }

  .footer-brand-tagline {
    text-align: center;
    margin: 0 auto;
  }

  .footer-links-group,
  .footer-contact-info {
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 18px;
    padding: 24px 21px;
  }

  .footer-accent-line {
    width: 120px;
  }
}

@media (max-width: 640px) {
  .privacy-hero-section {
    padding: 42px 21px;
  }

  .hero-content {
    gap: 24px;
  }

  .privacy-visual {
    margin-bottom: 18px;
  }

  .shield-icon {
    font-size: 50px;
  }

  .ring-1 {
    width: 80px;
    height: 80px;
  }

  .ring-2 {
    width: 110px;
    height: 110px;
  }

  .ring-3 {
    width: 140px;
    height: 140px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .trust-badges {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }

  .trust-badge {
    padding: 10px 18px;
  }

  .badge-icon {
    font-size: 16px;
  }

  .badge-text {
    font-size: 13px;
  }

  .privacy-content-section {
    padding: 55px 21px;
  }

  .privacy-section {
    margin-bottom: 55px;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-icon {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .content-card {
    padding: 24px;
  }

  .card-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .card-description {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .data-tag {
    font-size: 12px;
    padding: 5px 12px;
  }

  .usage-item {
    padding: 24px;
    gap: 15px;
    flex-direction: column;
    text-align: center;
  }

  .usage-icon {
    font-size: 24px;
  }

  .usage-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .usage-description {
    font-size: 15px;
  }

  .rights-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rights-card {
    padding: 20px;
  }

  .rights-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .rights-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .rights-description {
    font-size: 14px;
  }

  .security-item {
    padding: 24px;
  }

  .security-badge {
    font-size: 14px;
    padding: 6px 14px;
  }

  .security-label {
    font-size: 16px;
  }

  .security-desc {
    font-size: 14px;
  }

  .updates-content {
    padding: 28px;
  }

  .updates-text {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .update-info {
    gap: 24px;
    flex-direction: column;
  }

  .update-label {
    font-size: 13px;
  }

  .update-value {
    font-size: 15px;
  }

  .footer-content-wrapper {
    padding: 42px 21px 28px;
    gap: 42px;
  }

  .footer-brand-name {
    font-size: 28px;
  }

  .footer-brand-tagline {
    font-size: 16px;
  }

  .footer-links-title,
  .footer-contact-title {
    font-size: 18px;
  }

  .footer-link,
  .contact-address,
  .contact-phone {
    font-size: 15px;
  }

  .copyright-text {
    font-size: 15px;
    text-align: center;
  }

  .footer-bottom-content {
    padding: 21px;
  }

  .footer-accent-line {
    width: 100px;
  }
}

/* Enhanced Animation Effects */
.content-card:hover .card-title {
  color: var(--electric-cyan);
}

.usage-item:hover .usage-icon {
  transform: scale(1.1);
}

.rights-card:hover .rights-icon {
  transform: scale(1.1) rotate(5deg);
}

.security-item:hover .security-badge {
  transform: scale(1.05);
}

.trust-badge:hover .badge-icon {
  transform: scale(1.1);
}

/* Accessibility Improvements */
.nav-link:focus-visible,
.footer-link:focus-visible {
  outline: 2px solid var(--electric-cyan);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Privacy Visual Enhancement */
.privacy-visual:hover .shield-icon {
  transform: scale(1.05);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.4));
}

.privacy-visual:hover .ring {
  animation-duration: 2s;
}
 

.hero-container {
  max-width: 1420px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.privacy-visual {
  position: relative;
  margin-bottom: 24px;
}

.shield-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-icon {
  font-size: 75px;
  line-height: 1;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  animation: pulse 3s ease-in-out infinite;
  z-index: 2;
  position: relative;
}

.protection-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring {
  position: absolute;
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 3s ease-out infinite;
}

.ring-1 {
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}

.ring-2 {
  width: 160px;
  height: 160px;
  animation-delay: 1s;
}

.ring-3 {
  width: 200px;
  height: 200px;
  animation-delay: 2s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--pearl-white);
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--silver-mist);
  max-width: 720px;
  font-weight: 400;
}

.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-overlay);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 18px;
  line-height: 1;
}

.badge-text {
  font-size: 14px;
  color: var(--pearl-white);
  font-weight: 600;
}

/* Privacy Content Section */
.privacy-content-section {
  padding: 95px 34px;
  background: linear-gradient(145deg, var(--midnight-steel) 0%, var(--ocean-depth) 100%);
}

.privacy-container {
  max-width: 1420px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 85px;
}

.privacy-section.final-section {
  margin-bottom: 0;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 42px;
  justify-content: center;
  text-align: center;
}

.section-icon {
  font-size: 42px;
  line-height: 1;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--electric-cyan);
  text-align: center;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 34px;
}

.content-card {
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 21px;
  padding: 38px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-accent));
  transition: left 0.6s ease;
}

.content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 65px rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.2);
}

.content-card:hover::before {
  left: 0;
}

.card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--pearl-white);
  margin-bottom: 15px;
}

.card-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin-bottom: 20px;
}

.data-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.data-tag {
  background: rgba(0, 212, 255, 0.2);
  color: var(--electric-cyan);
  padding: 6px 14px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

/* Usage List */
.usage-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.usage-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--glass-overlay);
  backdrop-filter: blur(8px);
  padding: 32px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.usage-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(8px);
}

.usage-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.usage-content {
  flex: 1;
}

.usage-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pearl-white);
  margin-bottom: 10px;
}

.usage-description {
  font-size: 16px;
  line-height: 1.5;
  color: var(--silver-mist);
  margin: 0;
}

/* Rights Grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.rights-card {
  background: var(--glass-overlay);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.rights-card:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-4px);
}

.rights-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 15px;
}

.rights-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--pearl-white);
  margin-bottom: 10px;
}

.rights-description {
  font-size: 15px;
  line-height: 1.5;
  color: var(--silver-mist);
  margin: 0;
}

/* Security Features */
.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.security-item {
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 35px;
  text-align: center;
  transition: all 0.3s ease;
}

.security-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(0, 212, 255, 0.1);
}

.security-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.security-badge {
  background: linear-gradient(135deg, var(--electric-cyan), var(--neon-accent));
  color: var(--ocean-depth);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.security-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--pearl-white);
}

.security-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin: 0;
}

/* Updates Content */
.updates-content {
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 21px;
  padding: 42px;
  text-align: center;
}

.updates-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.update-info {
  display: flex;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
}

.update-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.update-label {
  font-size: 14px;
  color: var(--silver-mist);
  font-weight: 500;
}

.update-value {
  font-size: 16px;
  color: var(--electric-cyan);
  font-weight: 600;
}

/* Footer Section (Same as main page) */
.site-footer-zone {
  background: linear-gradient(135deg, var(--midnight-steel) 0%, var(--ocean-depth) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}













:root {
  --ocean-depth: #0a0f1c;
  --midnight-steel: #1a2332;
  --electric-cyan: #00d4ff;
  --neon-accent: #7c3aed;
  --pearl-white: #f8fafc;
  --silver-mist: #e2e8f0;
  --charcoal-text: #334155;
  --steel-border: #475569;
  --glass-overlay: rgba(255, 255, 255, 0.08);
  --shadow-depth: rgba(0, 0, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--midnight-steel) 100%);
  color: var(--pearl-white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Navigation Styles (Same as main page) */
.primary-navigation {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 18px 0;
}

.nav-container {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 34px;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--electric-cyan);
  letter-spacing: -0.5px;
}

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--pearl-white);
  transition: all 0.3s ease;
}

.nav-menu-list {
  display: flex;
  list-style: none;
  gap: 42px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--silver-mist);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-accent));
  transition: width 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--electric-cyan);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Thank You Hero Section */
.thankyou-hero-section {
  margin-top: 95px;
  padding: 85px 34px;
  background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--midnight-steel) 100%);
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thankyou-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1420px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}

.success-visual {
  position: relative;
  margin-bottom: 24px;
}

.checkmark-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkmark-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #10B981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
  transform: scale(0);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.checkmark-circle.animate {
  transform: scale(1);
}

.checkmark-icon {
  font-size: 48px;
  color: var(--pearl-white);
  font-weight: 700;
  line-height: 1;
}

.success-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--electric-cyan), var(--neon-accent));
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.6s ease;
}

.particle.animate {
  opacity: 1;
  transform: scale(1);
}

.particle-1 {
  top: -60px;
  left: -20px;
  animation: float-up 2s ease-in-out infinite;
  animation-delay: 0.2s;
}

.particle-2 {
  top: -40px;
  right: -40px;
  animation: float-right 2s ease-in-out infinite;
  animation-delay: 0.4s;
}

.particle-3 {
  bottom: -50px;
  left: -30px;
  animation: float-down 2s ease-in-out infinite;
  animation-delay: 0.6s;
}

.particle-4 {
  bottom: -35px;
  right: -25px;
  animation: float-diagonal 2s ease-in-out infinite;
  animation-delay: 0.8s;
}

.particle-5 {
  top: -10px;
  left: -70px;
  animation: float-left 2s ease-in-out infinite;
  animation-delay: 1s;
}

.particle-6 {
  top: 20px;
  right: -60px;
  animation: float-bounce 2s ease-in-out infinite;
  animation-delay: 1.2s;
}

@keyframes float-up {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes float-right {
  0%, 100% { transform: translateX(0px); }
  50% { transform: translateX(8px); }
}

@keyframes float-down {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(8px); }
}

@keyframes float-diagonal {
  0%, 100% { transform: translate(0px, 0px); }
  50% { transform: translate(6px, -6px); }
}

@keyframes float-left {
  0%, 100% { transform: translateX(0px); }
  50% { transform: translateX(-8px); }
}

@keyframes float-bounce {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-8px) scale(1.1); }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--pearl-white);
  line-height: 1.1;
  letter-spacing: -1.2px;
}

.hero-subtitle {
  font-size: 22px;
  line-height: 1.6;
  color: var(--silver-mist);
  max-width: 720px;
  font-weight: 400;
}

.confirmation-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  width: 100%;
  max-width: 900px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--glass-overlay);
  backdrop-filter: blur(8px);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.detail-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.detail-label {
  font-size: 14px;
  color: var(--silver-mist);
  font-weight: 500;
}

.detail-value {
  font-size: 16px;
  color: var(--pearl-white);
  font-weight: 600;
}

/* Next Steps Section */
.next-steps-section {
  padding: 95px 34px;
  background: linear-gradient(145deg, var(--midnight-steel) 0%, var(--ocean-depth) 100%);
}

.steps-container {
  max-width: 1420px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 65px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--electric-cyan);
  margin-bottom: 18px;
}

.section-description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--silver-mist);
  max-width: 680px;
  margin: 0 auto;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 45px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 32px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateX(0);
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.marker-number {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--electric-cyan), var(--neon-accent));
  color: var(--ocean-depth);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.marker-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, var(--electric-cyan), transparent);
}

.timeline-item:last-child .marker-line {
  display: none;
}

.timeline-content {
  flex: 1;
  padding-top: 8px;
}

.timeline-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--pearl-white);
  margin-bottom: 12px;
}

.timeline-description {
  font-size: 17px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin-bottom: 15px;
}

.timeline-time {
  font-size: 14px;
  color: var(--electric-cyan);
  font-weight: 600;
  background: rgba(0, 212, 255, 0.1);
  padding: 6px 14px;
  border-radius: 15px;
  display: inline-block;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Explore Section */
.explore-section {
  padding: 95px 34px;
  background: var(--ocean-depth);
  position: relative;
}

.explore-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric-cyan), transparent);
}

.explore-container {
  max-width: 1420px;
  margin: 0 auto;
}

.explore-header {
  text-align: center;
  margin-bottom: 65px;
}

.explore-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--pearl-white);
  margin-bottom: 18px;
}

.explore-description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--silver-mist);
  max-width: 640px;
  margin: 0 auto;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 34px;
}

.explore-card {
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 21px;
  padding: 42px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.explore-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-accent));
  transition: left 0.6s ease;
}

.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 65px rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
}

.explore-card:hover::before {
  left: 0;
}

.card-icon {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 24px;
}

.card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--pearl-white);
  margin-bottom: 15px;
}

.card-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin-bottom: 28px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--electric-cyan);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 12px 24px;
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 25px;
  background: rgba(0, 212, 255, 0.1);
}

.card-link:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--electric-cyan);
  transform: translateY(-2px);
}

.link-text {
  position: relative;
  z-index: 2;
}

.link-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.card-link:hover .link-arrow {
  transform: translateX(4px);
}

/* Quick Actions Section */
.quick-actions-section {
  padding: 95px 34px;
  background: linear-gradient(135deg, var(--midnight-steel) 0%, var(--ocean-depth) 100%);
}

.actions-container {
  max-width: 1420px;
  margin: 0 auto;
}

.actions-content {
  text-align: center;
  background: var(--glass-overlay);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 55px;
}

.actions-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--electric-cyan);
  margin-bottom: 18px;
}

.actions-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin-bottom: 42px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.action-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.action-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.action-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.6s ease;
}

.action-button:hover::before {
  left: 100%;
}

.primary-action {
  background: linear-gradient(135deg, var(--electric-cyan), var(--neon-accent));
  color: var(--ocean-depth);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
}

.primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 42px rgba(0, 212, 255, 0.4);
}

.secondary-action {
  background: var(--glass-overlay);
  color: var(--pearl-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.secondary-action:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--electric-cyan);
  transform: translateY(-2px);
}

.tertiary-action {
  background: rgba(124, 58, 237, 0.2);
  color: var(--neon-accent);
  border: 2px solid rgba(124, 58, 237, 0.3);
}

.tertiary-action:hover {
  background: rgba(124, 58, 237, 0.3);
  border-color: var(--neon-accent);
  transform: translateY(-2px);
}

.button-icon {
  font-size: 18px;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.button-text {
  position: relative;
  z-index: 2;
}

/* Footer Section (Same as main page) */
.site-footer-zone {
  background: linear-gradient(135deg, var(--midnight-steel) 0%, var(--ocean-depth) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.site-footer-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric-cyan), var(--neon-accent), transparent);
}

.footer-content-wrapper {
  max-width: 1420px;
  margin: 0 auto;
  padding: 65px 34px 42px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 75px;
  align-items: start;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand-identity {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--electric-cyan);
  letter-spacing: -0.8px;
}

.footer-brand-tagline {
  font-size: 18px;
  line-height: 1.6;
  color: var(--silver-mist);
  margin: 0;
  max-width: 420px;
}

.footer-links-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pearl-white);
  margin: 0;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  text-decoration: none;
  color: var(--silver-mist);
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--electric-cyan);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--electric-cyan);
  transform: translateX(5px);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pearl-white);
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-address,
.contact-phone {
  font-size: 16px;
  line-height: 1.5;
  color: var(--silver-mist);
  margin: 0;
}

.contact-phone {
  font-weight: 500;
  color: var(--electric-cyan);
}

.footer-bottom-bar {
  background: var(--glass-overlay);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
  max-width: 1420px;
  margin: 0 auto;
  padding: 28px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  font-size: 16px;
  color: var(--silver-mist);
  margin: 0;
  font-weight: 400;
}

.footer-accent-line {
  width: 85px;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-accent));
  border-radius: 1px;
}

/* Responsive Design */
@media (max-width: 890px) {
  .nav-menu-toggle {
    display: flex;
  }

  .nav-menu-list {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: var(--midnight-steel);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 34px;
    padding-top: 55px;
    transition: left 0.4s ease;
  }

  .thankyou-hero-section {
    padding: 55px 21px;
    min-height: 60vh;
  }

  .hero-content {
    gap: 32px;
  }

  .checkmark-circle {
    width: 100px;
    height: 100px;
  }

  .checkmark-icon {
    font-size: 40px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .confirmation-details {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .detail-item {
    padding: 20px;
    gap: 15px;
  }

  .detail-icon {
    font-size: 28px;
  }

  .next-steps-section {
    padding: 75px 21px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-description {
    font-size: 18px;
  }

  .section-header {
    margin-bottom: 55px;
  }

  .steps-timeline {
    gap: 35px;
  }

  .timeline-item {
    gap: 24px;
  }

  .marker-number {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .timeline-title {
    font-size: 22px;
  }

  .timeline-description {
    font-size: 16px;
  }

  .explore-section {
    padding: 75px 21px;
  }

  .explore-title {
    font-size: 36px;
  }

  .explore-description {
    font-size: 18px;
  }

  .explore-header {
    margin-bottom: 55px;
  }

  .explore-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .explore-card {
    padding: 35px;
  }

  .card-icon {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .card-title {
    font-size: 22px;
  }

  .quick-actions-section {
    padding: 75px 21px;
  }

  .actions-content {
    padding: 42px;
  }

  .actions-title {
    font-size: 32px;
  }

  .actions-description {
    font-size: 17px;
    margin-bottom: 35px;
  }

  .action-buttons {
    gap: 18px;
    flex-direction: column;
    align-items: center;
  }

  .action-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .footer-content-wrapper {
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 55px 21px 34px;
  }

  .footer-links-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand-identity {
    justify-content: center;
    text-align: center;
  }

  .footer-brand-tagline {
    text-align: center;
    margin: 0 auto;
  }

  .footer-links-group,
  .footer-contact-info {
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 18px;
    padding: 24px 21px;
  }

  .footer-accent-line {
    width: 120px;
  }
}

@media (max-width: 640px) {
  .thankyou-hero-section {
    padding: 42px 21px;
    min-height: 50vh;
  }

  .hero-content {
    gap: 24px;
  }

  .success-visual {
    margin-bottom: 18px;
  }

  .checkmark-circle {
    width: 85px;
    height: 85px;
  }

  .checkmark-icon {
    font-size: 32px;
  }

  .particle {
    width: 6px;
    height: 6px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .detail-item {
    padding: 18px;
    gap: 12px;
    flex-direction: column;
    text-align: center;
  }

  .detail-icon {
    font-size: 24px;
  }

  .detail-label,
  .detail-value {
    font-size: 14px;
  }

  .next-steps-section {
    padding: 55px 21px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-description {
    font-size: 16px;
  }

  .section-header {
    margin-bottom: 42px;
  }

  .steps-timeline {
    gap: 28px;
  }

  .timeline-item {
    gap: 18px;
  }

  .marker-number {
    width: 42px;
    height: 42px;
    font-size: 16px;
    margin-bottom: 12px;
  }

  .marker-line {
    height: 40px;
  }

  .timeline-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .timeline-description {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .timeline-time {
    font-size: 13px;
    padding: 5px 12px;
  }

  .explore-section {
    padding: 55px 21px;
  }

  .explore-title {
    font-size: 30px;
  }

  .explore-description {
    font-size: 16px;
  }

  .explore-header {
    margin-bottom: 42px;
  }

  .explore-grid {
    gap: 21px;
  }

  .explore-card {
    padding: 28px;
  }

  .card-icon {
    font-size: 36px;
    margin-bottom: 18px;
  }

  .card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .card-description {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .card-link {
    padding: 10px 20px;
    font-size: 15px;
  }

  .quick-actions-section {
    padding: 55px 21px;
  }

  .actions-content {
    padding: 32px;
  }

  .actions-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .actions-description {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .action-button {
    padding: 16px 28px;
    font-size: 15px;
    gap: 10px;
  }

  .button-icon {
    font-size: 16px;
  }

  .footer-content-wrapper {
    padding: 42px 21px 28px;
    gap: 42px;
  }

  .footer-brand-name {
    font-size: 28px;
  }

  .footer-brand-tagline {
    font-size: 16px;
  }

  .footer-links-title,
  .footer-contact-title {
    font-size: 18px;
  }

  .footer-link,
  .contact-address,
  .contact-phone {
    font-size: 15px;
  }

  .copyright-text {
    font-size: 15px;
    text-align: center;
  }

  .footer-bottom-content {
    padding: 21px;
  }

  .footer-accent-line {
    width: 100px;
  }
}

/* Enhanced Animation Effects */
.explore-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.action-button:hover .button-icon {
  transform: scale(1.1);
}

.detail-item:hover .detail-icon {
  transform: scale(1.1);
}

/* Accessibility Improvements */
.nav-link:focus-visible,
.footer-link:focus-visible,
.card-link:focus-visible,
.action-button:focus-visible {
  outline: 2px solid var(--electric-cyan);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Success Visual Enhancement */
.checkmark-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 70px rgba(16, 185, 129, 0.4);
}


