/* Nexjipo - Main Stylesheet */

/* CSS Variables */
:root {
  /* Colors */
  --nexjipo-white: #ffffff;
  --nexjipo-pink: #d6a99d;
  --nexjipo-cream: #fbf3d5;
  --nexjipo-sage: #d6dac8;
  --nexjipo-teal: #9cafaa;
  --nexjipo-dark: #333333;
  --nexjipo-light-gray: #f5f5f5;
  --nexjipo-gray: #777777;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;

  /* Typography */
  --font-primary: 'Comfortaa', cursive;
  --font-secondary: 'Quicksand', sans-serif;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--nexjipo-dark);
  background-color: var(--nexjipo-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

/* Container */
.nexjipo-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md);
}

/* Typography Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--space-md);
}

/* Button Styles */
.nexjipo-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
}

.nexjipo-btn-primary {
  background-color: var(--nexjipo-teal);
  color: var(--nexjipo-white);
}

.nexjipo-btn-primary:hover {
  background-color: #8a9e99;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nexjipo-btn-secondary {
  background-color: var(--nexjipo-pink);
  color: var(--nexjipo-white);
}

.nexjipo-btn-secondary:hover {
  background-color: #c5988c;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nexjipo-btn-outline {
  background-color: transparent;
  color: var(--nexjipo-teal);
  border: 2px solid var(--nexjipo-teal);
}

.nexjipo-btn-outline:hover {
  background-color: var(--nexjipo-teal);
  color: var(--nexjipo-white);
  transform: translateY(-2px);
}

.nexjipo-btn-contact {
  background-color: var(--nexjipo-pink);
  color: var(--nexjipo-white);
  padding: 0.5rem 1.25rem;
}

.nexjipo-btn-contact:hover {
  background-color: #c5988c;
}

.nexjipo-btn-primary-full,
.nexjipo-btn-outline-full {
  display: block;
  width: 100%;
}

.nexjipo-btn-primary-full {
  background-color: var(--nexjipo-teal);
  color: var(--nexjipo-white);
}

.nexjipo-btn-primary-full:hover {
  background-color: #8a9e99;
}

.nexjipo-btn-outline-full {
  background-color: transparent;
  color: var(--nexjipo-teal);
  border: 2px solid var(--nexjipo-teal);
}

.nexjipo-btn-outline-full:hover {
  background-color: var(--nexjipo-teal);
  color: var(--nexjipo-white);
}

.nexjipo-btn-accept {
  background-color: var(--nexjipo-teal);
  color: var(--nexjipo-white);
}

.nexjipo-btn-more {
  background-color: transparent;
  color: var(--nexjipo-teal);
  border: 1px solid var(--nexjipo-teal);
}

/* Cosmopolitan Header Styles */
.nexjipo-cosmo-header {
  position: relative;
  padding: 1.5rem 0;
  background: linear-gradient(
    135deg,
    var(--nexjipo-teal) 0%,
    var(--nexjipo-sage) 100%
  );
  z-index: 100;
  transition: transform var(--transition-normal);
}

.nexjipo-cosmo-header.hidden {
  transform: translateY(-100%);
}

.nexjipo-cosmo-header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nexjipo-cosmo-logo {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0.5rem 2rem;
  background-color: var(--nexjipo-white);
  border-radius: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(10px);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  text-decoration: none;
}

.nexjipo-cosmo-logo:hover {
  transform: translateY(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.nexjipo-cosmo-logo-text {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--nexjipo-teal);
  letter-spacing: -0.5px;
}

.nexjipo-cosmo-logo-text::after {
  content: '•';
  margin-left: 5px;
  color: var(--nexjipo-pink);
}

.nexjipo-cosmo-nav-toggle {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: var(--nexjipo-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-normal);
}

.nexjipo-cosmo-nav-toggle:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.nexjipo-cosmo-nav-toggle i {
  color: var(--nexjipo-teal);
  font-size: 1.2rem;
}

.nexjipo-cosmo-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nexjipo-cosmo-nav.active {
  opacity: 1;
  visibility: visible;
}

.nexjipo-cosmo-nav-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background-color: var(--nexjipo-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--nexjipo-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-normal);
}

.nexjipo-cosmo-nav-close:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.nexjipo-cosmo-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.nexjipo-cosmo-nav-list a {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--nexjipo-dark);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.nexjipo-cosmo-nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--nexjipo-pink);
  transition: width 0.3s ease;
}

.nexjipo-cosmo-nav-list a:hover {
  color: var(--nexjipo-teal);
}

.nexjipo-cosmo-nav-list a:hover::after {
  width: 100%;
}

.nexjipo-cosmo-nav-list .nexjipo-btn-contact {
  margin-top: 1rem;
  background-color: var(--nexjipo-teal);
  color: var(--nexjipo-white);
  border-radius: 3rem;
  padding: 0.7rem 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nexjipo-cosmo-nav-list .nexjipo-btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.nexjipo-cosmo-nav-list .nexjipo-btn-contact::after {
  display: none;
}

/* Hero Section */
.nexjipo-hero {
  position: relative;
  padding: var(--space-xxl) 0;
  overflow: hidden;
  background-image: url(../images/hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.nexjipo-hero-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-lg);
  position: relative;
  z-index: 2;
}

.nexjipo-hero h1 {
  margin-bottom: var(--space-md);
  color: white;
}

.nexjipo-hero p {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  color: white;
}

.nexjipo-hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.nexjipo-hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.nexjipo-shape-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background-color: var(--nexjipo-pink);
  opacity: 0.2;
  top: -100px;
  left: -100px;
  animation: float 15s ease-in-out infinite;
}

.nexjipo-shape-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background-color: var(--nexjipo-teal);
  opacity: 0.15;
  bottom: -80px;
  right: -50px;
  animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, 20px) rotate(5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* Section Header */
.nexjipo-section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.nexjipo-section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-sm);
}

.nexjipo-section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--nexjipo-pink);
}

.nexjipo-section-header p {
  color: var(--nexjipo-gray);
  max-width: 600px;
  margin: var(--space-md) auto 0;
}

/* Products Section */
.nexjipo-products {
  padding: var(--space-xxl) 0;
  background-color: var(--nexjipo-white);
}

.nexjipo-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.nexjipo-product-card {
  background-color: var(--nexjipo-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.nexjipo-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.nexjipo-product-image {
  height: 200px;
  overflow: hidden;
  background-color: var(--nexjipo-light-gray);
}

.nexjipo-product-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--nexjipo-sage);
  opacity: 0.6;
  position: relative;
}

.nexjipo-product-image-placeholder img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.nexjipo-product-image-placeholder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 40px;
  background-color: var(--nexjipo-teal);
  opacity: 0.5;
  border-radius: var(--radius-sm);
}

.nexjipo-product-info {
  padding: var(--space-lg);
}

.nexjipo-product-info h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.nexjipo-product-info p {
  font-size: 0.9rem;
  color: var(--nexjipo-gray);
  margin-bottom: var(--space-md);
}

.nexjipo-product-price {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--nexjipo-teal);
  margin-bottom: var(--space-md);
}

/* Schedule Section */
.nexjipo-schedule {
  padding: var(--space-xxl) 0;
  background-color: var(--nexjipo-sage);
  position: relative;
  overflow: hidden;
}

.nexjipo-schedule-table {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.nexjipo-schedule-day {
  background-color: var(--nexjipo-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.nexjipo-schedule-day h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  color: var(--nexjipo-teal);
  text-align: center;
  padding-bottom: var(--space-sm);
  border-bottom: 2px dashed var(--nexjipo-cream);
}

.nexjipo-schedule-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-sm);
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--nexjipo-light-gray);
}

.nexjipo-schedule-item:last-child {
  border-bottom: none;
}

.nexjipo-time {
  font-weight: 700;
  color: var(--nexjipo-dark);
}

.nexjipo-class {
  font-weight: 500;
  color: var(--nexjipo-gray);
}

.nexjipo-duration {
  font-size: 0.8rem;
  color: var(--nexjipo-gray);
  background-color: var(--nexjipo-cream);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-full);
}

.nexjipo-schedule-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Memberships Section */
.nexjipo-memberships {
  padding: var(--space-xxl) 0;
  background-color: var(--nexjipo-white);
}

.nexjipo-membership-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin: 0 auto;
  max-width: 1200px;
}

.nexjipo-membership-card {
  background-color: var(--nexjipo-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  position: relative;
  border: 1px solid var(--nexjipo-light-gray);
}

.nexjipo-membership-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.nexjipo-membership-card.nexjipo-featured {
  border: 2px solid var(--nexjipo-teal);
  transform: scale(1.05);
  z-index: 2;
}

.nexjipo-membership-card.nexjipo-featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.nexjipo-tag {
  position: absolute;
  top: 12px;
  right: -30px;
  background-color: var(--nexjipo-pink);
  color: var(--nexjipo-white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 2rem;
  transform: rotate(45deg);
  z-index: 3;
}

.nexjipo-membership-header {
  padding: var(--space-lg);
  text-align: center;
  background-color: var(--nexjipo-cream);
  border-bottom: 1px solid var(--nexjipo-light-gray);
}

.nexjipo-membership-header h3 {
  margin-bottom: var(--space-sm);
  color: var(--nexjipo-dark);
}

.nexjipo-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.nexjipo-amount {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--nexjipo-teal);
}

.nexjipo-period {
  font-size: 0.9rem;
  color: var(--nexjipo-gray);
  margin-left: var(--space-xs);
}

.nexjipo-membership-features {
  padding: var(--space-lg);
}

.nexjipo-membership-features ul li {
  padding: var(--space-sm) 0;
  position: relative;
  padding-left: var(--space-lg);
}

.nexjipo-membership-features ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--nexjipo-teal);
  font-weight: 700;
}

.nexjipo-membership-footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--nexjipo-light-gray);
}

/* Free Session Section */
.nexjipo-free-session {
  padding: var(--space-xxl) 0;
  background-color: var(--nexjipo-teal);
  color: var(--nexjipo-white);
}

.nexjipo-free-session-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.nexjipo-free-session-text h2 {
  margin-bottom: var(--space-md);
}

.nexjipo-free-session-text p {
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.nexjipo-benefits {
  margin-bottom: var(--space-lg);
}

.nexjipo-benefits li {
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: var(--space-lg);
}

.nexjipo-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--nexjipo-cream);
  font-weight: 700;
}

.nexjipo-free-session-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  min-height: 300px;
}

.nexjipo-free-session-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
}

.nexjipo-free-session-image-placeholder::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
}

/* Trial Class Section */
.nexjipo-trial-class {
  padding: var(--space-xxl) 0;
  background-color: var(--nexjipo-cream);
}

.nexjipo-trial-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--nexjipo-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl);
}

.nexjipo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.nexjipo-form-group {
  margin-bottom: var(--space-lg);
}

.nexjipo-form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--nexjipo-dark);
}

.nexjipo-form-group input,
.nexjipo-form-group select,
.nexjipo-form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--nexjipo-light-gray);
  border-radius: var(--radius-sm);
  background-color: var(--nexjipo-white);
  transition: border-color var(--transition-fast);
}

.nexjipo-form-group input:focus,
.nexjipo-form-group select:focus,
.nexjipo-form-group textarea:focus {
  border-color: var(--nexjipo-teal);
}

.nexjipo-form-submit {
  margin-top: var(--space-lg);
}

/* Articles Section */
.nexjipo-articles {
  padding: var(--space-xxl) 0;
  background-color: var(--nexjipo-white);
}

.nexjipo-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.nexjipo-article-card {
  background-color: var(--nexjipo-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.nexjipo-article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.nexjipo-article-image {
  height: 200px;
  overflow: hidden;
  background-color: var(--nexjipo-light-gray);
}

.nexjipo-article-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--nexjipo-sage);
  opacity: 0.4;
  position: relative;
}

.nexjipo-article-image-placeholder::after {
  content: '';
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 2px dashed rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
}

.nexjipo-article-content {
  padding: var(--space-lg);
}

.nexjipo-article-date {
  font-size: 0.8rem;
  color: var(--nexjipo-gray);
  margin-bottom: var(--space-sm);
}

.nexjipo-article-content h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.nexjipo-article-content p {
  font-size: 0.9rem;
  color: var(--nexjipo-gray);
  margin-bottom: var(--space-md);
}

.nexjipo-article-link {
  font-weight: 600;
  color: var(--nexjipo-teal);
  position: relative;
  padding-right: var(--space-lg);
}

.nexjipo-article-link::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: right var(--transition-fast);
}

.nexjipo-article-link:hover::after {
  right: -5px;
}

.nexjipo-articles-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Footer */
.nexjipo-footer {
  background-color: var(--nexjipo-teal);
  color: var(--nexjipo-white);
  padding: var(--space-lg) 0;
}

.nexjipo-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nexjipo-footer-logo {
  display: flex;
  flex-direction: column;
}

.nexjipo-footer-logo .nexjipo-logo-text {
  color: var(--nexjipo-white);
  margin-bottom: var(--space-xs);
}

.nexjipo-footer-logo p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0;
}

.nexjipo-footer-links ul {
  display: flex;
  gap: var(--space-lg);
}

.nexjipo-footer-links a {
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.nexjipo-footer-links a:hover {
  opacity: 1;
}

.nexjipo-footer-bottom {
  padding-top: var(--space-md);
  text-align: center;
}

.nexjipo-footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 0;
}

/* Privacy Popup */
.nexjipo-privacy-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--nexjipo-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg);
  z-index: 1000;
  transform: translateY(100%);
  opacity: 0;
  transition: transform var(--transition-normal),
    opacity var(--transition-normal);
  max-width: 400px;
}

.nexjipo-privacy-popup.active {
  transform: translateY(0);
  opacity: 1;
}

.nexjipo-privacy-popup-content h3 {
  margin-bottom: var(--space-sm);
}

.nexjipo-privacy-popup-content p {
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.nexjipo-privacy-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .nexjipo-free-session-content {
    grid-template-columns: 1fr;
  }

  .nexjipo-hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .nexjipo-hero-buttons .nexjipo-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .nexjipo-menu-toggle {
    display: block;
  }

  .nexjipo-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 300px;
    background-color: var(--nexjipo-white);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl);
  }

  .nexjipo-nav.active {
    transform: translateX(0);
  }

  .nexjipo-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }

  .nexjipo-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nexjipo-footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nexjipo-footer-links ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .nexjipo-container {
    width: 95%;
    padding: var(--space-sm);
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .nexjipo-hero {
    padding: var(--space-xl) 0;
  }

  .nexjipo-products,
  .nexjipo-schedule,
  .nexjipo-memberships,
  .nexjipo-free-session,
  .nexjipo-trial-class,
  .nexjipo-articles {
    padding: var(--space-xl) 0;
  }

  .nexjipo-trial-form-container {
    padding: var(--space-lg);
  }

  .nexjipo-membership-card.nexjipo-featured {
    transform: scale(1);
  }

  .nexjipo-membership-card.nexjipo-featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 320px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .nexjipo-btn {
    padding: 0.6rem 1.2rem;
  }
}

.nexjipo-online-type-card,
.nexjipo-featured-class-card,
.nexjipo-featured-class-schedule,
.nexjipo-featured-class-access {
  margin-bottom: 20px;
}
