:root {
  --color-bg: #F4F3EF;
  --color-surface: #FFFFFF;
  --color-surface-alt: #EDECEA;
  --color-dark: #1A1A2E;
  --color-dark-mid: #252540;
  --color-primary: #2D5BE3;
  --color-primary-light: #4A74F0;
  --color-accent: #E8A020;
  --color-accent-light: #F5B840;
  --color-text: #1E1E30;
  --color-text-muted: #6B6B80;
  --color-text-light: #F0EFE9;
  --color-border: #DDDBD5;
  --color-cell-blue: #EDF1FC;
  --color-cell-amber: #FDF5E6;
  --color-cell-dark: #1A1A2E;

  --shadow-sm: 0 1px 3px rgba(26,26,46,0.06), 0 1px 2px rgba(26,26,46,0.04);
  --shadow-md: 0 4px 12px rgba(26,26,46,0.08), 0 2px 6px rgba(26,26,46,0.05);
  --shadow-lg: 0 8px 28px rgba(26,26,46,0.10), 0 4px 12px rgba(26,26,46,0.07);
  --shadow-xl: 0 16px 48px rgba(26,26,46,0.12), 0 6px 18px rgba(26,26,46,0.08);
  --shadow-primary: 0 8px 24px rgba(45,91,227,0.22), 0 2px 8px rgba(45,91,227,0.12);
  --shadow-accent: 0 8px 24px rgba(232,160,32,0.22), 0 2px 8px rgba(232,160,32,0.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --gap-bento: 16px;
  --nav-height: 72px;

  --font-heading: 'Urbanist', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--color-text);
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }

p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); line-height: 1.75; color: var(--color-text-muted); }

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

/* =========================================
   MAIN NAVIGATION
   ========================================= */
.main-navigation {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--color-surface);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}
.main-navigation.scrolled {
  box-shadow: 0 2px 20px rgba(26,26,46,0.12), 0 1px 6px rgba(26,26,46,0.07);
}
.navigation-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.navigation-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navigation-logo img { height: 36px; width: auto; }
.navigation-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.navigation-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.navigation-links a:hover,
.navigation-links a.active {
  color: var(--color-primary);
  background: var(--color-cell-blue);
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 20px;
  background: var(--color-surface-alt);
  border-radius: var(--radius-full);
  padding: 4px 12px;
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
  padding: 2px 0;
}
.lang-btn.active {
  color: var(--color-primary);
  font-weight: 700;
}
.lang-divider { color: var(--color-border); font-size: 0.75rem; }

.hamburger-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.hamburger-button:hover { background: var(--color-surface-alt); }
.hamburger-button span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger-button.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-button.open span:nth-child(2) { opacity: 0; }
.hamburger-button.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 999;
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 32px;
}
.mobile-menu-overlay.open {
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
  pointer-events: all;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease 0.35s, transform 0.3s ease 0.35s;
}
.mobile-menu-overlay.open .mobile-menu-links {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--color-text-light);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu-links a:hover { color: var(--color-accent); padding-left: 8px; }
.mobile-lang-switcher {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease 0.45s, transform 0.3s ease 0.45s;
}
.mobile-menu-overlay.open .mobile-lang-switcher {
  opacity: 1;
  transform: translateY(0);
}
.mobile-lang-switcher .lang-btn {
  font-size: 1rem;
  color: rgba(240,239,233,0.5);
}
.mobile-lang-switcher .lang-btn.active { color: var(--color-accent); }
.mobile-lang-switcher .lang-divider { color: rgba(255,255,255,0.2); }

/* =========================================
   PAGE FOOTER
   ========================================= */
.page-footer {
  background: var(--color-dark);
  color: var(--color-text-light);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-brand .footer-logo img { height: 32px; filter: brightness(0) invert(1); }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(240,239,233,0.55);
  line-height: 1.7;
  max-width: 240px;
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(240,239,233,0.4);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(240,239,233,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item i {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 0.9rem;
  color: rgba(240,239,233,0.65);
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(240,239,233,0.35);
}
.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  font-size: 0.82rem;
  color: rgba(240,239,233,0.35);
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: rgba(240,239,233,0.7); }

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
  min-height: 100vh;
  background: var(--color-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,91,227,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-bg-shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,160,32,0.10) 0%, transparent 70%);
  bottom: 0; left: -80px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,91,227,0.15);
  border: 1px solid rgba(45,91,227,0.25);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow i { font-size: 0.75rem; }
.hero-section h1 {
  color: var(--color-text-light);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-section h1 span {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-section > .container > .hero-content > p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(240,239,233,0.65);
  max-width: 580px;
  margin-bottom: 40px;
}


.hero-progress-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 52px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}
.progress-step-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: rgba(45,91,227,0.15);
  border: 1px solid rgba(45,91,227,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: background 0.3s, box-shadow 0.3s;
}
.progress-step:hover .progress-step-icon {
  background: rgba(45,91,227,0.28);
  box-shadow: var(--shadow-primary);
}
.progress-step-icon i {
  font-size: 1.2rem;
  color: var(--color-primary-light);
}
.progress-step-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(240,239,233,0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}
.progress-step-connector {
  flex: 0 0 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(45,91,227,0.4), rgba(45,91,227,0.1));
  margin-bottom: 28px;
}

/* =========================================
   BENTO GRID SECTIONS
   ========================================= */
.bento-section {
  padding: 80px 0;
  position: relative;
}
.bento-section.dark-section {
  background: var(--color-dark);
}
.bento-section.light-section {
  background: var(--color-bg);
}
.bento-section.surface-section {
  background: var(--color-surface);
}

.bento-grid {
  display: grid;
  gap: var(--gap-bento);
}
.bento-grid-2col { grid-template-columns: repeat(2, 1fr); }
.bento-grid-3col { grid-template-columns: repeat(3, 1fr); }
.bento-grid-4col { grid-template-columns: repeat(4, 1fr); }
.bento-grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.bento-cell {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  position: relative;
}
.bento-cell:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.bento-cell.cell-dark {
  background: var(--color-dark-mid);
  color: var(--color-text-light);
}
.bento-cell.cell-dark h3,
.bento-cell.cell-dark h4 { color: var(--color-text-light); }
.bento-cell.cell-dark p { color: rgba(240,239,233,0.6); }
.bento-cell.cell-primary {
  background: var(--color-primary);
  color: white;
}
.bento-cell.cell-primary h3,
.bento-cell.cell-primary h4 { color: white; }
.bento-cell.cell-primary p { color: rgba(255,255,255,0.75); }
.bento-cell.cell-accent {
  background: var(--color-accent);
  color: var(--color-dark);
}
.bento-cell.cell-accent h3,
.bento-cell.cell-accent h4 { color: var(--color-dark); }
.bento-cell.cell-blue { background: var(--color-cell-blue); }
.bento-cell.cell-amber { background: var(--color-cell-amber); }
.bento-cell.cell-surface-alt { background: var(--color-surface-alt); }

.bento-cell.span-2-col { grid-column: span 2; }
.bento-cell.span-2-row { grid-row: span 2; }
.bento-cell.span-full { grid-column: 1 / -1; }

.bento-cell-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.bento-cell-image.tall { height: 320px; }

.bento-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.bento-icon-wrap.icon-primary {
  background: var(--color-cell-blue);
  color: var(--color-primary);
}
.bento-icon-wrap.icon-accent {
  background: var(--color-cell-amber);
  color: var(--color-accent);
}
.bento-icon-wrap.icon-light {
  background: rgba(255,255,255,0.12);
  color: var(--color-text-light);
}
.bento-icon-wrap.icon-dark {
  background: rgba(26,26,46,0.08);
  color: var(--color-dark);
}
.bento-icon-wrap i { font-size: 1.3rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.section-label.light { color: rgba(240,239,233,0.5); }
.section-label.accent { color: var(--color-accent); }
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-heading.light { color: var(--color-text-light); }

.section-subtext {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 560px;
}
.section-subtext.light { color: rgba(240,239,233,0.6); }

/* =========================================
   SECTION 1 - SERVICES BENTO
   ========================================= */
.services-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: var(--gap-bento);
}
.services-intro-cell {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}
.services-intro-cell .cell-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.services-intro-cell .cell-content {
  position: relative;
  z-index: 2;
}
.services-stat-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 280px;
}
.stat-big {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

/* =========================================
   SECTION 3 - METHODOLOGY (NARROW, LIGHT)
   ========================================= */
.methodology-section {
  padding: 60px 0;
  background: var(--color-surface);
}
.methodology-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-bento);
  margin-top: 48px;
}
.methodology-step {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.methodology-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(45,91,227,0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.methodology-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--color-text);
}
.methodology-step p {
  font-size: 0.88rem;
  line-height: 1.65;
}

/* =========================================
   SECTION 4 - DARK WIDE (TOPICS)
   ========================================= */
.topics-section {
  padding: 80px 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}
.topics-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.topics-visual {
  position: relative;
}
.topics-visual-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.topics-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-accent);
  color: var(--color-dark);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-accent);
}
.topics-badge .badge-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
}
.topics-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.topic-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  transition: background 0.25s, border-color 0.25s;
}
.topic-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(45,91,227,0.3);
}
.topic-item-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(45,91,227,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.topic-item-icon i { color: var(--color-primary-light); font-size: 1rem; }
.topic-item h4 {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 4px;
}
.topic-item p {
  font-size: 0.85rem;
  color: rgba(240,239,233,0.5);
  line-height: 1.5;
}

/* =========================================
   SECTION 5 - INFO BLOCKS (BRIGHT)
   ========================================= */
.info-blocks-section {
  padding: 80px 0;
  background: var(--color-bg);
}
.info-blocks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-bento);
  margin-top: 48px;
}
.info-block-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.info-block-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(45,91,227,0.2);
}
.info-block-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-cell-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.info-block-card:hover .info-block-icon {
  background: var(--color-primary);
  box-shadow: var(--shadow-primary);
}
.info-block-icon i {
  font-size: 1.4rem;
  color: var(--color-primary);
  transition: color 0.3s;
}
.info-block-card:hover .info-block-icon i { color: white; }
.info-block-text h4 { margin-bottom: 8px; font-size: 1.05rem; }
.info-block-text p { font-size: 0.9rem; line-height: 1.7; }

/* =========================================
   SECTION 6 - MINIMAL CTA
   ========================================= */
.minimal-cta-section {
  padding: 100px 0;
  background: var(--color-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.minimal-cta-section .cta-bg-shape {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,91,227,0.12) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.minimal-cta-section h2 {
  color: var(--color-text-light);
  max-width: 680px;
  margin: 0 auto 12px;
  letter-spacing: -0.02em;
}
.minimal-cta-section .cta-sub {
  color: rgba(240,239,233,0.55);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-primary);
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
  min-height: 52px;
}
.btn-primary:hover {
  background: var(--color-primary-light);
  box-shadow: 0 12px 32px rgba(45,91,227,0.35);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-primary);
  transition: background 0.25s, color 0.25s, transform 0.2s;
  min-height: 52px;
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-accent);
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
  min-height: 52px;
}
.btn-accent:hover {
  background: var(--color-accent-light);
  box-shadow: 0 12px 32px rgba(232,160,32,0.35);
  transform: translateY(-2px);
}

/* =========================================
   SECTION 7 - CONTACT PREVIEW (LIGHT)
   ========================================= */
.contact-preview-section {
  padding: 80px 0;
  background: var(--color-bg);
}
.contact-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  margin-bottom: 12px;
  transition: box-shadow 0.25s;
}
.contact-detail-item:hover { box-shadow: var(--shadow-md); }
.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-cell-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon i { color: var(--color-primary); font-size: 1rem; }
.contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
}

/* =========================================
   INNER PAGES - PAGE HEADER
   ========================================= */
.page-header {
  background: var(--color-dark);
  padding: calc(var(--nav-height) + 64px) 0 64px;
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-header-bg::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,91,227,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.page-header h1 { color: var(--color-text-light); margin-bottom: 16px; }
.page-header p {
  color: rgba(240,239,233,0.6);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 560px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.breadcrumb a, .breadcrumb span {
  font-size: 0.82rem;
  color: rgba(240,239,233,0.4);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: rgba(240,239,233,0.8); }
.breadcrumb i { font-size: 0.65rem; color: rgba(240,239,233,0.25); }

/* =========================================
   TEAM PAGE
   ========================================= */
.team-section { padding: 80px 0; background: var(--color-bg); }
.team-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-bento);
  margin-top: 48px;
}
.team-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s, transform 0.3s;
}
.team-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.team-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.team-card-body { padding: 24px; }
.team-card-body h4 { margin-bottom: 4px; font-size: 1.1rem; }
.team-role {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-card-body p { font-size: 0.88rem; line-height: 1.65; }

.team-values-section {
  padding: 80px 0;
  background: var(--color-dark);
}
.values-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-bento);
  margin-top: 48px;
}
.value-cell {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background 0.25s, border-color 0.25s;
}
.value-cell:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(45,91,227,0.25);
}
.value-cell h4 { color: var(--color-text-light); margin-bottom: 10px; }
.value-cell p { color: rgba(240,239,233,0.55); font-size: 0.9rem; }

/* =========================================
   PROJECTS PAGE
   ========================================= */
.projects-section { padding: 80px 0; background: var(--color-bg); }
.projects-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-bento);
  margin-top: 48px;
}
.project-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s, transform 0.3s;
}
.project-card.featured { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
.project-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-3px); }
.project-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.project-card.featured .project-card-img { height: 100%; min-height: 320px; }
.project-card-body { padding: 28px; }
.project-type-tag {
  display: inline-block;
  background: var(--color-cell-blue);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.project-card-body h3 { margin-bottom: 10px; font-size: 1.3rem; }
.project-card-body p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.project-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.project-detail-tag {
  background: var(--color-bg);
  color: var(--color-text-muted);
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

/* =========================================
   PROCESS PAGE
   ========================================= */
.process-section { padding: 80px 0; background: var(--color-bg); }
.process-timeline {
  position: relative;
  margin-top: 60px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), rgba(45,91,227,0.1));
}
.process-step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}
.process-step-number {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-primary);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.process-step-content {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.process-step-content:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(45,91,227,0.2);
}
.process-step-content h3 { margin-bottom: 12px; font-size: 1.3rem; }
.process-step-content p { font-size: 0.95rem; line-height: 1.75; }
.process-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.process-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.process-detail-item i { color: var(--color-primary); font-size: 0.85rem; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-section { padding: 80px 0; background: var(--color-bg); }
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  min-height: 48px;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45,91,227,0.1);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B80' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.privacy-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.privacy-checkbox-wrap input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
  cursor: pointer;
}
.privacy-checkbox-wrap label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.privacy-checkbox-wrap a { color: var(--color-primary); text-decoration: underline; }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 24px;
}
.map-container iframe { display: block; border: 0; }

/* =========================================
   THANKS PAGE
   ========================================= */
.thanks-page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}
.thanks-main::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,91,227,0.12) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.thanks-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 60px 52px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}
.thanks-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--color-cell-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.thanks-icon-wrap i {
  font-size: 2rem;
  color: var(--color-primary);
}
.thanks-card h2 { margin-bottom: 16px; font-size: 2rem; }
.thanks-card p { margin-bottom: 32px; }

/* =========================================
   LEGAL PAGES
   ========================================= */
.legal-section { padding: 80px 0; background: var(--color-bg); }
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--color-text);
}
.legal-content h3 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--color-text);
}
.legal-content p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.legal-key-term {
  font-weight: 700;
  color: var(--color-primary);
}
.legal-definition-box {
  background: var(--color-cell-blue);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin: 16px 0 24px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.legal-definition-box strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.legal-clause {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 16px;
}
.legal-clause-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.legal-tech-note {
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 12px 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.legal-tech-note i { color: var(--color-accent); margin-top: 2px; flex-shrink: 0; }

/* =========================================
   COOKIE CONSENT - MINIMALIST TEXT LINK
   ========================================= */
.cookie-preferences-link {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  background: var(--color-surface);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.cookie-preferences-link:hover {
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}
.cookie-preferences-link i { font-size: 0.8rem; }
.cookie-preferences-link.pulse {
  animation: cookiePulse 2s ease-in-out 3;
}
@keyframes cookiePulse {
  0%, 100% { box-shadow: var(--shadow-md); }
  50% { box-shadow: 0 0 0 6px rgba(45,91,227,0.12), var(--shadow-md); }
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.55);
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.cookie-modal-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  transform: translateY(16px);
  transition: transform 0.3s ease;
}
.cookie-modal-backdrop.visible .cookie-modal { transform: translateY(0); }
.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.cookie-modal-header h3 {
  font-size: 1.2rem;
  color: var(--color-text);
}
.cookie-modal-close {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--color-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  border: none;
}
.cookie-modal-close:hover { background: var(--color-border); }
.cookie-modal-close i { font-size: 0.85rem; color: var(--color-text-muted); }
.cookie-modal p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category-info h4 { font-size: 0.9rem; margin-bottom: 4px; }
.cookie-category-info p { font-size: 0.8rem; margin: 0; }
.cookie-toggle {
  position: relative;
  width: 44px; height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.25s;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: white;
  left: 3px; top: 3px;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--color-primary); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.6; cursor: not-allowed; }
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cookie-btn-accept-all {
  flex: 1;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  min-height: 44px;
}
.cookie-btn-accept-all:hover { background: var(--color-primary-light); }
.cookie-btn-save {
  flex: 1;
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
  min-height: 44px;
}
.cookie-btn-save:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================
   SECTION OVERLAP
   ========================================= */
.overlap-down {
  margin-bottom: -60px;
  padding-bottom: 120px;
  position: relative;
  z-index: 2;
}
.overlap-up {
  padding-top: 120px;
  position: relative;
  z-index: 1;
}

/* =========================================
   UTILITY
   ========================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4 { gap: 16px; }
.gap-3 { gap: 12px; }
.w-full { width: 100%; }
.min-h-screen { min-height: 100vh; }
.flex-col { flex-direction: column; }
.flex { display: flex; }
.items-center { align-items: center; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .services-bento-grid { grid-template-columns: 1fr 1fr; }
  .services-intro-cell { grid-column: span 2; }
  .methodology-steps { grid-template-columns: repeat(2, 1fr); }
  .topics-grid { grid-template-columns: 1fr; gap: 40px; }
  .topics-visual-img { height: 320px; }
  .topics-badge { bottom: -16px; right: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .contact-layout { grid-template-columns: 1fr; }
  .team-bento { grid-template-columns: repeat(2, 1fr); }
  .projects-bento { grid-template-columns: 1fr; }
  .project-card.featured { grid-template-columns: 1fr; }
  .project-card.featured .project-card-img { height: 240px; }
  .process-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; --gap-bento: 12px; }
  .navigation-links { display: none; }
  .hamburger-button { display: flex; }
  .lang-switcher { display: none; }

  .services-bento-grid { grid-template-columns: 1fr; }
  .services-intro-cell { grid-column: span 1; min-height: 220px; }
  .bento-cell.span-2-col { grid-column: span 1; }
  .bento-grid-2col,
  .bento-grid-3col,
  .bento-grid-4col { grid-template-columns: 1fr; }
  .methodology-steps { grid-template-columns: 1fr; }
  .info-blocks-grid { grid-template-columns: 1fr; }
  .contact-preview-grid { grid-template-columns: 1fr; }
  .values-bento { grid-template-columns: 1fr; }
  .team-bento { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-progress-steps { flex-direction: column; gap: 20px; padding: 24px; }
  .progress-step-connector { display: none; }
  .contact-form-wrap { padding: 28px 20px; }
  .thanks-card { padding: 40px 28px; }
  .process-timeline::before { display: none; }
  .process-step-item { grid-template-columns: 1fr; }
  .process-step-number { width: 52px; height: 52px; font-size: 1.2rem; }
  .process-detail-grid { grid-template-columns: 1fr; }
  .topics-badge { position: static; margin-top: 16px; display: inline-block; }
  .cookie-modal { padding: 28px 20px; }
  .cookie-modal-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .btn-primary, .btn-secondary, .btn-accent { width: 100%; justify-content: center; }
  .hero-progress-steps { padding: 20px 16px; }
}