@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@600;700&display=swap');

:root {
  --primary:       #069494;
  --primary-dark:  #057a7a;
  --primary-light: #0ab5b5;
  --accent:        #069494;        
  --accent-dark:   #057a7a;
  --success:       #069494;
  --warning:       #e5a100;
  --danger:        #d44;
  --dark:          #000000;
  --dark-2:        #0a0a0a;
  --mid:           #666666;
  --muted:         #999999;
  --border:        #e8e8e8;
  --bg:            #fafaf9;
  --white:         #ffffff;
  --surface-2:     #f0efed;
  --card-shadow:   0 1px 3px rgba(0,0,0,0.04);
  --card-shadow-hover: 0 12px 40px rgba(0,0,0,0.08);
  --radius:        0px;
  --radius-lg:     0px;
  --font:          'Plus Jakarta Sans', sans-serif;
  --font-serif:    'Fraunces', serif;
  --font-mono:     'Space Grotesk', sans-serif;
  --transition:    0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --text:          #1a1a1a;
}




[data-theme="dark"] {
  --bg:            #0d1117;
  --white:         #161b22;
  --surface-2:     #1c2128;
  --dark:          #e6edf3;
  --dark-2:        #e6edf3;
  --text:          #e6edf3;
  --mid:           #8b949e;
  --muted:         #8b949e;
  --border:        #30363d;
  --primary:       #0fbfbf;
  --primary-dark:  #0da3a3;
  --primary-light: #14d4d4;
  --accent:        #0fbfbf;
  --accent-dark:   #0da3a3;
  --success:       #0fbfbf;
  --warning:       #f0b429;
  --danger:        #f85149;
  --card-shadow:      0 1px 3px rgba(0,0,0,0.3);
  --card-shadow-hover: 0 12px 40px rgba(0,0,0,0.4);
}


html.crx-theme-switching *,
html.crx-theme-switching *::before,
html.crx-theme-switching *::after {
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
}

[data-theme="dark"] .crx-navbar,
[data-theme="dark"] .crx-navbar-solid {
  background: #161b22 !important;
  border-bottom-color: #30363d !important;
}

[data-theme="dark"] .crx-footer {
  background: #0d1117 !important;
}
[data-theme="dark"] .crx-footer-container {
  border-top-color: #30363d !important;
}

[data-theme="dark"] .crx-modal {
  background: #161b22 !important;
  border-color: #30363d !important;
  color: #e6edf3 !important;
}
[data-theme="dark"] .crx-modal-overlay {
  background: rgba(0, 0, 0, 0.7) !important;
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background: #1c2128 !important;
  color: #e6edf3 !important;
  border-color: #30363d !important;
}
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
  color: #6e7681 !important;
}

[data-theme="dark"] .crx-btn {
  border-color: #30363d;
}
[data-theme="dark"] .crx-btn-primary {
  background: #0fbfbf !important;
  color: #0d1117 !important;
  border-color: #0fbfbf !important;
}

[data-theme="dark"] .crx-panel {
  background: #161b22 !important;
  border-color: #30363d !important;
}

[data-theme="dark"] .crx-cta-strip {
  background: #161b22 !important;
}

[data-theme="dark"] .crx-scroll-top {
  background: #161b22 !important;
  color: #e6edf3 !important;
  border-color: #30363d !important;
}

[data-theme="dark"] .crx-chatbot-btn {
  background: #161b22 !important;
  color: #e6edf3 !important;
  border: 1px solid #30363d !important;
}
[data-theme="dark"] .crx-whatsapp-btn {
  background: #161b22 !important;
  color: #25d366 !important;
  border: 1px solid #30363d !important;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

body.crx-page-leaving {
  opacity: 0;
}

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

ul {
  list-style: none;
}

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

.crx-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.crx-hidden {
  display: none !important;
}




.crx-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  background: transparent;
  color: var(--dark);
}

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

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

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

.crx-btn-primary:disabled {
  background: #ccc;
  border-color: #ccc;
  color: #888;
  cursor: not-allowed;
}

.crx-btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

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

.crx-btn-glow {
  background: var(--primary);
  color: var(--white);
  border: 1.5px solid var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.crx-btn-large {
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
}

.crx-btn-sm {
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
}

.crx-btn-block {
  width: 100%;
  justify-content: center;
}




.crx-navbar {
  position: static;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  transition: background 0.4s ease, box-shadow 0.3s ease;
}

.crx-navbar.crx-scrolled {
  box-shadow: none;
}

.crx-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.crx-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  font-family: var(--font);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  min-width: fit-content;
}

.crx-logo-icon {
  width: 32px;
  height: 32px;
  background: url('../assets/logo.png') center/contain no-repeat;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 0.9rem;
}

.crx-logo-icon i {
  display: none;
}

.crx-logo-accent {
  color: var(--primary);
}

.crx-nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0;
}

.crx-nav-link {
  padding: 0 1.2rem;
  height: 80px;
  line-height: 80px;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-bottom: none;
  transition: color var(--transition), opacity var(--transition);
  display: inline-block;
}

.crx-nav-link:hover,
.crx-nav-link.crx-active {
  color: var(--primary);
  background: transparent;
  transform: none;
  opacity: 0.8;
}

.crx-nav-dropdown {
  position: relative;
}

.crx-nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1200;
}

.crx-nav-dropdown:hover .crx-nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.crx-nav-dropdown-item {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  color: var(--dark);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.crx-nav-dropdown-item:hover {
  background: var(--bg);
  color: var(--primary);
}

.crx-nav-auth {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: auto;
}

.crx-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.crx-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 0;
  transition: var(--transition);
}




.crx-hero {
  min-height: 90vh;
  background: var(--bg);
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.crx-hero-carousel {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  z-index: 0;
}

.crx-hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.crx-hero-slide > * {
  position: relative;
  z-index: 1;
}

.crx-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  transition: all var(--transition);
}

.crx-hero-arrow:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-50%) scale(1.05);
}

.crx-hero-arrow.crx-prev { left: 1.5rem; }
.crx-hero-arrow.crx-next { right: 1.5rem; }

.crx-hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 100px 2rem 60px;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  flex: 1;
  text-align: left;
}

.crx-hero-banner-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.crx-hero-banner-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.crx-hero-banner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.crx-hero-content {
  flex: 1;
  min-width: 280px;
  max-width: 700px;
  color: var(--white);
  text-align: left;
}

.crx-hero-title {
  font-family: var(--font);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.crx-hero-highlight {
  color: var(--primary-light);
}

.crx-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  max-width: 480px;
  font-weight: 400;
}

.crx-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  justify-content: flex-start;
}

.crx-hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.crx-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.crx-stat-item strong {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.crx-stat-item span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.crx-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
}

.crx-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-shrink: 0;
}

.crx-hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.85rem;
  min-width: 170px;
  transition: all var(--transition);
}

.crx-hero-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.crx-hero-card i {
  font-size: 1.1rem;
  color: var(--primary);
}

.crx-floating,
.crx-floating.crx-delay-1,
.crx-floating.crx-delay-2 {
  animation: none;
}




.crx-page-hero {
  background: var(--bg);
  padding: 140px 2rem 60px;
  text-align: left;
  color: var(--dark);
  border-bottom: none;
}

.crx-page-hero .crx-section-badge {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.crx-page-hero-title {
  font-family: var(--font);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--dark);
  margin: 0.5rem 0 0.5rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.crx-page-hero-subtitle {
  font-size: 1rem;
  color: var(--mid);
  max-width: 550px;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}




.crx-section-header {
  text-align: left;
  margin-bottom: 3rem;
}

.crx-section-badge {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.2em;
  padding: 0.3rem 0;
  border-radius: 0;
  margin-bottom: 0.75rem;
  border: none;
}

.crx-section-badge::before {
  content: '※─── ';
}

.crx-section-badge::after {
  content: ' ───※';
}

.crx-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: left;
  position: relative;
  padding-left: 0;
}

.crx-section-title::before {
  display: none;
}

.crx-section-subtitle {
  color: var(--mid);
  font-size: 1rem;
  max-width: 550px;
  line-height: 1.7;
  font-weight: 400;
}




.crx-features-section {
  padding: 6rem 0;
  background: var(--white);
  border-bottom: none;
}

.crx-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.crx-feature-card {
  text-align: left;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.crx-feature-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.crx-feature-thumb {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 1.25rem;
}

.crx-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: all var(--transition);
}

.crx-feature-card:nth-child(2) .crx-feature-icon,
.crx-feature-card:nth-child(3) .crx-feature-icon,
.crx-feature-card:nth-child(4) .crx-feature-icon {
  background: var(--bg);
  border-color: var(--border);
  color: var(--primary);
}

.crx-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.crx-feature-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
}




.crx-contact-section--light {
  background: var(--bg);
}

.crx-contact-section--light .crx-contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: none;
}

.crx-contact-section--light .crx-contact-card h2,
.crx-contact-section--light .crx-contact-card h4 {
  color: var(--dark);
}

.crx-contact-section--light .crx-contact-card p {
  color: var(--mid);
}

.crx-contact-section--light .crx-contact-icon {
  background: var(--bg);
  color: var(--primary);
}




.crx-water-loader-container {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: none;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: none;
}

.crx-water-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--primary);
  transition: height 0.1s linear;
  z-index: 1;
}

.crx-water-wave::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -50%;
  width: 200%;
  height: 24px;
  background: inherit;
  border-radius: 40%;
  animation: crx-wave-spin 2s linear infinite;
}

@keyframes crx-wave-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.crx-water-percent {
  position: relative;
  z-index: 2;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  transition: color 0.3s;
}

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




.crx-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}

.crx-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.crx-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.crx-footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255,255,255,0.5);
}

.crx-footer-brand .crx-nav-logo .crx-logo-text {
  color: var(--white);
}

.crx-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.crx-social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.crx-social-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.crx-footer-col h2 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

.crx-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.crx-footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.crx-footer-col a:hover {
  color: var(--white);
}

.crx-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}




@media (max-width: 900px) {
  html {
    font-size: 14px;
  }

  .crx-hamburger {
    display: flex;
  }

  .crx-nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .crx-nav-links.crx-open {
    transform: translateX(0);
  }

  .crx-nav-links .crx-nav-link {
    color: var(--dark);
    height: auto;
    line-height: 2.5;
  }

  .crx-nav-auth {
    display: none;
  }

  .crx-mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
    padding: 0 2rem;
  }

  .crx-mobile-auth .crx-btn {
    width: 100%;
    text-align: center;
  }

  .crx-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .crx-split-layout {
    grid-template-columns: 1fr !important;
    padding: 1.5rem 1rem 3rem !important;
    gap: 16px !important;
    min-height: auto !important;
  }

  #resumeLearningBlock {
    grid-column: 1 !important;
  }

  #resumeCardsContainer {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }

  #progressDropdownContainer {
    width: calc(100vw - 2rem) !important;
    right: 1rem !important;
    left: 1rem !important;
    top: 70px !important;
    max-height: 80vh;
    overflow-y: auto;
    padding: 1.5rem !important;
  }

  #progressDropdownContainer > div:first-child + div {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem !important;
  }

  .crx-panel {
    padding: 1.5rem 1.2rem !important;
    border-radius: 0 !important;
  }

  .crx-hub-header .crx-hub-title,
  .crx-hub-title {
    font-size: 1.6rem !important;
  }

  .crx-hub-header .crx-hub-subtitle,
  .crx-hub-subtitle {
    font-size: 0.9rem !important;
  }

  .crx-panel div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  .crx-quiz-grid,
  .crx-units-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .crx-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    text-align: center;
  }

  .crx-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .crx-topbar {
    display: none !important;
  }

  .crx-nav-container {
    padding: 0 1rem !important;
  }

  .crx-hero-content h1,
  .crx-hero h1 {
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }

  .crx-hero-content p {
    font-size: 0.95rem !important;
  }

  .crx-hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
    align-items: stretch;
  }

  .crx-hero-buttons .crx-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .crx-contact-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .crx-form-row {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .crx-pricing-grid,
  .crx-feature-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

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

@media (max-width: 400px) {
  .crx-panel {
    padding: 1rem 0.8rem !important;
  }

  #progressDropdownContainer {
    right: 0.5rem !important;
    left: 0.5rem !important;
    width: calc(100vw - 1rem) !important;
  }

  #progressDropdownContainer > div:first-child + div {
    grid-template-columns: 1fr !important;
  }
}
