:root {
  --bg: #040a16;
  --bg-soft: #050f21;
  --bg-alt: #07162b;
  --primary: #2a7bdc;
  --primary-soft: #3d8af0;
  --primary-strong: #1e5fb0;
  --accent: #ffb76b;
  --text-main: #f7f9fd;
  --text-soft: #c1c8de;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 999px;
  --transition-fast: 180ms ease-out;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #0b2247 0, #040913 40%, #02040a 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
      to bottom,
      rgba(4, 9, 19, 0.96),
      rgba(4, 9, 19, 0.9),
      transparent
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo-mark svg {
  width: 24px;
  height: 24px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 11px;
  color: var(--text-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.main-nav a {
  padding: 6px 0;
  color: var(--text-soft);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.main-nav a:hover {
  color: var(--text-main);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--primary-soft), var(--accent));
  color: #0a0b10;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.lang-selector {
  /* margin-left handled by parent gap */
}

.lang-select {
  background: rgba(9, 21, 43, 0.7);
  color: var(--text-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px 8px;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  outline: none;
  transition: all var(--transition-fast);
}

.lang-select:hover,
.lang-select:focus {
  background: rgba(17, 38, 74, 0.9);
  color: var(--text-main);
  border-color: var(--accent);
}

.hero {
  padding: 72px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  font-weight: 700;
  text-wrap: balance;
}

.hero-eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(90deg, var(--primary-soft), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 16px;
  display: inline-block;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-soft), var(--accent));
  color: #05060a;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--primary-soft));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(42, 123, 220, 0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-main);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.stat {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(9, 22, 46, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.stat-value {
  font-weight: 600;
  margin-right: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-soft);
}

.hero-showcase {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #163563, #071020, #050915);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  padding: 20px 18px;
}

.hero-card-main {
  position: relative;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(255, 183, 107, 0.16);
  color: #ffe1b5;
  border: 1px solid rgba(255, 183, 107, 0.55);
}

.hero-model {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  margin-top: 8px;
}

.model-avatar {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.65);
}

.model-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-name {
  font-weight: 600;
}

.model-meta {
  font-size: 12px;
  color: var(--text-soft);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}

.metric {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 12px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
}

.chart-hero-lola {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.hero-visual-container {
  display: none; /* Hide old container just in case */
}

.hero-card-secondary {
  background: linear-gradient(
    145deg,
    rgba(30, 60, 100, 0.25),
    rgba(5, 11, 23, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.secondary-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.secondary-text {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 20px;
  line-height: 1.6;
}

.secondary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.secondary-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.4;
}

.secondary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255, 183, 107, 0.4);
}

.section {
  padding: 64px 0;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(42, 123, 220, 0.12), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.section-alt .container {
  position: relative;
}

.section-header {
  text-align: left;
  margin-bottom: 30px;
}

.section-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
}

.section h2 {
  font-size: 26px;
  margin: 6px 0 10px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 640px;
}

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

.cards-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius-md);
  background: rgba(5, 14, 28, 0.96);
  border: 1px solid var(--border-subtle);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-size: 17px;
  margin: 0 0 6px;
}

.card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

.models-showcase {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 26px;
  align-items: flex-start;
}

.models-intro h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

.models-intro p {
  font-size: 14px;
  color: var(--text-soft);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.model-card {
  border-radius: 20px;
  background: radial-gradient(circle at top left, #17335e, #050b17);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.model-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.model-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-soft), var(--accent));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.model-card:hover::before {
  opacity: 1;
}

.model-avatar-large {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffb76b, #ff9a4b, #f872b5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(248, 114, 181, 0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.model-card h4 {
  margin: 0 0 4px;
  font-size: 15px;
}

.model-role {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--text-soft);
}

.model-note {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
}

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

.step {
  border-radius: var(--radius-md);
  background: rgba(5, 15, 30, 0.96);
  border: 1px solid var(--border-subtle);
  padding: 18px 18px 20px;
  display: flex;
  gap: 12px;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--primary-soft), var(--accent));
  color: #05060a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.step p {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
}

#testimonials .section-header {
  text-align: center;
}

#results .section-header,
#models .section-header {
  text-align: center;
}

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

.testimonial {
  border-radius: 24px;
  background: radial-gradient(circle at top left, #1b2f57, #050b16);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast);
}

.testimonial:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-author {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}

.testimonial-role {
  font-size: 12px;
  color: var(--accent);
  margin: 2px 0 0;
  font-weight: 500;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0;
  font-style: italic;
}

/* Models Card Improvements */
.model-target-card {
  position: relative;
  background: linear-gradient(145deg, rgba(9, 21, 43, 0.9), rgba(5, 10, 20, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
  overflow: hidden;
}

.model-target-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-soft);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.model-target-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-soft), var(--accent));
  opacity: 0.6;
}

.card-icon {
  font-size: 24px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.05);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.model-target-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-main);
}


.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.kpi {
  border-radius: 16px;
  background: rgba(8, 16, 33, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.kpi-value {
  font-size: 18px;
  font-weight: 700;
}

.kpi-label {
  font-size: 12px;
  color: var(--text-soft);
}

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

.chart-card {
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top, #0e1f3d, #050a16 60%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 12px 14px;
  box-shadow: var(--shadow-soft);
}

.chart-title {
  font-size: 13px;
  color: var(--text-soft);
  margin: 2px 4px 8px;
}

.chart-container {
  width: 100%;
  height: 260px;
}

.results-context {
  font-size: 13px;
  color: var(--text-soft);
  margin: -6px 0 12px;
}

.section-highlight {
  position: relative;
}

.section-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 183, 107, 0.18), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.section-highlight .container {
  position: relative;
}

.apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: flex-start;
}

.apply-list {
  margin: 16px 0 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-soft);
}

.apply-list li {
  margin-bottom: 4px;
}

.apply-form {
  border-radius: 24px;
  background: rgba(6, 12, 27, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
  padding: 20px 20px 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-row-inline {
  flex-direction: row;
  gap: 10px;
}

.form-row-inline > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 13px;
  color: var(--text-soft);
}

input,
textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 15, 29, 0.96);
  color: var(--text-main);
  outline: none;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
  color: rgba(193, 200, 222, 0.6);
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 183, 107, 0.5);
  background: rgba(8, 16, 33, 0.96);
}

.full-width {
  width: 100%;
}

.form-note {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.link {
  display: inline-flex;
  margin-top: 8px;
  font-size: 14px;
  color: var(--accent);
}

/* Intro Page Styles */
.intro-page {
  background-color: var(--bg-main);
  color: var(--text-main);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
}

.intro-container {
  text-align: center;
  padding: 40px 20px;
  width: 100%;
  max-width: 600px;
  animation: fadeIn 0.8s ease-out;
}

.intro-logo {
  margin-bottom: 32px;
  display: inline-block;
  animation: float 6s ease-in-out infinite;
}

.intro-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

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

@media (max-width: 600px) {
  .language-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
}

.lang-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.lang-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  background: var(--surface-hover);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.3);
}

.lang-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(61, 138, 240, 0.1) 0%, rgba(255, 183, 107, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lang-card:hover::before {
  opacity: 1;
}

.lang-code {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  z-index: 1;
}

.lang-flag {
  width: 48px;
  height: 36px;
  border-radius: 4px;
  margin-bottom: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1;
  object-fit: cover;
}

.lang-name {
  font-size: 14px;
  color: var(--text-secondary);
  z-index: 1;
}

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

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

/* Footer Styles */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0 30px;
  background: radial-gradient(circle at top, #0a1731, #020309);
}

.footer-inner {
  text-align: center;
  color: var(--text-soft);
  font-size: 13px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.footer-name {
  font-weight: 600;
  color: var(--text-main);
}

.footer-text {
  margin: 4px 0 4px;
}

.footer-meta {
  margin: 0;
  font-size: 12px;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .header-inner {
    gap: 16px;
    justify-content: center;
    position: relative;
    padding: 12px 20px;
  }

  .logo {
    width: 100%;
    justify-content: center;
    position: static;
  }

  .site-header .logo-mark {
    display: none;
  }

  .logo-text {
    align-items: center;
  }
  
  .logo-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  
  .logo-tagline {
    display: none;
  }

  .header-actions {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .main-nav {
    display: none;
  }
  
  .hero {
    padding: 32px 0 48px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-content,
  .hero-showcase {
    display: contents;
  }

  .hero-eyebrow {
    order: 1;
    font-size: 11px;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    justify-self: center;
  }

  .hero-content h1 {
    order: 2;
    margin-bottom: 12px;
    font-size: 32px;
    line-height: 1.15;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    order: 3;
    font-size: 15px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    order: 4;
    margin-top: 4px;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 14px 24px;
    font-size: 16px;
  }
  
  .hero-actions .btn-primary {
    background: linear-gradient(135deg, #3d8af0, #ffb76b);
    box-shadow: 0 8px 24px rgba(42, 123, 220, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-card-main {
    order: 6;
    margin-top: 16px;
    text-align: left;
  }

  .hero-card-secondary {
    order: 7;
    text-align: center;
  }

  .hero-card-secondary .secondary-list {
    text-align: left;
    display: inline-block;
    width: 100%;
  }

  .models-showcase {
    grid-template-columns: minmax(0, 1fr);
  }

  .models-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kpi-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apply-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 52px;
  }

  .cards-grid,
  .cards-grid.three,
  .models-grid,
  .process-grid,
  .testimonials-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .results-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .chart-container {
    height: 220px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .section {
    padding: 48px 0;
  }

  .header-inner {
    padding-inline: 16px;
  }

  .container {
    padding-inline: 16px;
  }
}
