:root {
  --primary: #667eea;
  --secondary: #764ba2;
  --accent: #4facfe;
  --text: #2c3e50;
  --text-light: #7f8c8d;
  --bg: #f0f4fa;
  --card: rgba(255, 255, 255, 0.85);
  --glass: rgba(255, 255, 255, 0.25);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
  box-sizing: border-box;
  font-family: 'Segoe UI', system-ui, sans-serif;
  margin: 0;
  padding: 0;
}
.hero,
.feature-card,
.benefit-card,
.info-card,
.pricing-card {
  border-radius: var(--radius);
  transition: var(--transition);
}
.hero {
  align-items: center;
  display: flex;
  min-height: 30vh;
  max-height: none; /* Remove fixed max-height */
  justify-content: center;
  margin-bottom: 3rem;
  overflow: visible; /* Allow content to expand if needed */
  position: relative;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.hero-bg {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  border-radius: 20px;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0; /* Fixed: was top: -20 (invalid unit) */
  width: 100%;
  z-index: -2;
}
.hero-particles {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.particle {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: absolute;
}
.hero-content {
  color: white;
  max-width: 900px;
  padding: 0 1rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.hero-content img {
  width: 90px;
  height: auto;
  margin-top: 0; /* Remove negative margin */
}
.hero-content h3 {
  color: yellow;
  font-size: clamp(1.5rem, 4vw, 2.5rem); /* Responsive font */
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
.subtitle {
  margin: 0;
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 600;
  color: white;
}
.tagline {
  font-size: clamp(0.9rem, 3vw, 1.2rem);
  font-weight: 400;
  color: lemonchiffon;
  margin: 0;
  line-height: 1.4;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.bento-grid {
  display: grid;
  gap: 1.5rem;
  grid-auto-rows: minmax(100px, auto);
  grid-template-columns: repeat(12, 1fr);
  margin-bottom: 3rem;
}
.bento-item,
.glass-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.bento-item:hover,
.feature-card:hover,
.pricing-card:hover,
.benefit-card:hover,
.info-card:hover {
  transform: translateY(-5px);
}
.bento-item:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.bento-item h3,
.bento-item h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}
.bento-item h3 {
  font-weight: 600;
}
.bento-item h4 {
  font-weight: 500;
}
.bento-item p {
  color: var(--text);
  margin-bottom: 1rem;
}
.bento-item ul {
  list-style-position: inside;
  margin-left: 0.5rem;
}
.bento-item li {
  margin-bottom: 0.5rem;
}
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }
.tall { grid-row: span 2; }
.glass-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.features {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 3rem;
}
.feature-card {
  background: var(--card);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
}
.feature-icon {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.feature-card p {
  color: var(--text-light);
  flex-grow: 1;
}
.pricing {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  color: white;
  margin-bottom: 3rem;
  overflow: hidden;
  padding: 3rem 2rem;
  position: relative;
}
.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  position: relative;
  z-index: 1;
}
.pricing-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 2rem;
}
.pricing-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-10px);
}
.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.pricing-features li {
  align-items: center;
  display: flex;
  margin-bottom: 0.5rem;
}
.pricing-features li::before {
  color: #4facfe;
  content: "✓";
  margin-right: 0.5rem;
}
.benefits-section,
.info-section {
  margin-bottom: 3rem;
}
.benefits-grid,
.info-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.info-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.benefit-card,
.info-card {
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
.info-card {
  text-align: center;
}
.benefit-card:hover,
.info-card:hover {
  transform: translateY(-5px);
}
.benefit-card h4 {
  align-items: center;
  color: var(--primary);
  display: flex;
  margin-bottom: 1rem;
}
.benefit-card h4 span {
  margin-right: 0.5rem;
}
.benefit-card ul {
  list-style-type: none;
}
.benefit-card li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.benefit-card li::before {
  color: var(--accent);
  content: "•";
  left: 0;
  position: absolute;
}
.info-card h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}
.form-container {
  --error: #e74c3c;
  --radius: 8px;
  --gap: 1rem;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: var(--text);
  font-family: Arial, sans-serif;
  margin: 2rem auto;
  max-width: 800px;
  padding: 2rem;
}
.flat-container {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
  padding: 1rem;
}
.steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 5rem;
}
.steps::before {
  background: #e0e0e0;
  content: "";
  height: 2px;
  position: absolute;
  top: 50%; 
  left: 0; 
  right: 0;
}
.step {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  height: 30px;
  position: relative;
  width: 30px;
  color: #888;
  font-weight: normal;
}
.step.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.step-label {
  color: #555;
  display: block;
  font-size: 0.75rem;
  left: 50%;
  position: absolute;
  top: 40px;
  transform: translateX(-50%);
  white-space: nowrap;
}
.form-page { display: none; }
.form-page.active { 
  display: block; 
  animation: fadeIn 0.3s ease; 
}
.grid {
  align-items: start;
  display: grid;
  gap: var(--gap);
  grid-template-columns: 200px 1fr;
  margin-bottom: var(--gap);
}
.grid label {
  font-weight: 600;
}
.grid label.required::after {
  color: var(--error);
  content: " *";
}
.grid input,
.grid select,
.grid textarea {
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-weight: normal;
  padding: 0.5rem;
  width: 100%;
}
.options {
  display: grid;
  gap: var(--gap);
  grid-column: 2;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  margin-top: 0.5rem;
}
.options div {
  align-items: start;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: auto 1fr;
}
.options input {
  margin-top: 0.2em;
}
.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.btn {
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  font-weight: normal;
  padding: 0.75rem 1.5rem;
}
.btn:disabled { 
  cursor: default; 
  opacity: 0.5; 
}
.info-dynamic {
  font-family: 'Roboto', sans-serif;  
  margin: 24px auto;  
  max-width: 880px;  
  padding: 0 12px;  
}
.info-dynamic h3 {
  color: #333;  
  font-size: 1.5rem;  
  letter-spacing: 1px;  
  margin-bottom: 16px;  
  text-align: center;  
  text-transform: uppercase;  
}
/* 🔥 FORCE SINGLE COLUMN FOR ALL SCREEN SIZES */
.cards {
  display: grid;  
  gap: 30px;
  grid-template-columns: 1fr; /* Always one column */
}
.column-title {
  color: #555;  
  font-size: 1.25rem;  
  margin-bottom: 32px;  
}

/* 🔧 Fix .info-item: remove inline height, ensure text fits */
.info-item {
  animation: slideIn 0.6s forwards;  
  border-radius: 8px;  
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);  
  color: #3B3B3B;  
  margin-bottom: 12px;  
  opacity: 0;  
  overflow: hidden;  
  padding: 16px;  
  position: relative;  
  transform: translateY(20px);
  font-weight: 450;
  display: flex;
  flex-direction: column;
  min-height: 120px; /* consistent minimum */
  height: auto !important; /* overrides inline style */
}

.clr1, .clr2, .clr3, .clr4 {
  background: linear-gradient(135deg, #6672C7, #6672b7);
}

.info-item h4 {
  font-size: 1.1rem;  
  letter-spacing: 0.5px;  
  margin: 0 0 8px;  
  color: yellow;
  flex-shrink: 0;
}

.info-item p {
  color: white;
  font-size: 0.95rem;  
  line-height: 1.5;  
  margin: 0;  
  flex-grow: 1;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.info-item::before {
  background: rgba(255,255,255,0.2);  
  content: '';  
  inset: 0;  
  position: absolute;  
  transform: scaleX(0);  
  transform-origin: left;  
  transition: transform 0.4s ease-in-out;  
}

.info-item:hover::before {
  transform: scaleX(1);  
}

.info-item:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);  
  cursor: pointer;  
}

.card-combined {
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  padding: 0rem;
}
.tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.tabs button {
  background: #ddd;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-size: 12px;
  padding: .6rem 1.2rem;
}
.tabs button.active {
  background: #667eea;
  color: #fff;
  font-size: 12px;
}
.tab-content {
  display: none;
  max-height: 277px;
  padding: 1rem;
}
.tab-content.active {
  display: block;
}
canvas {
  height: 260px;
  width: 100%;
}
.cursor-dot {
  background-color: var(--primary);
  border-radius: 50%;
  height: 5px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  width: 5px;
  z-index: 9999;
}
.cursor-circle {
  border: 2px solid var(--primary);
  border-radius: 50%;
  height: 30px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, transform 0.1s;
  width: 30px;
  z-index: 9998;
}

/* Remove redundant media queries for .cards — it's always 1 column */
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .span-4, 
  .span-6, 
  .span-8 {
    grid-column: span 6;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .steps {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
  .steps::before {
    display: none;
  }
  .step {
    border-radius: var(--radius);
    display: flex;
    height: auto;
    justify-content: flex-start;
    padding: 0.5rem;
    width: 100%;
  }
  .step-label {
    margin-left: 1rem;
    position: static;
    transform: none;
  }
  .form-container {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    padding: 2rem;	
  }
  /* No need to adjust .cards — already 1 column */
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  to { transform: translateY(0); opacity: 1; }  
}

.float { animation: float 6s ease-in-out infinite; }
.pulse { animation: pulse 4s ease-in-out infinite; }

/* Existing form styles (duplicated in original — kept as-is) */
.form-container {
  --primary: #667eea;
  --secondary: #764ba2;
  --accent: #4facfe;
  --text: #2c3e50;
  --text-light: #7f8c8d;
  --bg: #f0f4fa;
  --card: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --transition: all 0.3s ease;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  margin: 0 auto;
}
.form-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 1.8rem 2rem;
  border-radius: 20px 20px 0 0;
  text-align: center;
}
.form-header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.form-header p {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}
.steps-container {
  padding: 1rem 2rem;
  background: rgba(245, 247, 250, 0.9);
}
.steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
}
.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-weight: 700;
  transition: var(--transition);
  border: 2px solid #e0e0e0;
  font-size: 0.9rem;
}
.step.active .step-number {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 3px 8px rgba(102, 126, 234, 0.3);
}
.step-label {
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  transition: var(--transition);
  white-space: nowrap;
}
.step.active .step-label {
  color: var(--primary);
  font-weight: 700;
}
.progress-bar {
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  margin-top: 1.2rem;
  overflow: hidden;
}
.progress {
  height: 100%;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 3px;
  width: 20%;
  transition: width 0.4s ease;
}
#partnerForm {
  padding: 2rem;
}
.form-page {
  display: none;
}
.form-page.active {
  display: block;
  animation: fadeIn 0.4s ease;
}
.form-section {
  margin-bottom: 2rem;
}
.form-section:last-child {
  margin-bottom: 1rem;
}
.form-section-title {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  color: var(--primary);
  font-size: 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}
.form-section-title i {
  margin-right: 10px;
  font-size: 1.1rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-bottom: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
label {
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}
label.required::after {
  content: " *";
  color: #e74c3c;
  margin-left: 4px;
}
input, select, textarea {
  padding: 0.85rem 1.2rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}
textarea {
  min-height: 100px;
  resize: vertical;
}
.compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.option-item {
  display: flex;
  align-items: center;
  padding: 0.8rem;
  background: rgba(240, 244, 250, 0.5);
  border-radius: 8px;
  transition: var(--transition);
  font-size: 0.9rem;
}
.option-item:hover {
  background: rgba(240, 244, 250, 0.8);
  transform: translateY(-2px);
}
.option-item input {
  margin: 0 12px 0 0;
  width: auto;
}
.option-item label {
  margin: 0;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.9rem;
}
.file-upload input[type="file"] {
  padding: 0.8rem;
  border: 1px dashed #e2e8f0;
  background: rgba(240, 244, 250, 0.5);
  font-size: 0.9rem;
  width: 100%;
  border-radius: 8px;
}
.file-upload input[type="file"]:hover {
  border-color: #cbd5e0;
  background: rgba(240, 244, 250, 0.8);
}
.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.btn {
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 8px;
  background: var(--primary);
  color: white;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(102, 126, 234, 0.25);
}
.btn i {
  margin-right: 8px;
  font-size: 0.95rem;
}
.btn:hover {
  background: #5a6fd8;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);
}
.btn:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: rgba(102, 126, 234, 0.1);
}
.step-description {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
  padding: 0 1rem;
  line-height: 1.5;
}

h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 19px;
  font-weight: 600;
  font-family: 'Segoe UI', system-ui, sans-serif;
  margin-top: 15px;
}