/* ============================================
   RUELAS WHOLESALE — Vibrant Professional Design
   ============================================ */

/* --- Color Palette ---
   Primary:    #1B4DFF (vivid blue)
   Secondary:  #00C9A7 (teal/mint green)
   Accent:     #6C5CE7 (soft purple)
   Dark BG:    #0B1120 (deep navy)
   Light BG:   #F5F7FA
   Success:    #00D68F
   Text:       #1a1a2e / #4a5568 / #718096
*/

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #ffffff;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 17, 32, 0.0);
  backdrop-filter: blur(0px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 77, 255, 0.08);
  box-shadow: 0 2px 20px rgba(11, 17, 32, 0.06);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
  transition: color 0.4s;
}

.nav__logo-icon {
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.nav__logo-text strong {
  font-weight: 800;
}

.nav__logo-sub {
  font-weight: 500;
  opacity: 0.6;
  font-size: 16px;
}

.nav--scrolled .nav__logo {
  color: #0B1120;
}

.nav--scrolled .nav__logo-sub {
  opacity: 0.5;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s;
}

.nav__link:hover,
.nav__link.active {
  color: #ffffff;
}

.nav--scrolled .nav__link {
  color: #4a5568;
}

.nav--scrolled .nav__link:hover,
.nav--scrolled .nav__link.active {
  color: #1B4DFF;
}

.nav__link--cta {
  background: rgba(27, 77, 255, 0.3);
  color: #ffffff !important;
  border: 1px solid rgba(27, 77, 255, 0.5);
}

.nav__link--cta:hover {
  background: rgba(27, 77, 255, 0.5);
}

.nav--scrolled .nav__link--cta {
  background: #1B4DFF;
  color: #ffffff !important;
  border-color: #1B4DFF;
}

.nav--scrolled .nav__link--cta:hover {
  background: #1640d9;
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav--scrolled .nav__toggle span {
  background: #0B1120;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn--primary {
  background: #1B4DFF;
  color: #ffffff;
  border-color: #1B4DFF;
}

.btn--primary:hover {
  background: #1640d9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27, 77, 255, 0.35);
}

.btn--outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
  border-color: #00C9A7;
  color: #00C9A7;
  background: rgba(0, 201, 167, 0.08);
  transform: translateY(-2px);
}

.btn--dark {
  background: #0B1120;
  color: #ffffff;
  border-color: #0B1120;
}

.btn--dark:hover {
  background: #1B4DFF;
  border-color: #1B4DFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27, 77, 255, 0.25);
}

.btn--full {
  width: 100%;
}

/* --- Hero Section (Homepage) --- */
.hero {
  background: #0B1120;
  padding: 180px 0 140px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(27, 77, 255, 0.15) 0%, rgba(108, 92, 231, 0.05) 40%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 48px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Page Hero (Inner pages) --- */
.page-hero {
  background: #0B1120;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27, 77, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.page-hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00C9A7;
  margin-bottom: 16px;
}

.page-hero__title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero__subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 580px;
}

/* --- Sections --- */
.section {
  padding: 100px 0;
}

.section--white { background: #ffffff; }
.section--light { background: #F5F7FA; }
.section--compact { padding: 60px 0; }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1B4DFF;
  margin-bottom: 12px;
  background: rgba(27, 77, 255, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
}

.section__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  color: #0B1120;
  line-height: 1.15;
}

/* --- Cards --- */
.cards {
  display: grid;
  gap: 24px;
}

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

.card {
  padding: 40px 32px;
  border: 1px solid #e8ecf1;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1B4DFF, #00C9A7);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  border-color: rgba(27, 77, 255, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(27, 77, 255, 0.08), 0 4px 20px rgba(0, 0, 0, 0.04);
}

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

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(27, 77, 255, 0.1), rgba(0, 201, 167, 0.1));
  border-radius: 14px;
  margin-bottom: 24px;
  color: #1B4DFF;
}

.card__title {
  font-size: 20px;
  font-weight: 700;
  color: #0B1120;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.card__text {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
}

.card--featured {
  background: #ffffff;
}

/* --- Features (Why Choose Us) --- */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}

.feature__number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #1B4DFF, #00C9A7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.feature__title {
  font-size: 20px;
  font-weight: 700;
  color: #0B1120;
  margin-bottom: 8px;
}

.feature__text {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
}

/* --- Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}

.value__number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #1B4DFF, #00C9A7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.value__title {
  font-size: 20px;
  font-weight: 700;
  color: #0B1120;
  margin-bottom: 8px;
}

.value__text {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
}

/* --- Platforms --- */
.platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.platform {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid #e8ecf1;
  border-radius: 16px;
  transition: all 0.3s;
  background: #ffffff;
  position: relative;
}

.platform:hover {
  border-color: rgba(27, 77, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 77, 255, 0.06);
}

.platform__name {
  font-size: 20px;
  font-weight: 700;
  color: #0B1120;
  margin-bottom: 4px;
}

.platform__desc {
  font-size: 13px;
  color: #718096;
  font-weight: 500;
}

/* --- Content Blocks (About page) --- */
.content-block {
  margin-bottom: 0;
}

.content-block__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: #0B1120;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.content-block p {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-block p:last-child {
  margin-bottom: 0;
}

/* --- Service Blocks --- */
.service-block__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service-block__number {
  font-size: 14px;
  font-weight: 700;
  color: #1B4DFF;
  background: rgba(27, 77, 255, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
}

.service-block__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #0B1120;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.service-block__intro {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 40px;
}

.service-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.service-block__grid h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0B1120;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-block__grid ul {
  list-style: none;
  padding: 0;
}

.service-block__grid li {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.service-block__grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1B4DFF;
}

.service-block__grid p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.8;
}

.divider {
  max-width: 880px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e8ecf1, transparent);
}

/* --- Process Steps --- */
.process {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.process__step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.process__connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #1B4DFF, #00C9A7);
  margin-top: 28px;
  flex-shrink: 0;
  border-radius: 2px;
}

.process__number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #1B4DFF, #00C9A7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.process__title {
  font-size: 18px;
  font-weight: 700;
  color: #0B1120;
  margin-bottom: 8px;
}

.process__text {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.7;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info__block {
  margin-bottom: 40px;
}

.contact-info__block:last-child {
  margin-bottom: 0;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(27, 77, 255, 0.1), rgba(0, 201, 167, 0.1));
  border-radius: 12px;
  margin-bottom: 16px;
  color: #1B4DFF;
}

.contact-info__block h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0B1120;
  margin-bottom: 6px;
}

.contact-info__block p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
}

.contact-info__note {
  font-size: 13px;
  color: #718096;
  font-weight: 500;
}

.contact-form-wrapper {
  background: #F5F7FA;
  padding: 48px;
  border-radius: 20px;
  border: 1px solid #e8ecf1;
}

.contact-form__title {
  font-size: 24px;
  font-weight: 700;
  color: #0B1120;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form__field {
  margin-bottom: 20px;
}

.contact-form__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid #d2d8e0;
  border-radius: 10px;
  background: #ffffff;
  color: #0B1120;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: #1B4DFF;
  box-shadow: 0 0 0 4px rgba(27, 77, 255, 0.1);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* --- CTA Section --- */
.cta {
  background: #0B1120;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(27, 77, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.cta__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* --- Footer --- */
.footer {
  background: #0B1120;
  border-top: 1px solid rgba(27, 77, 255, 0.1);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.footer__logo strong {
  font-weight: 800;
}

.footer__logo-icon {
  flex-shrink: 0;
}

.footer__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.footer__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00C9A7;
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a,
.footer__links li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer__links a:hover {
  color: #1B4DFF;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-muted { font-size: 15px; color: #718096; line-height: 1.7; max-width: 580px; margin: 0 auto; }

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children for sequential reveal */
.fade-in.visible .card:nth-child(2),
.fade-in.visible .feature:nth-child(2),
.fade-in.visible .platform:nth-child(2) { transition-delay: 0.1s; }
.fade-in.visible .card:nth-child(3),
.fade-in.visible .feature:nth-child(3),
.fade-in.visible .platform:nth-child(3) { transition-delay: 0.2s; }
.fade-in.visible .card:nth-child(4),
.fade-in.visible .feature:nth-child(4),
.fade-in.visible .platform:nth-child(4) { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .cards--three { grid-template-columns: repeat(2, 1fr); }
  .platforms { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .features { gap: 40px 48px; }
  .service-block__grid { gap: 32px; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #0B1120;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .nav__menu.active {
    right: 0;
  }

  .nav__menu .nav__link {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 12px 24px;
  }

  .nav__menu .nav__link:hover,
  .nav__menu .nav__link.active {
    color: #ffffff !important;
  }

  .nav__menu .nav__link--cta {
    background: rgba(27, 77, 255, 0.2);
    border-color: rgba(27, 77, 255, 0.4);
    margin-top: 16px;
  }

  .nav__toggle { z-index: 1001; }

  .hero { padding: 140px 0 100px; }
  .page-hero { padding: 130px 0 80px; }

  .section { padding: 72px 0; }

  .cards--three,
  .cards--two { grid-template-columns: 1fr; }

  .features,
  .values-grid { grid-template-columns: 1fr; gap: 40px; }

  .platforms { grid-template-columns: 1fr 1fr; }

  .hero__buttons { flex-direction: column; align-items: center; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .service-block__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .process__connector {
    width: 2px;
    height: 32px;
    margin-top: 0;
  }

  .process__step {
    padding: 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section__header {
    margin-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .hero__title { letter-spacing: -1px; }
  .page-hero__title { letter-spacing: -0.8px; }
  .btn { padding: 14px 28px; font-size: 14px; }
  .container { padding: 0 20px; }
}
