/* CUSTOM STYLING FOR PRADITA TKA LANDING PAGE */

:root {
  --primary: #F26D0F;
  --primary-60: #FFA800;
  --primary-20: #FFECCB;
  --secondary: #FFA800;
  --tertiary: #F59E0B;
  --neutral: #F4F6FA;
  --surface: #FFFFFF;
  --on-surface: #2C313A;
  --on-surface-muted: #667085;
  --border: #CFD3DB;
  --border-strong: #B9C2CE;
  --overlay: rgba(0, 0, 0, 0.4);
  --error: #E5484D;

  /* Rounded Corner Tokens */
  --radius-none: 0px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Spacing Tokens */
  --space-xs: 6px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 46px;
  --space-xl: 138px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--on-surface);
  background-color: var(--surface);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--on-surface);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

/* HEADER */
.site-header {
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cobranded-logos {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.rg-logo {
  height: 36px;
  width: auto;
}

.logo-divider {
  width: 1px;
  height: 32px;
  background-color: var(--border-strong);
}

.pradita-logo {
  height: 46px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  text-decoration: none;
  color: var(--on-surface-muted);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s;
}

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

/* HERO SECTION */
.hero-section {
  background: linear-gradient(135deg, #FFA800 0%, #F26D0F 100%);
  color: var(--surface);
  padding: var(--space-lg) 0 80px 0;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: flex-start;
}

.hero-collab-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--surface);
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
  color: var(--surface);
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-sm);
}

.hero-cta-info {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--surface);
  background-color: rgba(0, 0, 0, 0.25);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: var(--space-md);
}

.hero-visual-left {
  display: flex;
  justify-content: flex-start;
}

.hero-visual-left .hero-image {
  max-width: 100%;
  max-height: 280px;
  height: auto;
  border-radius: var(--radius-md);
}

.hero-form-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-top: var(--space-md);
}

.capsule-form {
  background-color: var(--surface);
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
}

.capsule-form input[type="tel"] {
  border: none;
  background: transparent;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--on-surface);
  flex-grow: 1;
  width: 100%;
  padding-right: var(--space-xs);
}

.orange-submit-btn {
  background-color: var(--tertiary);
  color: var(--surface);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

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

/* MERGED REASONS & GOALS SECTION */
.reasons-goals-merged-section {
  position: relative;
  margin-top: -60px;
  z-index: 10;
  padding-bottom: var(--space-lg);
}

.goals-merged-wrapper {
  margin-top: var(--space-lg);
}

.reasons-card-wrapper {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.08);
  border: 1px solid var(--border);
}

.reasons-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.reasons-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: var(--on-surface);
}

.countdown-badge {
  background: linear-gradient(135deg, #FFA800 0%, #F26D0F 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  display: inline-block;
  box-shadow: 0 4px 12px rgba(242, 109, 15, 0.15);
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-md);
}

.reason-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 20px var(--space-md);
  border-radius: var(--radius-lg);
  background-color: var(--surface);
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.reason-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.reason-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.reason-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--on-surface);
  margin-bottom: 6px;
}

.reason-text p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--on-surface-muted);
}

@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-md);
    padding-bottom: 40px;
  }
  .hero-cta-info {
    margin: 0 auto;
  }
  .hero-visual {
    order: -1;
  }
  .reasons-section {
    margin-top: -40px;
  }
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .reasons-card-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* SECTION GLOBAL RULES */
.goals-section,
.examples-section,
.benefits-section,
.testimonials-section,
.faq-section {
  padding: var(--space-lg) 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-md);
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: -0.01em;
  color: var(--on-surface);
  margin-bottom: var(--space-xs);
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--on-surface-muted);
}

/* TAB SWITCHER */
.tab-container {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.tab-button,
.tab-button-ex {
  background-color: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--on-surface-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-button:hover,
.tab-button-ex:hover {
  background-color: var(--primary-20);
  color: var(--primary);
  border-color: var(--primary-60);
}

.tab-button.active,
.tab-button-ex.active {
  background-color: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* GOALS CARDS */
.goals-cards-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.goals-tab-content {
  display: none;
}

.goals-tab-content.active {
  display: block;
}

.goals-card {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  position: relative;
}

.goals-card.highlight-card {
  border-top: 4px solid var(--tertiary);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--error);
  color: var(--surface);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.card-header {
  margin-bottom: var(--space-sm);
}

.card-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: var(--on-surface);
  margin-bottom: 4px;
}

.card-date-pill {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: var(--primary);
  display: inline-block;
  background-color: var(--primary-20);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

.card-date-pill.yellow {
  color: var(--tertiary);
  background-color: rgba(245, 158, 11, 0.1);
}

.card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--on-surface-muted);
  margin-bottom: var(--space-sm);
}

/* EXAMPLES CARDS */
.examples-section {
  background-color: var(--surface);
}

.examples-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  max-width: 1000px;
  margin: 0 auto;
}

.examples-grid.active {
  display: grid;
}

.example-card {
  background-color: var(--neutral);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.card-top {
  padding: var(--space-sm);
  color: var(--surface);
}

.orange-gradient {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.blue-gradient {
  background: linear-gradient(135deg, #FFA800 0%, #F26D0F 100%);
}

.ex-badge {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 10px;
}

.card-top h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: #ffffff;
}

.card-top .note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  opacity: 0.85;
  margin-top: 6px;
}

.card-body-img {
  padding: var(--space-sm);
  background-color: var(--surface);
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-example {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.cta-center {
  text-align: center;
  margin-top: var(--space-md);
}

.cta-primary-button {
  background-color: var(--primary);
  color: var(--surface);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  display: inline-block;
  transition: all 0.2s;
}

.cta-primary-button:hover {
  background-color: #0056b3;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* BENEFITS GRID */
.benefits-grid {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 16px;
  padding: 15px 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .benefits-grid {
    justify-content: center;
    overflow: visible;
  }
}

.benefit-card {
  flex: 0 0 280px;
  height: 380px;
  background: url(https://cdn-web-2.ruangguru.com/file-uploader/lp/f175e598-c82c-4f1f-927a-27f756984bd5.svg), linear-gradient(135deg, #FFA800 0%, #F26D0F 100%);
  background-position-y: 101%, center;
  background-repeat: no-repeat;
  background-size: 70%, cover;
  border-radius: 16px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 0 0;
  border: none;
  overflow: hidden;
  scroll-snap-align: start;
}

.benefit-header {
  padding: 0 20px;
  text-align: left;
}

.benefit-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}

.benefit-list {
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: #ffffff;
}

.benefit-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffffff;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 12px;
}

.benefit-note {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 8px;
  font-style: italic;
}

.benefit-img {
  align-self: flex-end;
  display: block;
  max-height: 180px;
  width: auto;
  margin-top: auto;
  border-radius: 0 0 16px 16px;
}

/* TESTIMONIALS */
.testimonials-section {
  background: radial-gradient(circle at 50% 50%, #1e3a8a 0%, #0f172a 100%);
  color: var(--surface);
}

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

.text-light {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-sm);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-content p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 2px solid var(--secondary);
}

.user-details h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--surface);
}

.user-details p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* FAQ ACCORDION */
.faq-section {
  background-color: var(--surface);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: var(--primary);
  cursor: pointer;
  outline: none;
}

.faq-toggle i {
  transition: transform 0.2s ease;
  color: var(--on-surface-muted);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  padding: 0 8px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--on-surface-muted);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.faq-answer ul {
  padding-bottom: 20px;
  padding-left: 20px;
  color: var(--on-surface-muted);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-item.active .faq-toggle i {
  transform: rotate(180deg);
  color: var(--tertiary);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.3s ease-in;
}

/* FOOTER */
.site-footer {
  background-color: #111111;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 24px;
  margin-bottom: 40px;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.footer-cta-btn {
  display: inline-block;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  transition: all 0.2s ease;
  letter-spacing: 0.05em;
}

.footer-cta-btn:hover {
  background-color: #ffffff;
  color: #111111;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 24px;
}

.footer-col-title {
  color: var(--surface);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.campus-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.campus-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.campus-address {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links-column h4,
.footer-contact-column h4 {
  color: var(--surface);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.footer-links-column ul {
  list-style: none;
}

.footer-links-column li {
  margin-bottom: 12px;
}

.footer-links-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links-column a:hover {
  color: var(--secondary);
}

.footer-contact-column p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-column i {
  color: var(--secondary);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  font-size: 13px;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a,
.social-icons a i {
  color: #ffffff;
  font-size: 24px;
  transition: color 0.2s;
}

.social-icons a:hover,
.social-icons a:hover i {
  color: var(--secondary);
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: var(--space-sm) 0;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .examples-grid {
    grid-template-columns: 1fr;
  }
  
  .goals-card {
    padding: var(--space-sm);
  }
  
  .tab-container {
    flex-wrap: wrap;
  }
  
  .footer-bottom-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* YUK DAFTAR SEKARANG FORM CARD STYLING */
.hero-form-container .form-card {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 480px;
  border: 1px solid var(--border);
}

.hero-form-container .form-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: #0f2b5c;
  margin-bottom: 20px;
  text-align: left;
}

.register-form .form-group {
  margin-bottom: 16px;
  text-align: left;
}

.register-form label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--on-surface);
  margin-bottom: 6px;
}

.register-form .form-sub-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--on-surface-muted);
  margin-bottom: 8px;
}

.register-form input[type="text"],
.register-form input[type="number"],
.register-form input[type="email"],
.register-form input[type="tel"],
.register-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--on-surface);
  background-color: var(--surface);
  outline: none;
  transition: border-color 0.2s ease;
}

.register-form input:focus,
.register-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.register-form .submit-button {
  width: 100%;
  background-color: #f26d0f;
  color: var(--surface);
  border: none;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(242, 109, 15, 0.2);
  transition: background-color 0.2s ease;
  margin-top: 10px;
}

.register-form .submit-button:hover {
  background-color: #e85f00;
}

/* HERO VISUAL STICKY TO BOTTOM */
.hero-visual-left {
  margin-top: -15px;
  margin-bottom: -145px;
  display: flex;
  justify-content: flex-start;
  align-self: flex-end;
  position: relative;
  z-index: 5;
}

.hero-visual-left .hero-image {
  max-width: 100%;
  max-height: 450px;
  height: auto;
  border-radius: 0;
  display: block;
}

/* FOOTER LOGO */
.footer-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: var(--space-xs);
  display: block;
}

/* VOUCHER POPUP MODAL STYLES */
.modal-overlay-voucher {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}

.modal-overlay-voucher.active {
  display: flex;
}

.modal-content-voucher {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 520px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.3s ease;
}

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

.close-voucher-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--on-surface-muted);
}

.success-voucher-icon {
  font-size: 54px;
  color: #10b981;
  margin-bottom: 12px;
}

.voucher-success-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 6px;
}

.voucher-success-header p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--on-surface-muted);
  line-height: 1.4;
}

.voucher-code-box {
  background-color: var(--neutral);
  border: 2px dashed var(--primary-60);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.voucher-code-text {
  font-family: 'Courier New', Courier, monospace;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.copy-voucher-btn {
  background-color: var(--primary-20);
  color: var(--primary);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-voucher-btn:hover {
  background-color: var(--primary);
  color: var(--surface);
}

.voucher-instruction {
  text-align: left;
  margin-bottom: 24px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.voucher-instruction h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 10px;
}

.voucher-instruction ol {
  padding-left: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--on-surface-muted);
}

.voucher-instruction li {
  margin-bottom: 8px;
  line-height: 1.45;
}

.redeem-action-btn {
  display: block;
  background-color: var(--primary);
  color: var(--surface);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
  transition: background-color 0.2s ease;
}

.redeem-action-btn:hover {
  background-color: #0056b3;
}

