/* ====================================
   RALKTECH LANDING PAGE - STYLES
   Versión Base: HTML/CSS/JS Puro
==================================== */

/* ====================================
   1. CSS RESET & ROOT VARIABLES
==================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --color-primary: #fe2500;
  --color-primary-dark: #e02200;
  --color-secondary: #010643;
  --color-dark: #2e2e2e;
  --color-dark-alt: #343434;
  --color-gray: #e1e1e1;
  --color-gray-light: #dbdbdb;
  --color-gray-lighter: #f6f6f6;
  --color-white: #ffffff;
  --color-blue: #0055ff;
  --color-text-muted: rgba(46, 46, 46, 0.7);

  /* Gradients */
  --gradient-primary: linear-gradient(90deg, rgba(0, 71, 166, 1) 0%, rgba(254, 37, 0, 1) 100%);
  --gradient-footer: linear-gradient(90deg, #fe2500 0%, #8b1538 50%, #1a1a3e 100%);

  /* Fonts */
  --font-primary: 'Figtree', 'Montserrat', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;

  /* Shadows */
  --shadow-01: 4px 4px 20px 4px rgba(17, 16, 16, 0.05);
  --shadow-menu: 0 10px 40px rgba(0, 0, 0, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input {
  font-family: inherit;
}

/* ====================================
   2. TYPOGRAPHY
==================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-dark {
  color: var(--color-dark);
}

.text-white {
  color: var(--color-white);
}

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

.text-justify {
  text-align: justify;
}

/* ====================================
   3. LAYOUT UTILITIES
==================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

/* ====================================
   4. BUTTONS
==================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  height: 76px;
  padding: 0 2rem;
}

.btn-md {
  height: 60px;
  padding: 0 1.75rem;
}

/* ====================================
   5. GRADIENT DIVIDERS
==================================== */
.gradient-divider {
  width: 100%;
  height: 12px;
  background: var(--gradient-primary);
}

.divider-line {
  width: 50px;
  height: 2px;
  background-color: var(--color-blue);
  border-radius: 2px;
}

.divider-line-white {
  background-color: var(--color-white);
}

/* ====================================
   6. HEADER & NAVIGATION
==================================== */
.header {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 100;
}

.menu-toggle {
  cursor: pointer;
  padding: 10px;
  transition: opacity var(--transition-fast);
}

.menu-toggle:hover {
  opacity: 0.8;
}

.menu-toggle img {
  width: 30px;
  height: 23px;
}

/* Side Menu Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--color-secondary);
  box-shadow: var(--shadow-menu);
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.side-menu.active {
  transform: translateX(0);
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-header h2 {
  color: var(--color-white);
  font-size: 1.5rem;
}

.menu-close {
  color: var(--color-white);
  padding: 0.5rem;
  border-radius: 8px;
  transition: background-color var(--transition-fast);
}

.menu-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.menu-close svg {
  width: 24px;
  height: 24px;
}

.menu-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1rem;
}

.menu-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-nav a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.menu-nav a:hover {
  background-color: var(--color-primary);
  transform: translateX(4px);
}

.menu-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.menu-footer img {
  width: 180px;
  margin: 0 auto;
  opacity: 0.8;
}

/* ====================================
   7. HERO SECTION
==================================== */
.hero {
  position: relative;
  min-height: 885px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  max-width: 932px;
  padding: 5rem 2rem;
  margin-left: 15%;
}

.hero-logo {
  max-width: 515px;
  margin-bottom: 2rem;
}

.hero-divider {
  width: 50px;
  height: 2px;
  background-color: #e6eeff;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-secondary);
  font-size: 3.5rem;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1rem;
  color: #e6eeff;
  max-width: 707px;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Mobile adjustments for Hero Content */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    /* Adjust height for mobile */
    align-items: flex-end;
    /* Push content to bottom/center if needed, or stick to center */
    padding-bottom: 2rem;
  }

  .hero-content {
    margin-left: 0;
    max-width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 90%);
    /* Improve readability over image */
  }

  .hero-logo {
    max-width: 280px;
    /* Smaller logo for mobile */
    margin: 0 auto 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
    /* Smaller title */
  }

  .hero-divider {
    margin: 0 auto 2rem;
    /* Center divider */
  }

  .hero-buttons {
    justify-content: center;
    /* Center buttons */
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    /* Slightly larger text for readability on small screens */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Shadow for better contrast */
  }
}

/* ====================================
   8. ALLIANCE SECTION (¿Por qué la Alianza?)
==================================== */
.alliance-section {
  background-color: var(--color-gray);
  padding: 5rem 0;
}

.alliance-section .divider-line {
  margin: 0 auto 2rem;
}

.alliance-section h2 {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.alliance-description {
  max-width: 1407px;
  margin: 0 auto 4rem;
  text-align: center;
}

.alliance-description p {
  font-size: 1.875rem;
  line-height: 2.5rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.alliance-description p.highlight {
  font-weight: 700;
  color: var(--color-secondary);
}

.alliance-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.alliance-logos img {
  height: auto;
  object-fit: contain;
}

/* ====================================
   9. PARTNERS SECTION (Aliados por transformación)
==================================== */
.partners-section {
  padding: 5rem 0;
}

.partners-section h2 {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 4rem;
}

.partner-item {
  display: grid;
  grid-template-columns: minmax(250px, 350px) 100px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

.partner-item:last-child {
  margin-bottom: 0;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.partner-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-arrow img {
  width: 70px;
  height: 70px;
}

.partner-description {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
}

/* Gradient Banner */
.gradient-banner {
  background: var(--gradient-footer);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Mobile adjustments for Partners Section */
@media (max-width: 900px) {
  .partner-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .partner-logo {
    justify-content: center;
  }

  .partner-arrow {
    transform: rotate(90deg);
  }

  .partner-arrow img {
    width: 50px;
    height: 50px;
  }

  .partner-description {
    font-size: 1.25rem;
  }

  /* Ensure content doesn't touch edges in Aliados section on mobile */
  .partners-section .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.gradient-banner span {
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
}

.gradient-banner img {
  width: 52px;
  height: 53px;
}

/* ====================================
   10. PARTNER LOGOS GRID
==================================== */
.partner-logos-section {
  background-color: var(--color-white);
  padding: 3rem 0;
}

.partner-logos-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 2rem;
  max-width: 1275px;
  margin: 0 auto;
}

.partner-logos-grid img {
  max-height: 150px;
  object-fit: contain;
}

/* ====================================
   11. ROADMAP SECTION (Ruta transformación)
==================================== */
.roadmap-section {
  padding: 3rem 0;
  text-align: center;
}

.roadmap-section h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

.roadmap-track {
  width: 100%;
  margin: 0 auto 4rem;
  text-align: center;
}

.roadmap-track img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.roadmap-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
}

.roadmap-steps img {
  max-width: 100%;
  height: auto;
}

.roadmap-steps .center-step {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

/* ====================================
   12. ECOSYSTEM SECTION
==================================== */
.ecosystem-section {
  background: linear-gradient(to bottom, var(--color-white), #f5f5f5);
  padding: 3rem 0;
}

.ecosystem-section h2 {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.ecosystem-intro {
  max-width: 1238px;
  margin: 0 auto 3rem;
  text-align: center;
}

.ecosystem-intro p {
  font-size: 1.5rem;
  line-height: 1.6;
}

.ecosystem-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.ecosystem-content p {
  font-size: 1.25rem;
  text-align: justify;
  line-height: 1.8;
}

.ecosystem-image {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.ecosystem-image img {
  max-width: 600px;
}

.ecosystem-cta {
  text-align: center;
  padding: 2rem 0;
}

.ecosystem-cta p {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 6px;
}

/* ====================================
   13. CONTACT SECTION
==================================== */
.contact-section {
  background-color: var(--color-secondary);
  padding: 3rem 0;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--gradient-primary);
}

.contact-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.contact-header h2 {
  color: var(--color-white);
  font-size: 1.125rem;
  letter-spacing: 1.44px;
  text-transform: uppercase;
}

.contact-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.contact-photo {
  width: 335px;
  height: 335px;
  border-radius: 50%;
  background-color: var(--color-white);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.contact-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.1) translateY(30px);
}

.contact-info h3 {
  font-size: 3.5rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact-item-label {
  font-weight: 600;
  color: var(--color-white);
  opacity: 0.9;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.contact-item-value {
  font-weight: 600;
  color: var(--color-white);
  font-size: 1.25rem;
}

.contact-cta {
  text-align: center;
}

/* ====================================
   14. REGISTRATION FORM
==================================== */
.registration-section {
  background-color: var(--color-dark-alt);
  padding: 2.5rem 0;
}

/* Mobile margin fix for registration form */
@media (max-width: 768px) {
  .registration-section h2 {
    padding: 0 1.5rem;
  }
}

.registration-section h2 {
  color: var(--color-white);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 0;
}

.form-section {
  background-color: #d4d4d4;
  padding: 5rem 0;
}

/* Mobile margin fix for form container */
@media (max-width: 768px) {
  .form-section {
    padding: 3rem 1.5rem;
  }
}

.registration-form {
  max-width: 601px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: #ff0004;
  margin-left: 0.25rem;
}

.form-group input {
  width: 100%;
  height: 39px;
  padding: 0 1rem;
  background-color: #dbdbdb;
  border: none;
  border-radius: 47.5px;
  box-shadow: var(--shadow-01);
  font-size: 1rem;
}

.form-group input:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.services-card {
  background-color: var(--color-white);
  border-radius: 19px;
  box-shadow: var(--shadow-01);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.services-card h3 {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.services-card .required {
  color: #ff0000;
  margin-left: 0.25rem;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.checkbox-item label {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-dark);
  cursor: pointer;
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.form-message.success {
  background-color: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
}

.form-message.error {
  background-color: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

.form-submit {
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
}

/* ====================================
   15. FOOTER
==================================== */
.footer {
  background-color: var(--color-dark);
  padding: 2.5rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer h3 {
  color: var(--color-gray-lighter);
  font-size: 1rem;
  font-weight: 700;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: var(--color-gray-lighter);
  border-radius: 50%;
  transition: all var(--transition-normal);
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.social-link svg {
  width: 32px;
  height: 32px;
}

.social-link.website:hover {
  color: #60a5fa;
}

.social-link.linkedin:hover {
  color: #0077b5;
}

.social-link.facebook:hover {
  color: #1877f2;
}

.social-link.instagram:hover {
  color: #e4405f;
}

.social-link.youtube:hover {
  color: #ff0000;
}

.footer-divider {
  width: 100%;
  max-width: 1320px;
  height: 1px;
  background-color: var(--color-gray-lighter);
  opacity: 0.5;
}

.footer-copyright {
  color: var(--color-white);
  font-size: 1rem;
  text-align: center;
}

/* ====================================
   16. RESPONSIVE DESIGN
==================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero-content {
    margin-left: 5%;
  }

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

  .partner-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .partner-logo {
    justify-content: center;
  }

  .partner-arrow {
    display: none;
  }

  .ecosystem-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-item {
    justify-content: center;
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 600px;
  }

  .hero-content {
    margin-left: 0;
    text-align: center;
  }

  .hero-logo {
    margin: 0 auto 1.5rem;
  }

  .hero-divider {
    margin: 0 auto 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

  .btn-lg {
    height: 60px;
    font-size: 1rem;
  }

  .alliance-section h2,
  .partners-section h2,
  .roadmap-section h2,
  .ecosystem-section h2 {
    font-size: 2rem;
  }

  .alliance-description p {
    font-size: 1.25rem;
  }

  .gradient-banner span {
    font-size: 1.5rem;
  }

  .partner-logos-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
    justify-items: center;
    flex-wrap: wrap !important;
  }

  .partner-logos-grid img {
    max-height: 120px;
  }

  .roadmap-steps {
    grid-template-columns: 1fr;
  }

  .contact-photo {
    width: 250px;
    height: 250px;
  }

  .contact-info h3 {
    font-size: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .registration-section h2 {
    font-size: 2rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .side-menu {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
  }

  .gradient-banner {
    gap: 1rem;
    padding: 1rem;
  }

  .gradient-banner span {
    font-size: 1.25rem;
  }

  .gradient-banner img {
    width: 30px;
    height: 30px;
  }
}

/* ====================================
   RESPONSIVE - COMPREHENSIVE FIX FOR ≤400px WIDTH  
   Covers 350px-400px mobile devices
==================================== */
@media (max-width: 400px) {

  /* CRITICAL: Prevent horizontal overflow on html/body */
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  * {
    box-sizing: border-box;
  }

  /* Global container fix - reduce padding further */
  .container {
    padding: 0 10px !important;
    max-width: 100% !important;
    width: 100% !important;
    min-width: auto !important;
  }

  /* Force all sections to fill viewport width */
  section {
    min-width: 100% !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  /* CRITICAL FIX #1: Roadmap/Ecosystem Track Image (was 600px) */
  .ecosystem-image img,
  .roadmap-track img,
  .track-image,
  img[src*="image-gen"] {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .ecosystem-image,
  .roadmap-track {
    max-width: 100% !important;
    width: 100% !important;
  }

  /* CRITICAL FIX #2: Partners Section (was 400px min) */
  .partner-item,
  .partner-logo,
  .partner-description,
  .partners-container {
    min-width: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Partner Logos - 1 Column for very small screens */
  .partner-logos-grid {
    grid-template-columns: 1fr !important;
  }


  .partners-section,
  .partners-section .container {
    min-width: 100% !important;
    width: 100% !important;
  }

  /* CRITICAL FIX #3: Registration Form (was 452px) */
  .registration-form,
  .form-group input,
  .form-group {
    max-width: 100% !important;
    width: 100% !important;
  }

  .registration-section,
  .form-section {
    width: 100% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  /* Contact Display (was 335px) */
  .contact-display {
    width: 100% !important;
    max-width: 100%;
  }

  /* Alliance Section */
  .alliance-section,
  .alliance-section .container {
    min-width: 100% !important;
    width: 100% !important;
  }

  .alliance-description {
    max-width: 100%;
    width: 100%;
  }

  /* Ecosystem Section */
  .ecosystem-section,
  .ecosystem-section .container {
    width: 100% !important;
  }

  /* Roadmap Section */
  .roadmap-section,
  .roadmap-section .container {
    width: 100% !important;
  }

  /* Reduce font sizes for better fit */
  h1 {
    font-size: 1.75rem !important;
  }

  h2 {
    font-size: 1.5rem !important;
  }

  h3 {
    font-size: 1.25rem !important;
  }

  /* Button adjustments */
  .btn {
    padding: 0.6rem 1rem !important;
    font-size: 0.9rem !important;
  }

  /* Hero logo  */
  .hero-logo {
    max-width: 280px !important;
  }
}