﻿/*
Theme Name: Invite Careers
Theme URI: https://invitecareers.com/
Author: Invite Careers
Description: Custom recruitment and career platform theme for Invite Careers. Designed from the uploaded static website and paired with the Invite Careers Core plugin.
Version: 1.3.1
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: invite-careers
*/
/* ============================================
   InviteCareers — Main Stylesheet
   Brand colors: Navy #0D1B4B | Blue #1A5FFF | Teal #00C6A7
   ============================================ */

html {
  scroll-behavior: smooth;
}

#jobs, #learn, #certifications, #contact {
  scroll-margin-top: 80px;
}

:root {
  --navy: #0D1B4B;
  --blue: #1A5FFF;
  --blue-light: #E6F1FB;
  --blue-mid: #B5D4F4;
  --teal: #00C6A7;
  --teal-light: #E1F5EE;
  --teal-dark: #0F6E56;
  --amber-light: #FAEEDA;
  --amber-dark: #854F0B;
  --green-light: #EAF3DE;
  --green-dark: #3B6D11;
  --purple-light: #EEEDFE;
  --purple-dark: #534AB7;
  --coral-light: #FAECE7;
  --coral-dark: #993C1D;

  --text-primary: #1A1A2E;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;

  --bg-page: #F7F9FC;
  --bg-card: #FFFFFF;
  --bg-section: #F1F4FA;

  --border-light: #E5E9F0;
  --border-mid: #D7DEEA;

  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.5;
}

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

a {
  text-decoration: none;
}

/* ============================================
   ICONS (inline SVG sprite, offline-safe)
   ============================================ */

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

.icon-lg {
  width: 22px;
  height: 22px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-light);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-links a.active {
  border-bottom: 2px solid var(--blue);
  padding-bottom: 4px;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  font-family: inherit;
}

.btn-ghost {
  padding: 9px 18px;
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--text-primary);
}

.btn-ghost:hover {
  background: var(--bg-section);
}

.btn-primary {
  padding: 9px 18px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(26, 95, 255, 0.45);
}

.btn-primary:hover {
  background: #1452e0;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -6px rgba(26, 95, 255, 0.5);
}

.btn-lg {
  padding: 13px 26px;
  font-size: 15px;
}

.btn-outline {
  background: var(--bg-card);
  border: 1.5px solid var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--bg-section);
  transform: translateY(-1px);
}

.btn-teal {
  background: var(--teal);
  color: var(--navy);
  padding: 12px 26px;
  font-size: 15px;
  box-shadow: 0 6px 16px -6px rgba(0, 198, 167, 0.45);
}

.btn-teal:hover {
  background: #00b394;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -6px rgba(0, 198, 167, 0.5);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(180deg, #F4F8FE 0%, var(--bg-card) 100%);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue-light) 0%, rgba(230,241,251,0) 70%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-light) 0%, rgba(225,245,238,0) 70%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 1.5rem;
  align-items: center;
}

/* ---- Hero entrance animations ---- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-6px) rotate(-1deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,95,255,0.18); }
  50%       { box-shadow: 0 0 0 10px rgba(26,95,255,0); }
}

/* Apply to hero columns */
.hero-inner > div:nth-child(1) {
  animation: fadeSlideRight 0.7s ease both;
}

.hero-inner > div:nth-child(2) {
  animation: fadeSlideUp 0.7s 0.15s ease both;
}

.hero-inner > div:nth-child(3) {
  animation: fadeSlideLeft 0.7s 0.25s ease both;
}

/* Floating photo */
.hero-photo-frame {
  animation: floatY 6s ease-in-out infinite;
}

/* Floating cards gentle drift */
.floating-card.fc-top {
  animation: fadeSlideUp 0.7s 0.4s ease both, floatCard 5s 1s ease-in-out infinite;
}

.floating-card.fc-bottom {
  animation: fadeSlideUp 0.7s 0.55s ease both, floatCard 5.5s 1.2s ease-in-out infinite reverse;
}

/* Dashboard cards stagger in */
.dashboard-card:nth-child(1) { animation: fadeSlideUp 0.6s 0.2s ease both; }
.dashboard-card:nth-child(2) { animation: fadeSlideUp 0.6s 0.35s ease both; }
.dashboard-card:nth-child(3) { animation: fadeSlideUp 0.6s 0.5s ease both; }

/* Avatar pulse */
.avatar {
  animation: pulseGlow 3s ease-in-out infinite;
}
.avatar:nth-child(2) { animation-delay: 0.4s; }
.avatar:nth-child(3) { animation-delay: 0.8s; }
.avatar:nth-child(4) { animation-delay: 1.2s; }

/* Hero badge shimmer */
.hero-badge {
  animation: fadeSlideRight 0.6s ease both;
}

/* Progress bar fill animation */
.progress-fill {
  animation: progressGrow 1.4s 0.8s cubic-bezier(.4,0,.2,1) both;
}

@keyframes progressGrow {
  from { width: 0; }
  to   { width: 85%; }
}

/* ---- Hero photo + floating cards ---- */

.hero-visual {
  position: relative;
  height: 100%;
}

.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
  min-height: 440px;
  box-shadow: 0 20px 50px -20px rgba(13, 27, 75, 0.35);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,75,0) 55%, rgba(13,27,75,0.35) 100%);
}

.floating-card {
  position: absolute;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px -14px rgba(13, 27, 75, 0.3);
  padding: 12px 14px;
  z-index: 2;
  backdrop-filter: blur(2px);
}

.floating-card.fc-top {
  bottom: 108px;
  left: -22px;
  min-width: 200px;
}

.floating-card.fc-bottom {
  bottom: 20px;
  right: -22px;
  min-width: 190px;
}

.fc-greeting {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.fc-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fc-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.fc-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.fc-sub {
  font-size: 11.5px;
  color: var(--text-secondary);
  margin-top: 1px;
}

.fc-link {
  font-size: 11.5px;
  color: var(--blue);
  font-weight: 500;
  margin-top: 4px;
  display: inline-block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--blue-light);
  color: #185FA5;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px -4px rgba(26, 95, 255, 0.2);
}

.hero-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  overflow: hidden;
}

.hero-title .accent {
  color: var(--blue);
  position: relative;
  display: inline-block;
}

.hero-title .accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 10px;
  background: rgba(10, 191, 191, 0.28);
  z-index: -1;
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 0.6s 1.1s ease forwards;
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

/* Each line of the title slides up individually */
.hero-title br + * ,
.hero-title {
  animation: none;
}

.hero-title-line {
  display: block;
  animation: lineReveal 0.65s ease both;
  animation-fill-mode: both;
}

@keyframes lineReveal {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 400px;
  animation: fadeSlideUp 0.6s 0.55s ease both;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2rem;
}

.hero-tag {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  opacity: 0;
  animation: tagPop 0.45s ease both;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: default;
}

.hero-tag:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 18px -6px rgba(13,27,75,0.18);
  border-color: var(--blue);
}

.hero-tag:nth-child(1) { animation-delay: 0.65s; }
.hero-tag:nth-child(2) { animation-delay: 0.75s; }
.hero-tag:nth-child(3) { animation-delay: 0.85s; }
.hero-tag:nth-child(4) { animation-delay: 0.95s; }

@keyframes tagPop {
  from { opacity: 0; transform: translateY(10px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 1.75rem;
  animation: fadeSlideUp 0.6s 1s ease both;
}

.hero-ctas .btn {
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.hero-ctas .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px -8px rgba(26,95,255,0.45);
}

.hero-ctas .btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -8px rgba(13,27,75,0.2);
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  animation: fadeSlideUp 0.6s 1.15s ease both;
}

.avatars {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-mid);
  border: 2px solid var(--bg-card);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #0C447C;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.avatar:hover {
  transform: translateY(-4px) scale(1.1);
  z-index: 2;
}

.avatar:first-child {
  margin-left: 0;
}

/* ---- Dashboard column (3 stacked cards, hero 3rd column) ---- */

.dashboard-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  box-shadow: 0 6px 22px -6px rgba(13, 27, 75, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px -10px rgba(13, 27, 75, 0.22);
  border-color: var(--blue);
}

.dashboard-col .dashboard-card:nth-child(1) {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dashboard-col .dashboard-card:nth-child(2) {
  flex: 0.9;
  display: flex;
  align-items: center;
}

.dashboard-col .dashboard-card:nth-child(2) .score-row {
  width: 100%;
}

.dashboard-col .dashboard-card:nth-child(3) {
  flex: 1.7;
}

.dashboard-greeting {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.dashboard-card h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.dashboard-link {
  font-size: 12px;
  color: var(--blue);
  margin-top: 10px;
  display: inline-block;
  font-weight: 500;
  transition: gap 0.2s ease;
}

.dashboard-link:hover {
  text-decoration: underline;
}

.job-mini {
  transition: transform 0.2s ease, background 0.2s ease;
  border-radius: 8px;
}

.job-mini:hover {
  transform: translateX(4px);
  background: var(--blue-light);
}

.score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.score-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.job-mini {
  font-size: 12.5px;
  padding: 8px 0;
}

.job-mini-title {
  font-weight: 600;
  color: var(--navy);
}

.job-mini-meta {
  color: var(--text-secondary);
  font-size: 11.5px;
  margin-top: 2px;
}

/* ---- Career Journey card (hero middle box) ---- */

.journey-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  box-shadow: 0 6px 22px -6px rgba(13, 27, 75, 0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.journey-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
}

.journey-title .icon {
  color: var(--blue);
}

.journey-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-light);
}

.journey-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.step-icon.blue   { background: var(--blue-light);  color: var(--blue); }
.step-icon.teal   { background: var(--teal-light);  color: var(--teal-dark); }
.step-icon.amber  { background: var(--amber-light); color: var(--amber-dark); }
.step-icon.green  { background: var(--green-light); color: var(--green-dark); }
.step-icon.purple { background: var(--purple-light); color: var(--purple-dark); }
.step-icon.coral  { background: var(--coral-light); color: var(--coral-dark); }

.step-text p {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1px;
  color: var(--text-primary);
  line-height: 1.3;
}

.step-text span {
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.3;
}

.progress-bar {
  height: 6px;
  background: var(--bg-section);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 85%;
  background: var(--teal);
  border-radius: 3px;
}

.progress-label {
  font-size: 12px;
  color: var(--teal-dark);
  font-weight: 500;
}

.score-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.score-badge {
  font-size: 12px;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 3px 10px;
  border-radius: 10px;
  font-weight: 500;
}

/* ============================================
   TRUST STRIP
   ============================================ */

.trust-strip {
  background: #F8FAFE;
  position: relative;
  padding: 1.5rem 0;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid #E4ECF7;
  border-bottom: 1px solid #E4ECF7;
}

.trust-strip::before {
  display: none;
}

.trust-strip::after {
  display: none;
}

.trust-inner {
  width: 100%;
  display: flex;
  align-items: center;
}

.trust-emblem {
  display: none;
}

.trust-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  border-right: 1px solid #D8E5F5;
}

.trust-label-text {
  font-size: 16px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
  color: #1A3A8F;
  white-space: nowrap;
}

.trust-marquee {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: trust-scroll 28s linear infinite;
  padding: 0 1rem;
}

.trust-marquee:hover .trust-track {
  animation-play-state: paused;
}

@keyframes trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 160px;
  flex-shrink: 0;
  background: #fff;
  border: 1.5px solid #E4ECF7;
  border-radius: 12px;
  padding: 0 18px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.trust-item:hover {
  border-color: #B8CFEE;
  box-shadow: 0 4px 16px -4px rgba(26, 95, 255, 0.12);
}

.trust-logo-img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.45);
  transition: filter 0.3s ease;
}

.trust-item:hover .trust-logo-img {
  filter: grayscale(0) opacity(1);
}

.trust-logo-tile {
  height: 28px;
  width: 28px;
  border-radius: 6px;
  object-fit: cover;
}

.trust-logo-tile-wide {
  height: 26px;
  border-radius: 6px;
  object-fit: cover;
  max-width: 110px;
}

/* ============================================
   SECTION LAYOUT
   ============================================ */

.section {
  padding: 3.5rem 3rem;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.section-alt {
  background: var(--bg-section);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.section-title .accent {
  color: var(--blue);
}

.section-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 6px;
}

.view-all {
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
  border: 1px solid var(--blue);
  padding: 8px 18px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
  white-space: nowrap;
}

.view-all:hover {
  background: var(--blue-light);
}

/* ============================================
   CAREER PATH CARDS
   ============================================ */

.career-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.career-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 6px 22px -6px rgba(13, 27, 75, 0.12);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.career-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(13, 27, 75, 0.18);
}

.career-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}

.career-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.career-salary {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.career-openings {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}

.learn-more {
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
}

/* ============================================
   ENGLISH LEARNING BANNER
   ============================================ */

.english-section {
  width: 100%;
  background: linear-gradient(135deg, #0D1B4B 0%, #0e2a6e 60%, #093a3a 100%);
  position: relative;
  overflow: hidden;
  padding: 3rem 3rem;
}

.english-section::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,191,191,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.english-section::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,95,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.english-inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.english-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.english-header .hero-badge {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 1rem;
  display: inline-flex;
}

.english-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.4px;
}

.accent-teal { color: #0ABFBF; }

.english-header p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.english-plans-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
  display: block;
}

/* Plans + certificate row */
.english-bottom {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 1.5rem;
  align-items: start;
}

/* Plans grid */
.english-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.english-plan-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
  backdrop-filter: blur(8px);
}

.english-plan-card:hover {
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

.english-plan-featured {
  background: rgba(10,191,191,0.1);
  border-color: #0ABFBF;
  box-shadow: 0 0 32px rgba(10,191,191,0.14);
}

.english-plan-featured:hover { border-color: #0ABFBF; }

.plan-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0ABFBF;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-tag { display: none; }

.plan-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 0.25rem;
}

.plan-currency {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.plan-amount {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -1.5px;
}

.english-plan-featured .plan-amount { color: #0ABFBF; }

.plan-period {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.plan-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 0.75rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

.plan-features li .icon {
  color: #0ABFBF;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.plan-btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
}

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

.plan-btn-solid {
  background: #0ABFBF;
  border: 2px solid #0ABFBF;
  color: #fff;
}

.plan-btn-solid:hover { background: #08a8a8; }

.english-footer-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  justify-content: center;
}

.english-footer-note .icon {
  color: #0ABFBF;
  width: 14px;
  height: 14px;
}

/* Certificate card - right column */
.english-cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cert-card-new {
  background: linear-gradient(145deg, #fff 0%, #f0f8ff 100%);
  border-radius: 20px;
  padding: 1.5rem 1.25rem;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.15);
  overflow: hidden;
}

.cert-card-new::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1A5FFF, #0ABFBF);
}

.cert-top-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7A90B8;
  margin-bottom: 0.75rem;
}

.cert-seal-new {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A5FFF, #0ABFBF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  box-shadow: 0 8px 24px -6px rgba(26,95,255,0.45);
}

.cert-seal-new .icon {
  color: #fff;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cert-card-new h4 {
  font-size: 14px;
  font-weight: 800;
  color: #0D1B4B;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.cert-card-new .cert-sub {
  font-size: 11px;
  color: #7A90B8;
  margin-bottom: 0.75rem;
}

.cert-divider {
  border: none;
  border-top: 1px dashed #D0DFF0;
  margin: 0.75rem 0;
}

.cert-awardee-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #9EB2CC;
  margin-bottom: 4px;
}

.cert-awardee-name {
  font-size: 13px;
  font-weight: 700;
  color: #1A3A8F;
  font-style: italic;
}

.cert-stars {
  color: #F5A623;
  font-size: 14px;
  letter-spacing: 2px;
  margin: 0.6rem 0 0.75rem;
}

.cert-pill-row {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.cert-pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
}

.cert-pill.blue { background: #EEF3FF; color: #1A5FFF; }
.cert-pill.teal { background: #E6F9F9; color: #0ABFBF; }


/* ============================================
   RESUME BUILDER PROMO
   ============================================ */

.resume-section {
  padding: 0;
  width: 100%;
  background: linear-gradient(135deg, #0D1B4B 0%, #1A3A8F 50%, #0ABFBF22 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative background shapes */
.resume-section::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,191,191,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.resume-section::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,95,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.resume-banner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 4rem;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.resume-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  height: 420px; /* Fixed — never grows regardless of resume image */
  overflow: visible;
}

.resume-content .hero-badge {
  margin-bottom: 1.25rem;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.resume-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.resume-content h2 .accent {
  color: #0ABFBF;
}

.resume-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 460px;
}

.resume-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Override btn colors for dark bg */
.resume-content .btn-primary {
  background: #0ABFBF;
  border-color: #0ABFBF;
  color: #fff;
}
.resume-content .btn-primary:hover {
  background: #08a8a8;
}
.resume-content .btn-outline {
  border-color: rgba(255,255,255,0.85);
  color: #fff;
  background: rgba(255,255,255,0.12);
}
.resume-content .btn-outline:hover {
  background: rgba(255,255,255,0.22);
  border-color: #fff;
}

/* Stats row to fill left-side bottom gap */
.resume-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.resume-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.resume-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.resume-stat-num span {
  color: #0ABFBF;
}

.resume-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ---- Orbit carousel ---- */

.orbit-carousel {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  width: 100%;
  height: 340px;
  position: relative;
}

/* ---- Current orbit scene (matches index.html markup) ---- */

.orbit-scene {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.orbit-stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 296px;
  min-height: 296px;
  max-height: 296px;
  position: relative;
  overflow: hidden;
}

.ocard {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(.4,0,.2,1);
}

.ocard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.ocard-left {
  width: 148px;
  height: 208px;
  left: 0;
  bottom: 0;
  transform: rotate(-6deg) translateX(18px);
  box-shadow: 0 8px 32px -8px rgba(0,0,0,0.45);
  opacity: 0.72;
  z-index: 1;
}

.ocard-center {
  width: 210px;
  height: 296px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.55);
  z-index: 2;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1), opacity 0.35s ease;
}

.ocard-right {
  width: 148px;
  height: 208px;
  right: 0;
  bottom: 0;
  transform: rotate(6deg) translateX(-18px);
  box-shadow: 0 8px 32px -8px rgba(0,0,0,0.45);
  opacity: 0.72;
  z-index: 1;
}

.orbit-dots {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.orbit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: all 0.3s;
}

.orbit-dot.active {
  background: #0ABFBF;
  transform: scale(1.3);
}

.resume-tags-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.resume-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.4s ease;
}

.tag-blue {
  background: rgba(26,95,255,0.35);
  color: #A8C8FF;
  border: 1.5px solid rgba(26,95,255,0.5);
}

.tag-teal {
  background: rgba(10,191,191,0.3);
  color: #4DEDED;
  border: 1.5px solid rgba(10,191,191,0.5);
}

.tag-amber {
  background: rgba(255,185,0,0.25);
  color: #FFD966;
  border: 1.5px solid rgba(255,185,0,0.45);
}

/* ---- Legacy classes (kept for backward compatibility, unused by current markup) ---- */

.orbit-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1), box-shadow 0.5s ease, opacity 0.5s ease;
}

.orbit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Left card */
.orbit-left {
  width: 140px;
  height: 198px;
  left: 0;
  bottom: 0;
  transform: rotate(-6deg) translateX(28px);
  box-shadow: 0 8px 24px -8px rgba(13, 27, 75, 0.22);
  opacity: 0.72;
  z-index: 1;
}

/* Center card — large & upright */
.orbit-center {
  width: 190px;
  height: 268px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  box-shadow: 0 24px 56px -16px rgba(13, 27, 75, 0.38);
  z-index: 2;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1), opacity 0.35s ease;
}

/* Right card */
.orbit-right {
  width: 140px;
  height: 198px;
  right: 0;
  bottom: 0;
  transform: rotate(6deg) translateX(-28px);
  box-shadow: 0 8px 24px -8px rgba(13, 27, 75, 0.22);
  opacity: 0.72;
  z-index: 1;
}

/* Floating badges on center card */
.orbit-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 8px 24px -8px rgba(13, 27, 75, 0.28);
  z-index: 3;
  white-space: nowrap;
  animation: orbit-float 4s ease-in-out infinite;
}

.orbit-badge .icon { color: var(--teal); width: 14px; height: 14px; }

.orbit-badge-top {
  top: -12px;
  right: -22px;
  animation-delay: 0s;
}

.orbit-badge-bottom {
  bottom: 16px;
  left: -22px;
  animation-delay: 2s;
}

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

/* ---- Feature pills below carousel ---- */

.resume-features-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.resume-feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: 0 2px 12px -4px rgba(13, 27, 75, 0.12);
  flex: 1;
  min-width: 130px;
}

.resume-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resume-feature-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
}

.resume-feature-sub {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 1px;
}

.english-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}

.english-banner h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.english-banner p {
  color: #9DB1DC;
  font-size: 14px;
  margin-bottom: 1.5rem;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 2.5rem;
  margin-bottom: 1.75rem;
}

.check-item {
  font-size: 14px;
  color: #D5DFF5;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.check-item i {
  color: var(--teal);
  font-size: 16px;
}

.certificate-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  min-width: 240px;
  text-align: center;
}

.certificate-card > p {
  font-size: 12px;
  color: #9DB1DC;
  margin-bottom: 10px;
}

.certificate-visual {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  border: 2px solid var(--amber-light);
}

.certificate-visual .cert-seal {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--blue);
}

.certificate-visual h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.certificate-visual span {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  margin-top: 6px;
}

.cert-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.cert-badge {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 10px;
  font-weight: 500;
}

.cert-badge.teal {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.cert-badge.purple {
  background: var(--purple-light);
  color: var(--purple-dark);
}

/* ============================================
   CERTIFICATION CARDS
   ============================================ */

.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 6px 22px -6px rgba(13, 27, 75, 0.12);
  transition: transform 0.15s, box-shadow 0.15s;
}

.cert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(13, 27, 75, 0.18);
}

.cert-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.cert-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.star-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.stars {
  color: #EF9F27;
  font-size: 13px;
}

.star-count {
  font-size: 12px;
  color: var(--text-secondary);
}

.enroll-btn {
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   JOB LISTINGS
   ============================================ */

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 6px 22px -6px rgba(13, 27, 75, 0.12);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.job-card:hover {
  border-color: var(--blue-mid);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(13, 27, 75, 0.18);
}

.job-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.company-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.job-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.company-name {
  font-size: 13px;
  color: var(--text-secondary);
}

.job-loc {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}

.job-salary {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.job-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.job-tag {
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: 10px;
  background: var(--bg-section);
  color: var(--text-secondary);
  font-weight: 500;
}

.job-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.know-more-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-md);
  color: var(--blue);
  background: transparent;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}

.know-more-btn:hover {
  background: var(--blue-light);
}

.apply-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-md);
  color: #fff;
  background: var(--blue);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

.apply-btn:hover {
  background: var(--blue-dark, #1249CC);
}

/* ============================================
   JOBS COMING SOON PAGE
   ============================================ */

.jobs-soon-hero,
.jobs-soon-section {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
}

.jobs-soon-hero {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 2rem;
  align-items: center;
  background:
    radial-gradient(circle at 92% 14%, rgba(0,198,167,0.16), transparent 30%),
    linear-gradient(180deg, #F4F8FE 0%, #fff 100%);
}

.jobs-soon-copy h1 {
  max-width: 720px;
  color: var(--navy);
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: 0;
  margin: 1rem 0;
}

.jobs-soon-copy p {
  max-width: 700px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.75;
}

.jobs-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

.jobs-soon-panel {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: 0 20px 50px -20px rgba(13, 27, 75, 0.32);
}

.jobs-soon-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.jobs-soon-status span {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.jobs-soon-status strong {
  color: var(--teal-dark);
  background: var(--teal-light);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
}

.jobs-soon-meter {
  height: 10px;
  background: var(--bg-section);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.jobs-soon-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.jobs-soon-panel p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.jobs-soon-list {
  display: grid;
  gap: 10px;
}

.jobs-soon-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.jobs-soon-list .icon {
  color: var(--teal);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.jobs-soon-section {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.jobs-soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.jobs-soon-grid article {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 6px 22px -6px rgba(13, 27, 75, 0.12);
}

.jobs-soon-grid h3 {
  color: var(--navy);
  font-size: 17px;
  margin: 1rem 0 0.5rem;
}

.jobs-soon-grid p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .jobs-soon-hero {
    grid-template-columns: 1fr;
  }

  .jobs-soon-panel {
    max-width: 620px;
  }
}

@media (max-width: 768px) {
  .jobs-soon-hero,
  .jobs-soon-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .jobs-soon-copy h1 {
    font-size: 34px;
  }

  .jobs-soon-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   STATS STRIP
   ============================================ */

.stats-strip {
  background: var(--blue);
  padding: 2rem;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.stat-item h3 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.stat-item p {
  font-size: 13px;
  color: var(--blue-mid);
  margin-top: 4px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: 0 6px 22px -6px rgba(13, 27, 75, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.test-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px -10px rgba(13, 27, 75, 0.2);
}

.test-quote {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.test-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.test-role {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ============================================
   FINAL CTA
   ============================================ */

.cta-section {
  padding: 0 3rem 3rem;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
}

.cta-banner h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-banner p {
  color: #9DB1DC;
  font-size: 14px;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-shrink: 0;
}

.app-download p {
  font-size: 12px;
  color: #9DB1DC;
  margin-bottom: 8px;
}

.app-buttons {
  display: flex;
  gap: 8px;
}

.app-btn {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #fff;
  font-size: 12px;
  border: none;
  font-family: inherit;
}

.app-btn i {
  font-size: 18px;
  color: var(--teal);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #fff;
  position: relative;
  padding: 3.5rem 3rem 1.5rem;
  overflow: hidden;
  border-top: 1px solid #E4ECF7;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1A5FFF, #0ABFBF, #1A5FFF);
}

.footer::after {
  display: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 0.5fr 0.6fr 2.6fr;
  gap: 1.25rem;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-brand img {
  height: 44px;
  margin-bottom: 14px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: inline-block;
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 11px;
  transition: color 0.15s, transform 0.15s;
}

.footer-col a:hover {
  color: var(--blue);
  transform: translateX(2px);
}

/* ---- Newsletter — bigger, light blue card ---- */

.footer-newsletter-col {
  background: rgba(26, 95, 255, 0.06);
  border: 1px solid rgba(26, 95, 255, 0.18);
  border-radius: 18px;
  padding: 1.5rem 2.75rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-newsletter-col h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--navy);
}

.newsletter-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 100%;
}

.newsletter-input {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1.5px solid #D8E5F5;
  border-radius: 12px;
  padding: 4px;
  margin-top: 4px;
  box-shadow: 0 8px 24px -10px rgba(13,27,75,0.15);
  width: 100%;
}

.newsletter-icon {
  width: 16px;
  height: 16px;
  color: #9EB2CC;
  margin-left: 12px;
  flex-shrink: 0;
}

.newsletter-input input {
  flex: 1;
  width: 100%;
  padding: 13px 8px;
  border: none;
  font-size: 14px;
  background: transparent;
  color: #0D1B4B;
  font-family: inherit;
  min-width: 0;
}

.newsletter-input input:focus {
  outline: none;
}

.newsletter-input input::placeholder {
  color: #9EB2CC;
}

.newsletter-input button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 22px;
  background: linear-gradient(135deg, #1A5FFF, #0ABFBF);
  color: #fff;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 700;
  font-family: inherit;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.newsletter-input button:hover {
  opacity: 0.9;
}

.newsletter-input button .icon {
  width: 14px;
  height: 14px;
}

.newsletter-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 14px;
}

.newsletter-note .icon {
  color: var(--teal);
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ---- Social icons — permanent real brand colors, no hover dependency ---- */

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
}

.social-youtube { background: #FF0000; }
.social-instagram { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-linkedin { background: #0A66C2; }
.social-facebook { background: #1877F2; }

.footer-bottom {
  max-width: 1440px;
  margin: 2.25rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #E4ECF7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-secondary);
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-bottom-links a:hover {
  color: var(--blue);
}

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

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .journey-card, .dashboard-card {
    max-width: 460px;
    margin: 1.25rem auto 0;
    height: auto;
  }
  .hero-visual {
    max-width: 460px;
    margin: 1.5rem auto 0;
  }
  .hero-photo-frame {
    min-height: 380px;
  }
  .career-grid, .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .jobs-grid, .test-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-inner {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .trust-emblem img {
    width: 84px;
    height: 84px;
  }
  .navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 1rem;
  }
  .nav-links {
    display: none;
  }
  .hero-title {
    font-size: 32px;
  }
  .career-grid, .cert-grid, .jobs-grid, .test-grid {
    grid-template-columns: 1fr;
  }
  .english-banner, .cta-banner, .resume-banner {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .orbit-carousel {
    height: 260px;
  }
  .orbit-center {
    width: 150px;
    height: 212px;
  }
  .orbit-left, .orbit-right {
    width: 110px;
    height: 155px;
  }
  .resume-features-row {
    gap: 8px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    padding: 2.5rem 1.25rem;
  }
  .floating-card.fc-top,
  .floating-card.fc-bottom {
    position: static;
    margin-top: 12px;
    min-width: 0;
  }
  .hero-photo-frame {
    margin-bottom: 0;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero,
.about-story-section,
.about-founders-section,
.about-values-section,
.about-mission-section,
.about-services-section,
.about-clients-section {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
}

.about-hero {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(180deg, #F4F8FE 0%, var(--bg-card) 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue-light) 0%, rgba(230,241,251,0) 70%);
}

.about-hero-copy,
.about-hero-visual {
  position: relative;
  z-index: 1;
}

.about-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.about-hero-visual {
  min-height: 390px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(13, 27, 75, 0.35);
}

.about-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.about-floating-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1rem 1.15rem;
  box-shadow: 0 16px 36px -14px rgba(13, 27, 75, 0.3);
}

.about-floating-card strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.about-floating-card span {
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 600;
}

.about-story-section,
.about-founders-section,
.about-values-section,
.about-mission-section,
.about-services-section,
.about-clients-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-panel,
.founder-card,
.values-grid article,
.service-tile-grid article,
.mission-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 22px -6px rgba(13, 27, 75, 0.12);
}

.about-panel {
  padding: 2rem;
}

.about-panel h3,
.founder-card h3,
.values-grid h3,
.mission-steps h3,
.service-tile-grid h3 {
  color: var(--navy);
}

.about-panel p,
.founder-card span,
.values-grid p,
.mission-card p,
.mission-steps p,
.service-tile-grid p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

.about-panel p + p {
  margin-top: 1rem;
}

.about-panel-accent {
  background: linear-gradient(135deg, var(--navy), #12347F);
}

.about-panel-accent h3,
.about-panel-accent p {
  color: #fff;
}

.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 1.5rem;
}

.about-mini-stats span {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 0.8rem;
  color: rgba(255,255,255,0.76);
  font-size: 12px;
}

.about-mini-stats strong {
  display: block;
  color: #fff;
  font-size: 16px;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.founder-card {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 1.25rem;
  align-items: center;
}

.founder-card img {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--blue-light);
}

.founder-card p {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.values-grid,
.service-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.values-grid article,
.service-tile-grid article {
  padding: 1.5rem;
}

.values-grid article > .icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: var(--radius-md);
  color: var(--blue);
  background: var(--blue-light);
  margin-bottom: 1rem;
}

.mission-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  padding: 2rem;
  background:
    radial-gradient(circle at 92% 10%, rgba(0,198,167,0.16), transparent 28%),
    linear-gradient(135deg, #fff, #F4F8FE);
}

.mission-card h2 {
  color: var(--navy);
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.mission-steps {
  display: grid;
  gap: 12px;
}

.mission-steps article {
  padding: 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #fff;
}

.mission-steps strong {
  color: var(--blue);
  font-size: 12px;
}

.service-tile-grid .company-logo {
  margin-bottom: 1rem;
}

.about-client-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-client-row span {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 22px -6px rgba(13, 27, 75, 0.12);
}

.about-client-row img {
  max-height: 66px;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .about-hero,
  .about-story-grid,
  .mission-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .about-hero,
  .about-story-section,
  .about-founders-section,
  .about-values-section,
  .about-mission-section,
  .about-services-section,
  .about-clients-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .founder-grid,
  .values-grid,
  .service-tile-grid,
  .about-client-row,
  .about-mini-stats {
    grid-template-columns: 1fr;
  }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-card img {
    margin: 0 auto;
  }
}

/* ============================================
   AUTH PAGE — Sign In / Sign Up
   ============================================ */

.auth-section {
  width: 100%;
  min-height: calc(100vh - 64px);
  display: flex;
}

.auth-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

/* ---- Left visual panel ---- */

.auth-visual {
  background: linear-gradient(160deg, #0D1B4B 0%, #14245E 50%, #093a3a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  overflow: hidden;
}

.auth-visual-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,191,191,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.auth-visual-glow::after {
  content: "";
  position: absolute;
  bottom: -300px; left: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,95,255,0.16) 0%, transparent 70%);
}

.auth-visual-content {
  position: relative;
  z-index: 1;
  max-width: 440px;
}

.auth-visual-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 1.25rem 0 1rem;
  letter-spacing: -0.5px;
}

.auth-visual-content p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.auth-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 2.25rem;
}

.auth-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.auth-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,0.1);
  color: #0ABFBF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.auth-avatars-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.auth-avatars-row span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ---- Right form panel ---- */

.auth-form-panel {
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.auth-form-inner {
  width: 100%;
  max-width: 400px;
}

.auth-logo-link {
  display: block;
  text-align: center;
  margin-bottom: 1.75rem;
}

.auth-logo-link img {
  height: 38px;
}

.auth-tabs {
  display: flex;
  background: var(--bg-section);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 1.75rem;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.auth-tab.active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 8px -2px rgba(13,27,75,0.18);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: -4px;
}

.auth-form-sub {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 4px;
}

.auth-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-md);
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
}

.auth-social-btn:hover {
  background: var(--bg-section);
  border-color: var(--blue-mid);
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 4px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.auth-divider span {
  padding: 0 12px;
  font-size: 11.5px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.auth-field-row {
  display: flex;
  gap: 12px;
}

.auth-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
}

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input-wrap > .icon:first-child {
  position: absolute;
  left: 13px;
  width: 16px;
  height: 16px;
  color: #9EB2CC;
  pointer-events: none;
}

.auth-input-wrap input {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-family: inherit;
  color: var(--text-primary);
  transition: border-color 0.15s;
}

.auth-input-wrap input:focus {
  outline: none;
  border-color: var(--blue);
}

.auth-eye-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: #9EB2CC;
  display: flex;
  align-items: center;
  padding: 0;
}

.auth-eye-toggle:hover {
  color: var(--blue);
}

.auth-eye-toggle .icon {
  width: 17px;
  height: 17px;
}

.auth-row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--text-secondary);
  cursor: pointer;
}

.auth-checkbox input {
  accent-color: var(--blue);
}

.auth-terms {
  align-items: flex-start;
  line-height: 1.5;
}

.auth-terms a {
  color: var(--blue);
}

.auth-link-small {
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 500;
}

.auth-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.auth-switch-text {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.auth-switch-text a {
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 900px) {
  .auth-wrapper {
    grid-template-columns: 1fr;
  }
  .auth-visual {
    display: none;
  }
}

/* ============================================
   WORDPRESS NAVIGATION FIXES
   ============================================ */

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  background: #fff;
  cursor: pointer;
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.navbar.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-actions .btn.active {
  outline: 2px solid rgba(26, 95, 255, 0.18);
}

@media (max-width: 768px) {
  .navbar {
    position: sticky;
    top: 0;
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  .navbar .logo img {
    height: 42px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links,
  .nav-actions {
    display: none;
    width: 100%;
  }

  .navbar.is-open .nav-links,
  .navbar.is-open .nav-actions {
    display: flex;
  }

  .navbar.is-open .nav-links {
    order: 4;
    flex-direction: column;
    gap: 0;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-light);
  }

  .navbar.is-open .nav-links a {
    min-height: 42px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
  }

  .navbar.is-open .nav-links a.active {
    border-bottom-color: var(--border-light);
    color: var(--blue);
  }

  .navbar.is-open .nav-actions {
    order: 5;
    gap: 0.75rem;
    padding-top: 0.75rem;
  }

  .navbar.is-open .nav-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

