/* ==================== DEMO PAGE SPECIFIC STYLES ==================== */
/* Base styles (variables, reset, navbar, buttons) are in global.css */

/* Demo-specific variables */
:root {
  --success: #10b981;
  --error: #dc2626;
}

/* Demo page body override - dark background */
body {
  color: var(--white);
  background: var(--dark);
  min-height: 100vh;
}

/* ==================== ANIMATED BACKGROUND ==================== */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.bg-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -100px;
  left: -100px;
  animation-delay: -5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(-30px, -20px) scale(1.02);
  }
}

.grid-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* ==================== MAIN CONTAINER ==================== */
.main-container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  width: 100%;
  gap: 60px;
  align-items: center;
}

/* ==================== INFO SECTION ==================== */
.info-section {
  padding-right: 40px;
  animation: fadeInUp 0.8s ease-out;
}

.info-section h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -1px;
}

.info-section h1 span {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ==================== FEATURES LIST ==================== */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(0, 199, 183, 0.1);
  border: 1px solid rgba(0, 199, 183, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: rgba(0, 199, 183, 0.2);
  transform: scale(1.05);
}

.feature-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--white);
}

.feature-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ==================== FORM SECTION ==================== */
.form-section {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 199, 183, 0.1);
  border: 1px solid rgba(0, 199, 183, 0.2);
  border-radius: 50px;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.form-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.form-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* ==================== FORM STYLES ==================== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--secondary);
}

.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
  pointer-events: none;
}

.form-input {
  width: 100%;
  padding: 16px 16px 16px 52px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--white);
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(0, 199, 183, 0.05);
  box-shadow: 0 0 0 4px rgba(0, 199, 183, 0.1);
}

.form-input:focus + i,
.input-wrapper:focus-within i {
  color: var(--secondary);
}

/* ==================== DEMO-SPECIFIC BUTTON OVERRIDES ==================== */
/* Base .btn styles are in global.css */

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-full {
  width: 100%;
}

/* ==================== SUCCESS & ERROR MESSAGES ==================== */
.success-message,
.error-message {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.success-message.show,
.error-message.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-light) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--dark);
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.error-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--error);
}

@keyframes successPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.success-message h3,
.error-message h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.success-message p,
.error-message p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

/* ==================== TRUST BADGES ==================== */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.trust-item i {
  color: var(--success);
}

/* ==================== FORM FOOTER ==================== */
.form-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-footer p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.form-footer a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.form-footer a:hover {
  color: var(--secondary-light);
}

/* ==================== ANIMATIONS ==================== */
/* @keyframes fadeInUp is in global.css */

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Note: Responsive styles are at the end of the file */

/* ==================== HERO DEMO SECTION ==================== */
.hero-demo {
  padding-top: 40px;
  padding-bottom: 40px;
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 199, 183, 0.15) 0%,
    transparent 70%
  );
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 82, 204, 0.2) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

/* Flying Planes with realistic up/down motion */
.demo-plane {
  position: absolute;
  opacity: 0.15;
}

.demo-plane svg {
  fill: var(--secondary);
  width: 40px;
  height: 40px;
}

.demo-plane.plane-1 {
  top: 25%;
  animation: flyWave1 25s linear infinite;
}

.demo-plane.plane-2 {
  top: 55%;
  animation: flyWave2 30s linear infinite;
  animation-delay: -10s;
}

.demo-plane.plane-2 svg {
  width: 35px;
  height: 35px;
}

.demo-plane.plane-3 {
  top: 75%;
  animation: flyWave3 35s linear infinite;
  animation-delay: -20s;
}

.demo-plane.plane-3 svg {
  width: 30px;
  height: 30px;
}

/* Plane 1: Climbs then descends */
@keyframes flyWave1 {
  0% {
    left: -10%;
    transform: translateY(0) rotate(75deg);
  }
  25% {
    transform: translateY(-80px) rotate(60deg);
  }
  50% {
    transform: translateY(0) rotate(90deg);
  }
  75% {
    transform: translateY(60px) rotate(105deg);
  }
  100% {
    left: 110%;
    transform: translateY(0) rotate(90deg);
  }
}

/* Plane 2: Descends then climbs */
@keyframes flyWave2 {
  0% {
    left: -10%;
    transform: translateY(0) rotate(95deg);
  }
  25% {
    transform: translateY(70px) rotate(110deg);
  }
  50% {
    transform: translateY(0) rotate(90deg);
  }
  75% {
    transform: translateY(-90px) rotate(65deg);
  }
  100% {
    left: 110%;
    transform: translateY(0) rotate(85deg);
  }
}

/* Plane 3: Gentle wave */
@keyframes flyWave3 {
  0% {
    left: -10%;
    transform: translateY(0) rotate(88deg);
  }
  33% {
    transform: translateY(-50px) rotate(75deg);
  }
  66% {
    transform: translateY(40px) rotate(100deg);
  }
  100% {
    left: 110%;
    transform: translateY(0) rotate(90deg);
  }
}

/* Clouds */
.demo-cloud {
  position: absolute;
  opacity: 0.06;
  animation: floatCloud 40s linear infinite;
}

.demo-cloud svg {
  fill: var(--white);
  width: 80px;
  height: 40px;
}

.demo-cloud.cloud-1 {
  top: 10%;
  animation-duration: 45s;
}

.demo-cloud.cloud-2 {
  top: 35%;
  animation-duration: 38s;
  animation-delay: -12s;
}

.demo-cloud.cloud-2 svg {
  width: 60px;
  height: 30px;
}

.demo-cloud.cloud-3 {
  top: 55%;
  animation-duration: 50s;
  animation-delay: -25s;
}

.demo-cloud.cloud-3 svg {
  width: 90px;
  height: 45px;
}

.demo-cloud.cloud-4 {
  top: 20%;
  animation-duration: 55s;
  animation-delay: -8s;
}

.demo-cloud.cloud-4 svg {
  width: 50px;
  height: 25px;
}

.demo-cloud.cloud-5 {
  top: 70%;
  animation-duration: 42s;
  animation-delay: -30s;
}

.demo-cloud.cloud-5 svg {
  width: 70px;
  height: 35px;
}

.demo-cloud.cloud-6 {
  top: 85%;
  animation-duration: 48s;
  animation-delay: -18s;
}

.demo-cloud.cloud-6 svg {
  width: 55px;
  height: 28px;
}

@keyframes floatCloud {
  0% {
    left: -15%;
  }
  100% {
    left: 110%;
  }
}

.demo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ==================== HERO CONTENT ==================== */
.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-content h1 .highlight {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content > p {
  font-size: 1.25rem;
  color: #94a3b8;
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.7;
}

/* ==================== FEATURE LIST (DEMO) ==================== */
.feature-list {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}

.feature-list .feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-list .feature-icon {
  padding: 0.75rem;
  border-radius: 12px;
  width: auto;
  height: auto;
  min-width: auto;
  border: none;
}

.feature-icon.blue {
  background: rgba(26, 101, 209, 0.2);
  color: #5ca3ff;
}

.feature-icon.green {
  background: rgba(0, 184, 170, 0.2);
  color: #00d4c4;
}

.feature-icon.orange {
  background: rgba(242, 120, 75, 0.2);
  color: #f2784b;
}

.feature-list .feature-item h3 {
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-list .feature-item p {
  color: #94a3b8;
  margin: 0;
}

/* ==================== DEMO FORM CARD ==================== */
.demo-form-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.demo-form-card .form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.demo-form-card .form-header h2 {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.demo-form-card .form-header p {
  color: #94a3b8;
}

/* Form inputs for demo - without icon padding */
.demo-form-card .form-input {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.2s;
}

.demo-form-card .form-input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

.form-label {
  display: block;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-label .required {
  color: #f2784b;
}

/* Submit button full width */
.demo-form-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 1rem;
}

/* Form footer link */
.demo-form-card .form-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: none;
}

.demo-form-card .form-footer p {
  color: #64748b;
  font-size: 0.9rem;
}

.demo-form-card .form-footer a {
  color: var(--primary-light);
  text-decoration: none;
}

/* ==================== SUCCESS & ERROR (DEMO) ==================== */
.demo-success-message,
.demo-error-message {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.demo-success-message .icon-circle {
  background: rgba(0, 184, 170, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #00d4c4;
}

.demo-error-message .icon-circle {
  background: rgba(242, 120, 75, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #f2784b;
}

.demo-success-message h3,
.demo-error-message h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.demo-success-message p,
.demo-error-message p {
  color: #94a3b8;
  margin-bottom: 2rem;
}

/* ==================== COMPREHENSIVE RESPONSIVE STYLES ==================== */

/* Large tablets and small laptops (1199px) */
@media (max-width: 1199px) {
  .demo-grid {
    gap: 3rem;
  }

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

  .hero-content > p {
    font-size: 1.1rem;
  }

  .demo-form-card {
    padding: 2rem;
  }
}

/* Tablets (1024px) */
@media (max-width: 1024px) {
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-demo {
    padding-top: 60px;
    padding-bottom: 4rem;
    min-height: auto;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badge {
    justify-content: center;
  }

  .feature-list {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-list .feature-item {
    text-align: left;
  }

  .hero-glow {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
  }

  .hero-glow-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
  }
}

/* Small tablets (768px) */
@media (max-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .demo-grid {
    gap: 2.5rem;
    max-width: 100%;
  }

  .hero-demo {
    padding-top: 50px;
    padding-bottom: 3rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-content > p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1rem;
  }

  .feature-list {
    margin-top: 2rem;
    gap: 1.5rem;
  }

  .feature-list .feature-icon {
    padding: 0.6rem;
  }

  .feature-list .feature-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .feature-list .feature-item h3 {
    font-size: 1rem;
  }

  .feature-list .feature-item p {
    font-size: 0.9rem;
  }

  .demo-form-card {
    padding: 1.75rem;
    border-radius: 20px;
  }

  .demo-form-card .form-header h2 {
    font-size: 1.5rem;
  }

  .demo-form-card .form-header {
    margin-bottom: 1.5rem;
  }

  /* Hide decorative elements on smaller screens */
  .demo-plane {
    opacity: 0.08;
  }

  .demo-cloud {
    opacity: 0.03;
  }
}

/* Mobile phones (576px) */
@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .demo-grid {
    gap: 2rem;
  }

  .hero-demo {
    padding-top: 40px;
    padding-bottom: 2.5rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
  }

  .hero-content > p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .feature-list {
    gap: 1.25rem;
    margin-top: 1.5rem;
  }

  .feature-list .feature-item {
    gap: 0.75rem;
  }

  .feature-list .feature-item h3 {
    font-size: 0.95rem;
  }

  .feature-list .feature-item p {
    font-size: 0.85rem;
  }

  .demo-form-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .demo-form-card .form-header h2 {
    font-size: 1.35rem;
  }

  .demo-form-card .form-header p {
    font-size: 0.9rem;
  }

  .form-label {
    font-size: 0.85rem;
  }

  .demo-form-card .form-input {
    padding: 0.7rem 0.9rem;
    font-size: 0.95rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .demo-form-card .btn-primary {
    padding: 0.9rem;
    font-size: 0.95rem;
  }

  .demo-form-card .form-footer {
    margin-top: 1.25rem;
  }

  .demo-form-card .form-footer p {
    font-size: 0.85rem;
  }

  /* Success/Error messages mobile */
  .demo-success-message .icon-circle,
  .demo-error-message .icon-circle {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .demo-success-message .icon-circle svg,
  .demo-error-message .icon-circle svg {
    width: 30px !important;
    height: 30px !important;
  }

  .demo-success-message h3,
  .demo-error-message h3 {
    font-size: 1.25rem;
  }

  .demo-success-message p,
  .demo-error-message p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  /* Hide planes on mobile */
  .demo-plane {
    display: none;
  }

  .demo-cloud {
    opacity: 0.02;
  }

  .hero-glow {
    width: 250px;
    height: 250px;
    top: -50px;
    right: -50px;
  }

  .hero-glow-2 {
    width: 200px;
    height: 200px;
    bottom: 0;
    left: -50px;
  }
}

/* Extra small phones (400px) */
@media (max-width: 400px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content > p {
    font-size: 0.9rem;
  }

  .feature-list {
    display: none;
  }

  .demo-form-card {
    padding: 1.25rem;
  }

  .demo-form-card .form-header h2 {
    font-size: 1.25rem;
  }
}

/* Landscape phones */
@media (max-height: 600px) and (orientation: landscape) {
  .hero-demo {
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: auto;
  }

  .demo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 100%;
  }

  .hero-content {
    text-align: left;
  }

  .hero-badge {
    justify-content: flex-start;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .hero-content > p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .feature-list {
    display: none;
  }

  .demo-form-card {
    padding: 1.25rem;
  }

  .demo-form-card .form-header {
    margin-bottom: 1rem;
  }

  .demo-form-card .form-header h2 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }

  .form-group {
    margin-bottom: 0.75rem;
  }

  .demo-form-card .btn-primary {
    padding: 0.75rem;
  }
}
