:root {
  --primary-blue: #004a97;
  --dark-blue: #193c74;
  --accent-orange: #f97316;
  --light-gray: #f8f8f8;
  --text-dark: #333333;
  --text-light: #ffffff;
  --paragraphblue: #4b5563;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  color: var(--text-dark);
  line-height: 1.6;
  background-color: white;
}

header {
  background-color: white;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-blue);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 30px;
  margin-left: auto;
  margin-right: 40px;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--accent-orange);
}

.btn {
  display: inline-block;
  padding: 12px 48px;
  background-color: var(--accent-orange);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  border: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 16px;
}

.btn:hover {
  background-color: #d06526;
}

.hero {
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 80px 0;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.beta-tag {
  display: inline-block;
  background-color: var(--accent-orange);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 25px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 48px;
  width: 80%;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  width: 80%;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  transform: rotate(2deg);
}

.message-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.message-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
  font-size: 12px;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.messagecontent {
  font-weight: 600;
  color: var(--text-dark);
}

.message-content {
  color: var(--text-dark);
  margin-bottom: 15px;
}

.bot-tag {
  background-color: #f0f0f0;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  margin-left: 5px;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.action-btn {
  padding: 7px 19px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
}

.formalize-btn {
  background-color: #3c8c64;
  color: white;
  border: none;
  cursor: pointer;
}

.ignore-btn {
  background-color: #e56565;
  color: white;
  border: none;
  cursor: pointer;
}

.features {
  padding: 24px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 12px;
  font-weight: 700;
  text-align: center;
}

.section-title2 {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 12px;
  margin-top: 36px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #555;
  line-height: 1.5;
}

.features-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.features-image {
  flex: 1;
  max-height: 570px;
  max-width: 650px;
  display: flex;
  align-items: center;
}

.features-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card p {
  text-align: center;
  color: var(--paragraphblue);
  font-size: 16px;
  max-width: 85%;
  padding-top: 4px;
  margin: 0 auto;
}

.feature-card h3 {
  text-align: center;
  font-size: 20px;
}

.features-content {
  flex: 1;
  max-width: 500px;
}

.feature-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 18px 24px 11px;
  margin-bottom: 30px;
}

.benefit-title {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.feature-item,
.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.feature-icon,
.benefit-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 16px;
  color: var(--paragraphblue);
}

/* HOW IT WORKS SECTION */

.how-it-works {
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 20px 0;
  text-align: center;
}

.how-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.how-subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #e0ecfa;
  line-height: 1.5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.howitworks-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.howitworks-icon img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  padding: 4px;
  box-sizing: border-box;
}

.feature-card {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 32px 16px;
  text-align: left;
  color: #333;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateZ(0); /* GPU boost */
}

.feature-card:hover {
  transform: scale(1.035);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.center-btn {
  margin-top: 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1rem;
  width: 100%;
}

.commitbot-intro-section {
  text-align: center;
  margin-bottom: 1rem;
}

.commitbot-main-heading {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.user-types-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.user-profile-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem 1rem 1.4rem;
  text-align: center;
  border: 1.3px solid #e5edf5;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.user-profile-card:hover {
  transform: scale(1.035);
}

.round-icon-container {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0.3rem;
}

.round-icon-container svg {
  width: 40px;
  height: 40px;
  fill: var(--primary-blue);
}

.user-type-heading {
  font-size: 1.25rem;
  color: var(--primary-blue);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.user-type-description {
  text-align: center;
  color: var(--paragraphblue);
  font-size: 16px;
  max-width: 95%;
  padding-top: 4px;
  margin: 0 auto;
}

.beta-signup-container {
  background-color: #f1f4f9;
  border-radius: 0.5rem;
  padding: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 72px;
}

.beta-signup-text {
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 24px;
  flex: 1;
}

.beta-signup-heading {
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.beta-signup-subtext {
  color: var(--paragraph-blue);
  font-size: 18px;
}

.beta-signup-button {
  background-color: var(--accent-orange);
  color: var(--text-light);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.beta-signup-button:hover {
  background-color: #d56a25;
}

.beta-section {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
}

.beta-header {
  text-align: center;
  margin-bottom: 30px;
}

.beta-tag {
  display: inline-block;
  background-color: var(--accent-orange);
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.beta-title {
  color: var(--primary-blue);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.beta-subtitle {
  color: var(--paragraphblue);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.beta-content {
  display: flex;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-top: 30px;
}

.beta-form {
  flex: 2;
  padding: 40px;
}

.form-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 450;
  color: #1f2937;
}

input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}

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

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

.headerlogo img {
  width: 50%;
  height: auto;
}

.submit-btn {
  background-color: var(--accent-orange);
  color: var(--text-light);
  border: none;
  border-radius: 6px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #d06a2d;
}

.form-note {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-top: 20px;
}

.benefits-panel {
  flex: 1;
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 40px;
  min-width: 360px;
}

.benefits-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.benefit-icon {
  flex-shrink: 0;
  margin-right: 15px;
  width: 24px;
  height: 24px;
}

.benefit-text {
  font-size: 16px;
  line-height: 1.5;
}

.container2 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 40px;
  background-color: #fff;
  border-radius: 8px;
}

.section-title {
  text-align: center;
  color: #1a4789;
  margin-bottom: 16px;
  font-size: 32px;
}

.subtitle {
  text-align: center;
  color: #666;
  font-size: 18px;
  margin-bottom: 40px;
}

.faq-list {
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #1a4789;
}

.chevron {
  transition: transform 0.3s ease;
}

.chevron svg {
  width: 20px;
  height: 20px;
  fill: #666;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(-10px);
}

.faq-answer p {
  padding: 0 0 16px 0;
  color: var(--paragraphblue);
  font-size: 16px;
}

.faq-item.active .faq-question {
  color: #1a4789;
}

.faq-item.active .chevron {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.emailus {
  text-align: center;
  margin-top: 40px;
  color: #666;
  font-size: 16px;
}

.email {
  color: #1a4789;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.email:hover {
  color: #0d2f5e;
  text-decoration: underline;
}

footer {
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
  margin-bottom: 1.5rem;
}

.footer-brand h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-brand p {
  font-size: 16px;
  line-height: 1.5;
  max-width: 400px;
}

.footer-nav {
  display: flex;
  flex: 2;
  justify-content: flex-end;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-nav-section {
  min-width: 120px;
}

.footer-nav-section h3 {
  font-size: 16px;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-nav-section ul {
  list-style: none;
}

.footer-nav-section ul li {
  margin-bottom: 0.2rem;
}

.footer-nav-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.2s;
}

.footer-nav-section ul li a:hover {
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--text-light);
}

.footer-copyright {
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--text-light);
  font-size: 1.2rem;
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 0.8;
}

.responsive-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

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

/* Hamburger icon base */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1201;
  margin-left: auto;
  transition: z-index 0.2s;
}
.hamburger span {
  width: 28px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: 2px;
  display: block;
  transition: transform 0.45s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.32s,
    background 0.22s;
}

/* Hamburger to X animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (min-width: 769px) {
  .slideout-menu {
    display: none !important;
  }
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
  }
  .hamburger {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .headerlogo img {
    width: 55%;
    height: auto;
  }
  .hamburger {
    display: flex;
    margin-left: auto;
  }
  .nav-menu {
    display: none;
  }
  .slideout-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.11);
    padding: 100px 30px 30px 30px;
    gap: 24px;
    z-index: 1200;
    transition: right 0.7s cubic-bezier(0.75, 0.01, 0.33, 1.06); /* slower & more “glide” */
    align-items: flex-start;
  }
  .slideout-menu.open {
    right: 0;
  }
  .slideout-menu .nav-link {
    font-size: 18px;
    padding: 0 0 10px 0;
    color: var(--primary-blue);
  }
  .slideout-menu .btn.nav-cta {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    margin-top: 18px;
    font-size: 16px;
  }
  .menu-backdrop {
    display: none;
  }
  .menu-backdrop.open {
    display: block;
    position: fixed;
    z-index: 1199;
    inset: 0;
    background: rgba(0, 0, 0, 0.17);
    animation: fadeIn 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px; /* adjust to match your header height */
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    z-index: 1000;
    padding: 24px 32px 24px 32px;
  }
  .nav-menu.open {
    display: flex;
  }
}

/* General Responsive Adjustments */
@media (max-width: 1200px) {
  .btn {
    padding: 12px 24px;
    white-space: nowrap;
  }

  .container {
    padding: 12px 48px;
  }

  .container2 {
    padding: 48px;
  }

  .nav-link {
    font-size: 16px;
    white-space: nowrap;
  }

  .hero-container {
    gap: 20px;
  }

  .hero h1 {
    font-size: 40px;
    width: 90%;
  }
}

/* Tablet Responsive Adjustments */
@media (max-width: 992px) {
  .nav-menu {
    gap: 20px;
    margin-right: 20px;
  }

  .hero h1 {
    font-size: 36px;
    width: 100%;
  }

  .hero p {
    width: 100%;
  }

  .section-title,
  .section-title2,
  .how-title {
    font-size: 32px;
  }

  .features-container {
    flex-direction: column;
  }

  .features-image,
  .features-content {
    max-width: 100%;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .beta-content {
    flex-direction: column;
  }

  .benefits-panel {
    min-width: auto;
  }
}

/* Mobile Landscape Adjustments */
@media (max-width: 768px) {

  .nav-menu {
    order: 3;
    width: 100%;
    margin: 15px 0;
    justify-content: space-between;
    padding: 0;
    overflow-x: auto;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-container {
    flex-direction: column;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 30px;
  }

  .hero h1,
  .hero p {
    width: 100%;
    text-align: center;
  }

  .hero-image {
    max-width: 100%;
  }

  .features {
    padding: 40px 0;
  }

  .section-title,
  .section-title2,
  .how-title {
    font-size: 28px;
  }

  .section-subtitle,
  .how-subtitle {
    font-size: 16px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .user-types-container {
    grid-template-columns: 1fr;
  }

  .beta-signup-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .beta-signup-text {
    margin-left: 0;
  }

  .footer-nav {
    gap: 2rem;
  }
}

/* Small Mobile Adjustments */
@media (max-width: 576px) {
  .container2 {
    padding: 0 80px;
  }

  .nav-menu {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-link {
    padding: 5px;
  }

  .beta-tag {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .message-card {
    padding: 15px;
  }

  .action-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .action-btn {
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 20px;
  }

  .beta-form,
  .benefits-panel {
    padding: 20px;
  }

  .form-title,
  .benefits-title {
    font-size: 20px;
  }

  .beta-title {
    font-size: 24px;
  }

  .faq-question {
    font-size: 16px;
    padding: 15px 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .footer-nav-section {
    min-width: 40%;
    margin-bottom: 20px;
  }
}

/* Extra Small Devices */
@media (max-width: 375px) {
  .headerlogo img {
    width: 50%;
  }

  .nav-container {
    justify-content: center;
    gap: 10px;
  }

  .nav-menu {
    padding-left: 0;
    padding-right: 0;
  }

  .btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .section-title,
  .section-title2,
  .how-title {
    font-size: 22px;
  }
}

@media (max-width: 1000px) and (min-width: 768px) {
  .headerlogo img {
    width: 140px;
    max-width: none;
  }
}

/* Additional Fixes for Specific Components */ /* Fix for message card on small screens */
@media (max-width: 480px) {
  .hero-image {
    transform: none;
  }

  .message-card {
    max-width: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
}

/* Landscape mode adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 20px 0;
  }

  .hero-container {
    flex-direction: row;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

/* iPad & Tablets in portrait */
@media (min-width: 768px) and (max-width: 991px) {
  .feature-card {
    padding: 20px 15px;
  }

  .features-grid {
    gap: 15px;
  }

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

  .footer-nav {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-nav {
    justify-content: flex-start;
    margin-top: 1.5rem;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .footer-social {
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .beta-content {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .benefits-panel {
    min-width: auto;
  }
}
