:root {
  --google-blue: #1a73e8;
  --google-red: #ea4335;
  --google-yellow: #fbbc05;
  --google-green: #34a853;
  --google-purple: #673ab7; /* Forms Purple */
  --google-purple-hover: #5e35b1;
  --google-purple-light: rgba(103, 58, 183, 0.08);
  --text-dark: #202124;
  --text-secondary: #5f6368;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-light: #e8eaed;
  --shadow-elevation-1: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
  --shadow-elevation-2: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
  --shadow-soft: 0 4px 24px rgba(60,64,67,0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Nav Bar */
.navbar {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  background: linear-gradient(135deg, #9575cd, var(--google-purple));
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(103, 58, 183, 0.3);
}

.logo-icon.small {
  width: 24px;
  height: 24px;
  font-size: 12px;
  border-radius: 6px;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--google-purple);
}

.nav-btn-secondary {
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 8px 18px;
  background: transparent;
  cursor: pointer;
}

.nav-btn-secondary:hover {
  background-color: var(--bg-light);
  border-color: #cbd5e1;
}

/* Hero Section */
.hero {
  background-color: var(--bg-white);
  padding: 120px 24px 80px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  max-width: 580px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Standard Buttons - Google Pill style */
.btn-primary {
  background-color: var(--google-purple);
  color: white;
  border: 0;
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(103, 58, 183, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background-color: var(--google-purple-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(103, 58, 183, 0.4);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--google-purple);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background-color: var(--google-purple-light);
  border-color: rgba(103, 58, 183, 0.3);
}

.btn-primary.full-width {
  width: 100%;
  justify-content: center;
}

/* Hero Mockup Graphic */
.hero-graphic {
  display: flex;
  justify-content: center;
}

.forms-mockup {
  background-color: #f0ebf8; /* Soft lilac workspace color */
  border-radius: 12px;
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  box-shadow: var(--shadow-elevation-2);
  border: 1px solid rgba(103, 58, 183, 0.15);
}

.forms-header-purple {
  background-color: var(--google-purple);
  height: 12px;
}

.forms-body {
  padding: 24px;
}

.mock-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.mock-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.mock-question-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: 16px;
  border: 1px solid var(--border-light);
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.mock-q-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.mock-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.mock-option:last-child {
  margin-bottom: 0;
}

.mock-option .radio {
  width: 16px;
  height: 16px;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.mock-option.checked {
  color: var(--google-purple);
  font-weight: 500;
}

.mock-option.checked .radio {
  border-color: var(--google-purple);
  background: radial-gradient(circle, var(--google-purple) 40%, transparent 50%);
}

/* Mock animations */
.animate-1 {
  animation: floatMock 4s ease-in-out infinite;
}
.animate-2 {
  animation: floatMock 4s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes floatMock {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
}

/* Features Section */
.features-section {
  padding: 80px 24px;
  background-color: var(--bg-light);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-blue { background-color: #e8f0fe; color: var(--google-blue); }
.icon-green { background-color: #e6f4ea; color: var(--google-green); }
.icon-yellow { background-color: #fef7e0; color: var(--google-yellow); }

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Demo Section */
.demo-section {
  padding: 80px 24px;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.demo-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  min-height: 320px;
}

/* Video Preview Embed */
.video-preview-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  background-color: #000;
}

.video-preview-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-group.col {
  flex: 1;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

input,
select {
  background-color: var(--bg-white);
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 15px;
  min-height: 42px;
  padding: 8px 14px;
  width: 100%;
  transition: all 0.2s ease;
}

input:focus,
select:focus {
  border-color: var(--google-purple);
  outline: none;
  box-shadow: 0 0 0 3px var(--google-purple-light);
}

input:disabled,
select:disabled,
textarea:disabled {
  background-color: #cbd5e1; /* Darkened for higher visual contrast */
  border-color: #94a3b8;
  color: #334155;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Demo Loading Overlay */
.demo-loader {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(248, 250, 252, 0.95);
  border-radius: 16px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
}

.google-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border-light);
  border-top-color: var(--google-purple);
  border-radius: 50%;
  animation: rotate 1s linear infinite;
  margin-bottom: 16px;
}

.loader-text {
  font-weight: 600;
  color: var(--text-dark);
  animation: pulse 1.5s infinite ease-in-out;
}

/* Output Preview Card */
.preview-card {
  background-color: #f0ebf8;
  border: 1px solid rgba(103, 58, 183, 0.15);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-elevation-1);
  overflow-y: auto;
  min-height: 320px;
}

@media (min-width: 901px) {
  .preview-card {
    height: 0;
    min-height: 100%;
  }
}

.preview-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  min-height: 280px;
  color: var(--text-secondary);
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.preview-empty-state h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.preview-empty-state p {
  font-size: 13px;
  max-width: 320px;
  margin: 0 auto;
}

/* Form Preview Styling */
.preview-form-content {
  animation: fadeIn 0.3s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.preview-header {
  background-color: var(--bg-white);
  border-radius: 8px;
  border: 1px solid var(--border-light);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.preview-purple-strip {
  background-color: var(--google-purple);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
}

.preview-header h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 4px;
}

.preview-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

.preview-q-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  border: 1px solid var(--border-light);
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.preview-q-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.preview-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.preview-option .bullet {
  width: 16px;
  height: 16px;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.preview-option.correct {
  color: var(--google-green);
  font-weight: 500;
}

.preview-option.correct .bullet {
  border-color: var(--google-green);
  background: radial-gradient(circle, var(--google-green) 40%, transparent 50%);
}

.preview-explanation {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-light);
  font-size: 12px;
  color: #047857;
  background-color: #ecfdf5;
  border-radius: 4px;
  padding: 8px 10px;
  line-height: 1.4;
}

/* Marketplace Section */
.marketplace-section {
  padding: 80px 24px;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

.marketplace-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marketplace-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #f1f5f9;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 24px;
  border: 1px solid #e2e8f0;
}

.marketplace-badge svg {
  color: #1a73e8;
}

.marketplace-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  text-align: left;
  width: 100%;
}

.m-feat {
  background-color: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.m-feat:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.m-feat-icon {
  font-size: 28px;
}

.m-feat h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.m-feat p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.marketplace-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.marketplace-btn {
  background-color: #1a73e8; /* Google Blue */
  color: white;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(26, 115, 232, 0.2);
}

.marketplace-btn:hover {
  background-color: #1557b0;
  transform: translateY(-1px);
}

.marketplace-info {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Navbar Buttons */
.nav-btn-primary {
  background-color: var(--google-purple);
  color: white !important;
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
  box-shadow: 0 2px 4px rgba(103, 58, 183, 0.2);
}

.nav-btn-primary:hover {
  background-color: #5e35b1;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 24px;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

/* Pricing Toggle Switch */
.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.toggle-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.toggle-label.active {
  color: var(--google-purple);
}

.discount-badge {
  background-color: #ecfdf5;
  color: #059669;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 4px;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: .3s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

input:checked + .slider {
  background-color: var(--google-purple);
}

input:checked + .slider:before {
  transform: translateX(22px);
}

/* Enterprise Banner */
.pricing-enterprise-banner {
  background-color: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 28px 40px;
  max-width: 1100px;
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.enterprise-icon {
  font-size: 40px;
}

.enterprise-info {
  flex-grow: 1;
}

.enterprise-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.enterprise-info p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.enterprise-btn {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  white-space: nowrap;
  text-decoration: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 48px auto 0;
  align-items: stretch;
}

.price-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.price-card.popular {
  border-color: var(--google-purple);
  box-shadow: 0 8px 24px rgba(103, 58, 183, 0.12);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--google-purple);
  color: white;
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.plan-price {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.plan-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.plan-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  min-height: 38px;
}

.plan-divider {
  border: 0;
  border-top: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.plan-features li {
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plan-features li span {
  color: var(--google-purple);
  font-weight: 700;
}

.plan-features li strong {
  font-weight: 600;
}

.plan-btn {
  text-align: center;
  font-size: 14px;
  padding: 12px;
  border-radius: 100px;
  width: 100%;
}

/* FAQ Section */
.faq-section {
  padding: 80px 24px;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

.faq-accordion {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.faq-toggle {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: transform 0.2s ease;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: all 0.3s cubic-bezier(0, 1, 0, 1);
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.active {
  border-color: rgba(103, 58, 183, 0.3);
  box-shadow: 0 4px 12px rgba(103, 58, 183, 0.04);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--google-purple);
}

.faq-item.active .faq-body {
  max-height: 500px;
  padding: 0 24px 20px;
  transition: all 0.3s ease-out;
}

/* Support Section */
.support-section {
  padding: 80px 24px;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.support-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.support-form {
  margin-top: 32px;
  text-align: left;
}

.support-form textarea {
  background-color: var(--bg-white);
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  width: 100%;
  resize: vertical;
  transition: all 0.2s ease;
}

.support-form textarea:focus {
  border-color: var(--google-purple);
  outline: none;
  box-shadow: 0 0 0 3px var(--google-purple-light);
}

.support-submit-btn {
  margin-top: 24px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
}

/* Footer Rebrand */
.footer {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: 60px 24px 40px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.footer-brand .copyright {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-link-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.footer-link-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}

.footer-link-col a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link-col a:hover {
  color: var(--google-purple);
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background-color: #0f172a;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100px);
    opacity: 0;
  }
}

/* Common animations */
@keyframes rotate {
  100% { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Responsive details */
@media(max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .demo-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 24px;
    margin: 32px auto 0;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-link-col {
    align-items: center;
  }
  .support-card {
    padding: 32px 20px;
  }
  .pricing-enterprise-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }
}

/* --- New GPT Forms Additions --- */

/* Source panels */
.source-panel {
  display: none;
}
.source-panel.active {
  display: block;
}
.demo-textarea {
  resize: vertical;
  background-color: var(--bg-white);
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 14px;
  padding: 12px;
  width: 100%;
}

/* Source tabs */
.source-tabs {
  display: flex;
  gap: 8px;
  margin: 0 auto 24px;
  justify-content: center;
  max-width: 1000px;
  overflow-x: auto;
  padding: 4px;
}
.source-tab {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.source-tab:hover {
  background-color: var(--google-purple-light);
  border-color: rgba(103, 58, 183, 0.2);
}
.source-tab.active {
  background-color: var(--google-purple);
  color: white;
  border-color: var(--google-purple);
  box-shadow: 0 2px 8px rgba(103, 58, 183, 0.3);
}

/* Comparison Section */
.comparison-section {
  padding: 80px 24px;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
}
.comparison-table-wrapper {
  max-width: 900px;
  margin: 40px auto 0;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.comparison-table th, 
.comparison-table td {
  padding: 16px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
}
.comparison-table th {
  background-color: #f8fafc;
  color: var(--text-dark);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}
.comparison-table td:nth-child(2) {
  color: var(--text-secondary);
}
.comparison-table td:nth-child(3) {
  font-weight: 500;
  color: var(--google-purple);
}
