/* =============================================
   TWINKLE CARE — Global Stylesheet
   Brand: #7b4ae2 purple, #151528 dark
   Font: Inter
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --purple:       #7b4ae2;
  --purple-dark:  #5e32b8;
  --purple-light: #a07aec;
  --purple-pale:  #f0eafd;
  --dark:         #151528;
  --dark-2:       #1e1e3a;
  --text:         #2d2d4e;
  --text-muted:   #6b7280;
  --white:        #ffffff;
  --off-white:    #fafafa;
  --border:       #e5e7eb;
  --success:      #10b981;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(123,74,226,0.10);
  --shadow-lg:    0 8px 48px rgba(123,74,226,0.16);
  --transition:   0.25s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--purple-dark); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-purple { background: var(--purple); }
.bg-dark { background: var(--dark); }
.bg-pale { background: var(--purple-pale); }
.bg-off { background: var(--off-white); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-pale);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-label.white { color: var(--white); background: rgba(255,255,255,0.15); }
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--purple); color: var(--white); border-color: var(--purple); }
.btn-primary:hover { background: var(--purple-dark); border-color: var(--purple-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(123,74,226,0.35); }
.btn-outline { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-outline:hover { background: var(--purple); color: var(--white); }
.btn-white { background: var(--white); color: var(--purple); border-color: var(--white); }
.btn-white:hover { background: var(--purple-pale); color: var(--purple-dark); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.navbar-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar-logo img {
  height: 50px; width: auto; max-width: 200px;
  object-fit: contain; display: block;
}
.navbar-nav {
  display: flex; align-items: center; gap: 4px;
}
.navbar-nav a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.92rem; font-weight: 500;
  color: var(--text); transition: all var(--transition);
  white-space: nowrap;
}
.navbar-nav a:hover, .navbar-nav a.active {
  background: var(--purple-pale); color: var(--purple);
}
.navbar-nav .btn { margin-left: 8px; padding: 9px 20px; font-size: 0.9rem; }

/* ---- Mobile Nav Toggle ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 7px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); }

/* ---- Mobile Menu ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  border-radius: 8px;
  transition: all var(--transition);
}
.mobile-menu a:hover { background: var(--purple-pale); color: var(--purple); }
.mobile-menu .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px;
}

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 540px;
  display: flex; align-items: center;
  overflow: hidden; background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,20,0.80) 0%, rgba(10,10,20,0.60) 50%, rgba(80,40,160,0.50) 100%);
}
.hero-content {
  position: relative; z-index: 2; padding: 80px 0;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 580px; margin-bottom: 32px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  color: var(--white); font-size: 0.85rem; font-weight: 500;
  padding: 7px 14px; border-radius: 100px;
}
.hero-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---- Trust Bar ---- */
.trust-bar { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 18px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 32px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.trust-item img { height: 32px; width: auto; object-fit: contain; display: block; }
.trust-item svg { color: var(--purple); width: 20px; height: 20px; }

/* ---- Cards ---- */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--transition);
}
.card:hover { border-color: var(--purple-light); box-shadow: var(--shadow); transform: translateY(-2px); }
.card-icon {
  width: 56px; height: 56px; background: var(--purple-pale);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; color: var(--purple);
}
.card-icon svg { width: 28px; height: 28px; }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- Service Cards ---- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: all var(--transition);
  text-decoration: none; color: var(--text);
  display: flex; flex-direction: column; gap: 10px;
}
.service-card:hover { border-color: var(--purple); box-shadow: var(--shadow); transform: translateY(-2px); color: var(--text); }
.service-card h4 { color: var(--dark); font-size: 1rem; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.service-card .arrow { margin-top: auto; color: var(--purple); font-size: 1.2rem; }

/* ---- Split Section ---- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-image img { width: 100%; height: 420px; object-fit: cover; object-position: center top; }
.split-content { display: flex; flex-direction: column; gap: 20px; }
.split-content h2 { margin-bottom: 0; }
.split-content p { color: var(--text-muted); }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; }
.check-list li::before {
  content: '';
  width: 20px; height: 20px;
  background: var(--purple-pale);
  border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%237b4ae2'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: contain;
}

/* ---- Stats ---- */
.stats-bar { background: var(--dark); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item h3 { font-size: 2.4rem; font-weight: 800; color: var(--purple-light); margin-bottom: 4px; }
.stat-item p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

/* ---- CTA Banner ---- */
.cta-banner { background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%); padding: 64px 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ---- Footer ---- */
footer { background: var(--dark); padding: 64px 0 0; color: rgba(255,255,255,0.75); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-logo { height: 48px; width: auto; max-width: 160px; object-fit: contain; display: block; margin-bottom: 8px; background: rgba(255,255,255,0.08); border-radius: 8px; padding: 6px 10px; }
.footer-ndis {
  height: 36px; width: 140px;
  object-fit: contain; display: block;
  margin-top: 16px;
}
.footer-col h5 { color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--purple-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; margin-bottom: 10px; }
.footer-contact-item svg { color: var(--purple-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; font-size: 0.83rem;
  color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 8px;
}

/* ---- Page Hero ---- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 60px 0 48px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(123,74,226,0.3) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group label span { color: var(--purple); }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 0.95rem; font-family: 'Inter', sans-serif;
  color: var(--text); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(123,74,226,0.12); }
select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; cursor: pointer; font-size: 0.92rem; }
.form-check input { margin-top: 3px; accent-color: var(--purple); flex-shrink: 0; }
.form-hint { font-size: 0.82rem; color: var(--text-muted); margin-top: 5px; }
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: 0.92rem; display: none; }
.alert-success { background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; }
.alert-error { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.alert.show { display: flex; align-items: center; gap: 10px; }

/* ---- Table ---- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--purple); }
thead th { color: var(--white); padding: 14px 18px; font-size: 0.88rem; font-weight: 600; text-align: left; white-space: nowrap; }
tbody tr:nth-child(even) { background: var(--off-white); }
tbody tr:hover { background: var(--purple-pale); }
tbody td { padding: 13px 18px; font-size: 0.9rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
td.check { text-align: center; color: var(--success); font-size: 1.2rem; }
td.cross { text-align: center; color: #ef4444; font-size: 1.2rem; }

/* ---- Accordion ---- */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%; padding: 18px 24px;
  background: var(--white); border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 0.95rem; font-weight: 600;
  font-family: 'Inter', sans-serif; color: var(--dark);
  cursor: pointer; text-align: left; transition: background var(--transition);
}
.accordion-btn:hover { background: var(--purple-pale); }
.accordion-btn.open { background: var(--purple-pale); color: var(--purple); }
.accordion-icon { width: 22px; height: 22px; border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; transition: transform var(--transition); }
.accordion-btn.open .accordion-icon { transform: rotate(45deg); background: var(--purple); border-color: var(--purple); color: var(--white); }
.accordion-body { display: none; padding: 0 24px 20px; font-size: 0.93rem; color: var(--text-muted); }
.accordion-body.open { display: block; }

/* ---- Doc cards (onboarding) ---- */
.doc-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px 28px; display: flex; align-items: flex-start; gap: 20px; transition: all var(--transition); }
.doc-card:hover { border-color: var(--purple-light); box-shadow: var(--shadow); }
.doc-number { width: 40px; height: 40px; background: var(--purple); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; flex-shrink: 0; }

/* ---- Steps ---- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card { text-align: center; }
.step-num { width: 60px; height: 60px; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 800; margin: 0 auto 20px; }
.step-card h4 { margin-bottom: 8px; }
.step-card p { color: var(--text-muted); font-size: 0.93rem; }

/* ---- Position cards (careers) ---- */
.position-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; transition: all var(--transition); }
.position-card:hover { border-color: var(--purple); box-shadow: var(--shadow); }
.position-info h4 { margin-bottom: 6px; }
.position-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }

/* ---- Hire area cards ---- */
.hire-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hire-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: all var(--transition); }
.hire-card:hover { border-color: var(--purple); box-shadow: var(--shadow); transform: translateY(-2px); }
.hire-card .hire-icon { width: 52px; height: 52px; background: var(--purple-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--purple); margin-bottom: 16px; }
.hire-card h4 { margin-bottom: 8px; }
.hire-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ---- Badges ---- */
.badge { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; }
.badge-purple { background: var(--purple-pale); color: var(--purple); }
.badge-green { background: #ecfdf5; color: #065f46; }

/* ---- Lesson cards ---- */
.lesson-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; }
.lesson-card h4 { color: var(--purple); margin-bottom: 6px; }
.lesson-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ---- SIL features ---- */
.sil-feature-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.sil-feature { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 8px 16px; font-size: 0.88rem; font-weight: 500; }
.sil-feature svg { color: var(--purple); }

/* ---- Google Translate ---- */


.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hire-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* ---- Mobile Navbar ---- */
  .navbar-nav { display: none !important; }
  .nav-toggle { display: flex !important; }

  /* ---- Sections ---- */
  .section { padding: 56px 0; }
  .section-lg { padding: 64px 0; }

  /* ---- Layouts ---- */
  .split-section { grid-template-columns: 1fr; gap: 32px; }
  .split-section.reverse { direction: ltr; }
  .split-image img { height: 260px; }
  .grid-2, .grid-3, .service-grid, .hire-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .position-card { flex-direction: column; align-items: flex-start; }
  .trust-bar-inner { gap: 20px; }

  /* ---- Hero ---- */
  .hero { min-height: 420px; }
  .hero-content { padding: 56px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* ---- CTA ---- */
  .cta-banner { padding: 48px 0; }
  .cta-actions { flex-direction: column; align-items: center; }

  /* ---- Table ---- */
  .table-wrap { font-size: 0.82rem; }
  thead th, tbody td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 8px; }
  .hero-badge { font-size: 0.8rem; padding: 6px 12px; }
  .container { padding: 0 16px; }
}

/* ---- Split Hero ---- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  background: var(--white);
}
.hero-split-content {
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: 0 0 0 0;
}
.hero-split-inner {
  padding: 72px 56px;
  max-width: 560px;
}
.hero-badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin-right: 8px;
  margin-bottom: 8px;
  white-space: nowrap;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 0; margin-bottom: 24px; }
.hero-split-h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-split-p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-split-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-split-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.hero-split-actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.hero-split-image {
  overflow: hidden;
  position: relative;
}
.hero-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 580px;
}

/* ---- Navbar Translate ---- */
.gt-nav-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 7px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  margin-left: 4px;
}
.gt-nav-trigger:hover {
  border-color: var(--purple);
  color: var(--purple);
}
.gt-nav-label { font-size: 0.82rem; }

/* ---- Responsive split hero ---- */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-image { min-height: 320px; order: -1; }
  .hero-split-image img { min-height: 320px; object-position: center 20%; }
  .hero-split-inner { padding: 48px 24px; max-width: 100%; }
  .hero-split-h1 { font-size: 2rem; }
  .hero-split-actions { flex-direction: column; }
  .hero-split-actions .btn { justify-content: center; }
}

@media (max-width: 768px) {
  .gt-nav-label { display: none; }
}
