:root {
  --bg-header: #f3f3f3;
  --text-dark: #1f1f1f;
  --text-light: #ffffff;
  --primary-1: #342882;
  --primary-2: #5b2eb5;
  --primary-3: #1d98f0;
  --accent: #63d7c8;
  --accent-hover: #4ecabb;
  --container: 1400px;
  --header-h: 78px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  color: var(--text-dark);
  background: #fff;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}



.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: var(--bg-header);
  z-index: 1000;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.05);
}

.site-header .header-inner {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding-left: 34px;
  padding-right: 34px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo img {
  width: 88px;
  height: auto;
  flex-shrink: 0;
}

.logo-tagline {
  font-size: 13px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #4a4a4a;
  white-space: nowrap;
  text-transform: uppercase;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  min-width: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav a {
  font-size: 1rem;
  font-weight: 500;
  color: #1f1f1f;
  transition: 0.25s ease;
}

.nav a:hover {
  color: #342882;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.btn-diagnostico {
  background: var(--accent);
  color: #111;
  font-weight: 700;
}

.btn-diagnostico:hover {
  background: var(--accent-hover);
}

.btn-header.is-current {
  background: #342882;
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #222;
  border-radius: 999px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;
  padding-top: var(--header-h);
  background: linear-gradient(90deg, #252164 0%, #5b2eb5 45%, #1d98f0 100%);
  display: flex;
  align-items: center;
}

.hero-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 60px;
}

.hero-copy {
  padding-left: 0;
  max-width: 600px;
  min-width: 0;
  color: #fff;
}

.hero-copy h1 {
  font-size: 90px;
  line-height: 90px;
  font-weight: 700;
  margin-bottom: 40px;
}

.hero-copy p {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.btn-primary,
.btn-secondary {
  width: min(100%, 450px);
  max-width: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 16px 32px;
  background: var(--accent);
  color: #111;
  border-radius: 999px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.06px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  border-radius: 999px;
  font-size: 24px;
  font-weight: 500;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  animation: whatsappPulse 1.6s infinite;
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 14px 32px rgba(37, 211, 102, 0.35),
      0 0 0 0 rgba(37, 211, 102, 0.55);
  }

  70% {
    transform: scale(1.04);
    box-shadow:
      0 14px 32px rgba(37, 211, 102, 0.35),
      0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 14px 32px rgba(37, 211, 102, 0.35),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =========================
   HEADER - LAPTOP / DESKTOP
   1024px - 1279px
========================= */

@media (max-width: 1279px) {
  .site-header .header-inner {
    max-width: 1260px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .logo img {
    width: 84px;
  }

  .logo-tagline {
    font-size: 11px;
  }

  .nav-wrap {
    gap: 34px;
  }

  .nav {
    gap: 28px;
  }

  .header-actions {
    gap: 10px;
  }

  .btn-header {
    padding: 0 20px;
  }
}

/* =========================
   HERO - LAPTOP / DESKTOP
   1024px - 1279px
========================= */

@media (max-width: 1279px) {
  .container {
    max-width: 1100px;
    padding: 0 24px;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hero-copy {
    max-width: 560px;
  }

  .hero-copy h1 {
    font-size: 78px;
    line-height: 78px;
    margin-bottom: 28px;
  }

  .hero-copy p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 24px;
  }

  .btn-primary,
  .btn-secondary {
    width: 380px;
    font-size: 20px;
    height: 56px;
  }

  .hero-image img {
    max-width: 450px;
  }
}

/* =========================
   HEADER - TABLET
   768px - 1024px
========================= */

@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --header-h: 76px;
  }

  .site-header .header-inner {
    max-width: 100%;
    padding-left: 28px;
    padding-right: 28px;
    gap: 16px;
  }

  .logo {
    gap: 10px;
  }

  .logo img {
    width: 78px;
  }

  .logo-tagline {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-wrap {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    margin-left: 0;
    max-height: calc(100vh - var(--header-h) - 32px);
    overflow-y: auto;
  }

  .nav-wrap.active {
    display: flex;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn-header {
    width: 100%;
  }

  .nav-login-link {
    width: 44px;
    align-self: center;
  }
}

/* =========================
   HERO - TABLET
   768px - 1024px
========================= */

@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-inner {
    width: 100%;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px 0 22px;
    text-align: center;
  }

  .hero-copy {
    max-width: 760px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-copy h1 {
    font-size: 64px;
    line-height: 64px;
    margin-bottom: 24px;
  }

  .hero-copy p {
    max-width: 720px;
    margin: 0 auto 24px;
    font-size: 20px;
    line-height: 30px;
  }

  .hero-actions {
    width: 100%;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 405px;
    height: 56px;
    font-size: 18px;
  }

  .hero-image {
    display: flex;
    justify-content: center;
  }

  .hero-image img {
    max-width: 420px;
    width: 100%;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    left: 16px;
    bottom: 16px;
  }

  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }
}

/* =========================
   HEADER - MOBILE
   <= 767px
========================= */

@media (max-width: 767px) {
  :root {
    --header-h: 72px;
  }

  .site-header .header-inner {
    padding-left: 20px;
    padding-right: 20px;
    gap: 14px;
  }

  .logo {
    gap: 8px;
  }

  .logo img {
    width: 76px;
  }

  .logo-tagline {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-wrap {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    background: #ffffff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-left: 0;
    max-height: calc(100vh - var(--header-h) - 28px);
    overflow-y: auto;
  }

  .nav-wrap.active {
    display: flex;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn-header {
    width: 100%;
  }

  .nav-login-link {
    width: 44px;
    align-self: center;
  }
}

/* =========================
   HERO - MOBILE
   <= 767px
========================= */

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-inner {
    width: 100%;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1px;
    padding: 20px 0 14px;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero-copy h1 {
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 16px;
  }

  .hero-copy p {
    font-size: 15px;
    line-height: 24px;
    margin: 0 auto 18px;
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
    align-items: center;
    padding-left: 8px;
    padding-right: 8px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 100%;
    height: 50px;
    font-size: 16px;
  }

  .hero-image {
    display: flex;
    justify-content: center;
  }

  .hero-image img {
    max-width: 240px;
    width: 100%;
  }

  .whatsapp-float {
    width: 46px;
    height: 46px;
    left: 12px;
    bottom: 12px;
  }

  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}

/* =========================
   HERO - MOBILE PEQUEÑO
   <= 390px
========================= */

@media (max-width: 390px) {
  .hero-inner {
    padding-left: 16px;
    padding-right: 16px;
    gap: 12px;
  }

  .hero-copy {
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero-copy h1 {
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 12px;
  }

  .hero-copy p {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 14px;
  }

  .hero-actions {
    padding-left: 8px;
    padding-right: 8px;
  }

  .btn-primary,
  .btn-secondary {
    height: 46px;
    font-size: 15px;
    padding: 12px 18px;
  }

  .hero-image img {
    max-width: 190px;
  }
}

/* =========================
   SECCIÓN NOSOTROS
========================= */
.about-section {
  background: #f3f3f3;
  padding: 88px 0;
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.about-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.about-image picture,
.about-image img {
  display: block;
  width: 100%;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.about-content {
  color: #111;
}

.about-content h2 {
  font-size: 45px;
  line-height: 1.02;
  font-weight: 700;
  margin-bottom: 28px;
}

.about-content p {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
  max-width: 620px;
}

.about-list {
  padding-left: 20px;
}

.about-list li {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 4px;
}

/* Laotop */
@media (max-width: 1279px) {
  .about-section {
    padding: 72px 0;
  }

  .about-container {
    gap: 36px;
  }

  .about-content h2 {
    font-size: 48px;
    margin-bottom: 22px;
  }

  .about-content p {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .about-list li {
    font-size: 18px;
  }
}

/* Tablet nosotros 768px - 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
  .about-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-content {
    order: 1;
  }

  .about-image {
    order: 2;
  }

  .about-content h2 {
    font-size: 48px;
    line-height: 1.05;
    margin-bottom: 18px;
  }

  .about-content p {
    font-size: 18px;
    line-height: 28px;
    max-width: 100%;
  }
}


/* Mobile nosotros <= 767px */
@media (max-width: 767px) {
  .about-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-content {
    order: 1;
    text-align: center;
  }

  .about-image {
    order: 2;
  }

  .about-content h2 {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }

  .about-list {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
    padding-left: 20px;
  }

  .about-image img {
    border-radius: 18px;
  }
}

/* Mobile */
@media (max-width: 599px) {
  .about-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-container {
    gap: 22px;
  }

  .about-content {
    text-align: center;
  }

  .about-content h2 {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }

  .about-list {
    display: inline-block;
    text-align: left;
    padding-left: 20px;
    margin: 0 auto;
  }

  .about-image img {
    border-radius: 20px;
  }
}


/* =========================
   SECCIÓN SERVICIOS
========================= */
.services-section {
  background: #ededed;
  padding: 88px 0 96px;
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.services-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 56px;
  padding-right: 56px;
}

.services-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-header h2 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.services-header p {
  font-size: 24px;
  line-height: 1.35;
  color: #111;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  border-radius: 28px;
  padding: 28px 24px 26px;
  color: #fff;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card--purple {
  background: #302673;
}

.service-card--lavender {
  background: #6383E6;
}

.service-card--blue {
  background: #2080FF;
}

.service-card--green {
  background: #268E7B;
}

.service-icon {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}

.service-icon img {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: contain;
}

.service-card h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.35;
  max-width: 95%;
}

/* Laptop */
@media (max-width: 1279px) {
  .services-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .services-header h2 {
    font-size: 56px;
  }

  .services-header p {
    font-size: 21px;
  }

  .services-grid {
    max-width: 860px;
    gap: 24px;
  }

  .service-card {
    min-height: 190px;
    padding: 24px 22px;
  }

  .service-card h3 {
    font-size: 22px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .services-section {
    padding: 72px 0 80px;
  }

  .services-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }

  .services-header {
    margin-bottom: 36px;
  }

  .services-header h2 {
    font-size: 48px;
    margin-bottom: 10px;
  }

  .services-header p {
    font-size: 18px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 100%;
  }

  .service-card {
    min-height: 180px;
    border-radius: 24px;
    padding: 22px 20px;
  }

  .service-icon img {
    width: 44px;
    height: 44px;
  }

  .service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 1.35;
    max-width: 100%;
  }
}

/* Mobile  */
@media (max-width: 767px) {
  .services-section {
    padding: 56px 0 64px;
  }

  .services-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-header {
    margin-bottom: 28px;
  }

  .services-header h2 {
    font-size: 40px;
    line-height: 1.08;
    margin-bottom: 10px;
  }

  .services-header p {
    font-size: 16px;
    line-height: 1.4;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 100%;
  }

  .service-card {
    min-height: auto;
    border-radius: 22px;
    padding: 22px 18px;
  }

  .service-icon {
    margin-bottom: 14px;
  }

  .service-icon img {
    width: 40px;
    height: 40px;
  }

  .service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 1.4;
    max-width: 100%;
  }
}



/* =========================
   SECCIÓN METODOLOGÍA
========================= */
.methodology-section {
  background: #f7f7f7;
  padding: 88px 0 96px;
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.methodology-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 56px;
  padding-right: 56px;
}

.methodology-header {
  text-align: center;
  margin-bottom: 42px;
}

.methodology-header h2 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  color: #111;
}

.methodology-flow {
  display: grid;
  grid-template-columns: auto 84px auto 84px auto 84px auto;
  align-items: start;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.method-step {
  text-align: center;
  max-width: 190px;
}

.method-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
}

.method-icon img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.method-icon--dark {
  background: #302673;
}

.method-icon--purple {
  background: #602EAE;
}

.method-icon--blue {
  background: #6155F5;
}

.method-icon--mint {
  background: #59D9C1;
}

.method-step p {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  color: #111;
}

.method-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b2eb5;
  padding-top: 22px;
}

.method-arrow svg {
  width: 72px;
  height: 18px;
  display: block;
}

.method-arrow--green {
  color: #59D9C1;
}

/* Laptop */
@media (max-width: 1279px) {
  .methodology-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .methodology-header h2 {
    font-size: 56px;
  }

  .methodology-flow {
    grid-template-columns: auto 64px auto 64px auto 64px auto;
    max-width: 980px;
  }

  .method-step {
    max-width: 170px;
  }

  .method-step p {
    font-size: 18px;
  }

  .method-arrow svg {
    width: 56px;
  }
}

/* =========================
   TABLET
========================= */

@media (min-width: 768px) and (max-width: 1024px) {
  .methodology-section {
    padding: 72px 0 80px;
  }

  .methodology-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }

  .methodology-header {
    margin-bottom: 34px;
  }

  .methodology-header h2 {
    font-size: 48px;
  }

  .methodology-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 22px;
    max-width: 760px;
  }

  .method-arrow {
    display: none;
  }

  .method-step {
    max-width: 100%;
  }

  .method-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 14px;
  }

  .method-icon svg {
    width: 30px;
    height: 30px;
  }

  .method-step p {
    font-size: 18px;
    line-height: 1.3;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .methodology-section {
    padding: 56px 0 64px;
  }

  .methodology-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .methodology-header {
    margin-bottom: 28px;
  }

  .methodology-header h2 {
    font-size: 40px;
    line-height: 1.08;
  }

  .methodology-flow {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 100%;
  }

  .method-arrow {
    display: none;
  }

  .method-step {
    max-width: 100%;
  }

  .method-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 12px;
  }

  .method-icon img {
    width: 28px;
    height: 28px;
  }

  .method-step p {
    font-size: 18px;
    line-height: 1.3;
  }
}

/* =========================
   RESULTADOS
========================= */

.results-section {
  background: #c7dedc;
  padding: 80px 20px;
  scroll-margin-top: calc(var(--header-h) + 40px);
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.results-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
}

/* línea debajo del título */
.results-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #2f80ed;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}

/* item */
.result-item h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.result-item p {
  font-size: 16px;
  color: #333;
}

/* Tablet */

@media (max-width: 1023px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .results-title {
    font-size: 36px;
  }

  .result-item h3 {
    font-size: 32px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .results-section {
    padding: 60px 20px;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .results-title {
    font-size: 28px;
  }

  .result-item h3 {
    font-size: 28px;
  }
}

/* =========================
   TESTIMONIOS
========================= */
.testimonials-section {
  background: #f5f5f5;
  padding: 84px 0 92px;
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.testimonials-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 56px;
  padding-right: 56px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 42px;
}

.testimonials-header h2 {
  font-size: 64px;
  line-height: 1.08;
  font-weight: 700;
  color: #111;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.testimonial-card {
  background: #f1f4f9;
  border: 1px solid #dde3eb;
  border-radius: 22px;
  padding: 32px 28px 30px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-avatar--purple {
  background: #342882;
}

.testimonial-avatar--blue {
  background: #6987e6;
}

.testimonial-avatar--mint {
  background: #63d7c8;
}

.testimonial-meta h3 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.testimonial-meta span {
  font-size: 14px;
  line-height: 1.3;
  color: #6c7a89;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4c5b6d;
  font-style: italic;
}

/* Laptop*/
@media (max-width: 1279px) {
  .testimonials-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .testimonials-header h2 {
    font-size: 56px;
  }

  .testimonials-grid {
    gap: 24px;
  }

  .testimonial-card {
    padding: 28px 24px 26px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .testimonials-section {
    padding: 72px 0 80px;
  }

  .testimonials-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }

  .testimonials-header {
    margin-bottom: 32px;
  }

  .testimonials-header h2 {
    font-size: 48px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .testimonial-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .testimonial-top {
    margin-bottom: 20px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .testimonials-section {
    padding: 56px 0 64px;
  }

  .testimonials-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonials-header {
    margin-bottom: 26px;
  }

  .testimonials-header h2 {
    font-size: 38px;
    line-height: 1.12;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonial-card {
    min-height: auto;
    border-radius: 18px;
    padding: 22px 18px;
  }

  .testimonial-top {
    gap: 14px;
    margin-bottom: 18px;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .testimonial-meta h3 {
    font-size: 17px;
  }

  .testimonial-meta span {
    font-size: 13px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.6;
  }
}


/* =========================
  DIAGNÓSTICO -FORMULARIO
========================= */
.booking-section {
  padding: 72px 20px;
  background: #242061;
  scroll-margin-top: calc(var(--header-h) + 3px);
}

.booking-wrapper {
  max-width: 1180px;
  margin: 0 auto;
}

.booking-container {
  background: #f3f3f3;
  border-radius: 28px;
  padding: 48px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 390px);
  align-items: center;
  gap: 36px;
}

.booking-info {
  max-width: 520px;
}

.booking-info h2 {
  margin: 0 0 18px;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #151515;
}

.booking-info p {
  margin: 0 0 20px;
  max-width: 470px;
  font-size: 17px;
  line-height: 1.45;
  color: #4a4f59;
}

.booking-list {
  margin: 0 0 24px;
  padding-left: 22px;
}

.booking-list li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.35;
  color: #1f232b;
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #D8D8D8;
  border-radius: 999px;
  font-size: 16px;
  color: #333;
}

.booking-badge-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-badge-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.booking-form-card {
  display: flex;
  justify-content: center;
  width: 100%;
}

.booking-form {
  width: 100%;
  max-width: 390px;
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(19, 22, 34, 0.16);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.booking-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.booking-label {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #1e1e1e;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  background: #f9f9f9;
  font-family: inherit;
  font-size: 14px;
  color: #1b1b1b;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-form input::placeholder {
  color: #777;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: #63d7c8;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(99, 215, 200, 0.14);
}

.booking-input-wrap {
  position: relative;
  width: 100%;
}

.booking-picker-input {
  width: 100%;
  height: 48px;
  padding: 0 46px 0 14px !important;
  cursor: pointer;
}

.booking-picker-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2a2a2a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.booking-picker-btn svg {
  width: 18px;
  height: 18px;
}

.booking-time-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.booking-time-btn {
  height: 46px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  background: #f9f9f9;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #1b1b1b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.booking-time-btn:hover {
  border-color: #63d7c8;
  background: #ffffff;
}

.booking-time-btn.is-active {
  background: #63d7c8;
  border-color: #63d7c8;
  color: #fff;
  box-shadow: 0 8px 18px rgba(99, 215, 200, 0.22);
}

.booking-submit {
  margin-top: 6px;
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 14px;
  background: #59D9C1;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.booking-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(99, 215, 200, 0.28);
}

.booking-submit:active {
  transform: translateY(0);
}

.booking-feedback {
  min-height: 22px;
  margin: 10px 0 0;
  font-size: 13px;
  text-align: center;
  color: #666;
}

.booking-feedback.is-error {
  color: #d93025;
}

.booking-feedback.is-success {
  color: #1f8f63;
}

/* Flatpickr */
.flatpickr-calendar {
  border: 0 !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 40px rgba(18, 22, 33, 0.16) !important;
  padding: 8px !important;
  font-family: "Inter", sans-serif !important;
}

.flatpickr-month {
  height: 42px !important;
}

.flatpickr-current-month {
  padding-top: 6px !important;
  font-size: 15px !important;
}

span.flatpickr-weekday {
  color: #7b8190 !important;
  font-weight: 600 !important;
  font-size: 12px !important;
}

.flatpickr-day {
  border-radius: 10px !important;
  max-width: 36px;
  height: 36px !important;
  line-height: 36px !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #63d7c8 !important;
  border-color: #63d7c8 !important;
  color: #fff !important;
}

.flatpickr-day:hover {
  background: rgba(99, 215, 200, 0.12) !important;
  border-color: transparent !important;
}

@media (max-width: 1200px) {
  .booking-container {
    padding: 40px 36px;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
  }

  .booking-info h2 {
    font-size: clamp(34px, 4vw, 54px);
  }

  .booking-info p,
  .booking-list li {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .booking-section {
    padding: 56px 18px;
  }

  .booking-container {
    grid-template-columns: 1fr;
    padding: 34px 26px;
    gap: 28px;
  }

  .booking-info {
    max-width: 100%;
    text-align: left;
  }

  .booking-info h2 {
    max-width: 420px;
    font-size: clamp(32px, 6vw, 46px);
  }

  .booking-info p {
    max-width: 100%;
  }

  .booking-form-card {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .booking-section {
    padding: 44px 14px;
  }

  .booking-container {
    padding: 22px 16px;
    border-radius: 20px;
    gap: 20px;
  }

  .booking-info h2 {
    font-size: 28px;
    line-height: 1.04;
    margin-bottom: 12px;
  }

  .booking-info p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 14px;
  }

  .booking-list {
    margin-bottom: 16px;
    padding-left: 18px;
  }

  .booking-list li {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .booking-badge {
    font-size: 12px;
    padding: 8px 12px;
  }

  .booking-form-card {
    justify-content: center;
  }

  .booking-form {
    max-width: 100%;
    padding: 18px 14px;
    border-radius: 18px;
  }

  .booking-inline {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .booking-time-slots {
    grid-template-columns: 1fr;
  }

  .booking-form input,
  .booking-form select,
  .booking-picker-input {
    height: 46px;
    font-size: 14px;
  }

  .booking-label {
    font-size: 13px;
  }

  .booking-submit {
    height: 50px;
    font-size: 14px;
  }

  .flatpickr-calendar {
    width: 290px !important;
  }
}

/* Support/login styles removed because support.html and login.html were removed */

.tickets-page {
  background:
    radial-gradient(circle at top left, rgba(99, 215, 200, 0.2), transparent 24%),
    linear-gradient(180deg, #f9fbff 0%, #eef4ff 100%);
}

.tickets-main {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: calc(var(--header-h) + 54px);
}

.tickets-shell {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(52, 40, 130, 0.08);
  border-radius: 32px;
  box-shadow: 0 28px 60px rgba(40, 54, 85, 0.12);
  padding: 42px 44px 36px;
}

.tickets-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.tickets-heading h1 {
  margin: 0 0 10px;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  color: #11152a;
}

.tickets-heading p {
  font-size: 20px;
  color: #4f5b75;
}

.tickets-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tickets-create-btn,
.tickets-logout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tickets-create-btn {
  background: linear-gradient(135deg, #2ea8ff, #2394eb);
  color: #fff;
  box-shadow: 0 14px 28px rgba(35, 148, 235, 0.2);
}

.tickets-logout-btn {
  background: #eef2fb;
  color: #342882;
}

.tickets-create-btn:hover,
.tickets-logout-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(52, 40, 130, 0.12);
}

.tickets-table-card {
  border-radius: 24px;
  border: 1px solid #e3e8f4;
  background: #fff;
  overflow: hidden;
}

.tickets-table-wrap {
  overflow-x: auto;
}

.tickets-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.tickets-table th,
.tickets-table td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid #ebeff6;
  font-size: 16px;
  color: #20263a;
}

.tickets-table th {
  font-size: 15px;
  font-weight: 800;
  color: #232a40;
  background: #f8faff;
}

.ticket-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.ticket-status--open {
  background: #d9ebff;
  color: #1967c9;
}

.ticket-status--progress {
  background: #ffe9a8;
  color: #9b6a00;
}

.ticket-status--closed {
  background: #cfeecd;
  color: #207245;
}

.ticket-detail-link {
  font-weight: 700;
  color: #232a40;
}

.tickets-footer {
  display: flex;
  justify-content: flex-end;
  padding: 20px 22px 22px;
  background: #fff;
}

.tickets-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid #d9e1ef;
  background: #f8fbff;
  font-size: 15px;
  color: #53607c;
}

.ticket-modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ticket-modal[hidden] {
  display: none;
}

.ticket-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 35, 0.38);
  backdrop-filter: blur(4px);
}

.ticket-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(24, 36, 68, 0.24);
  padding: 28px 28px 24px;
}

.ticket-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
  color: #11152a;
}

.ticket-modal__header {
  margin-bottom: 18px;
}

.ticket-modal__header h2 {
  margin: 0 0 6px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  color: #11152a;
}

.ticket-modal__header p {
  font-size: 18px;
  color: #4f5b75;
}

.ticket-modal__section {
  border: 1px solid #dfe5f1;
  border-radius: 18px;
  background: #fff;
  padding: 18px 18px 16px;
}

.ticket-modal__section h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #101223;
}

.ticket-modal__section p,
.ticket-modal__updates li,
.ticket-modal__section strong {
  font-size: 16px;
  line-height: 1.45;
  color: #21283d;
}

.ticket-modal__section--general {
  margin-bottom: 14px;
}

.ticket-modal__general-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.ticket-modal__general-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ticket-modal__label {
  font-size: 14px;
  font-weight: 700;
  color: #5d6781;
}

.ticket-modal__content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ticket-modal__updates {
  margin: 0;
  padding-left: 18px;
}

.ticket-modal__updates li + li {
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .support-main {
    padding-top: calc(var(--header-h) + 28px);
  }

  .support-card-header {
    font-size: 24px;
  }

  .support-form,
  .login-card {
    padding: 30px 24px 32px;
  }

  .login-card {
    padding: 0;
  }

  .support-subtitle {
    font-size: 18px;
  }

  .login-box {
    padding: 30px 26px 28px;
  }

  .login-box--shell {
    padding: 22px;
  }

  .tickets-shell {
    padding: 32px 24px 26px;
  }

  .tickets-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .ticket-modal__general-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .support-main {
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 48px;
  }

  .support-hero {
    padding-top: 8px;
  }

  .support-subtitle {
    font-size: 16px;
  }

  .support-hero-actions {
    gap: 12px;
  }

  .support-pill-btn {
    width: 100%;
    min-width: 0;
  }

  .support-card,
  .login-card {
    border-radius: 22px;
  }

  .support-card-header {
    padding: 18px 18px;
    font-size: 20px;
  }

  .support-form,
  .login-card {
    padding: 22px 18px 24px;
  }

  .login-card {
    padding: 0;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-field--full {
    margin-top: 18px;
  }

  .support-field span {
    font-size: 16px;
  }

  .support-submit {
    min-height: 54px;
    font-size: 18px;
  }

  .login-box {
    padding: 24px 18px 22px;
    border-radius: 20px;
  }

  .login-box--shell {
    padding: 16px;
    border-radius: 22px;
  }

  .login-field span {
    font-size: 16px;
  }

  .login-input-wrap input {
    height: 46px;
    padding-left: 46px;
    padding-right: 46px;
  }

  .login-register {
    margin-top: 20px;
  }

  .register-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .tickets-main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .tickets-shell {
    padding: 24px 16px 20px;
    border-radius: 22px;
  }

  .tickets-heading h1 {
    font-size: 34px;
  }

  .tickets-heading p {
    font-size: 16px;
  }

  .tickets-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tickets-create-btn,
  .tickets-logout-btn {
    width: 100%;
    min-height: 50px;
    font-size: 16px;
  }

  .tickets-table th,
  .tickets-table td {
    padding: 15px 14px;
    font-size: 14px;
  }

  .tickets-footer {
    justify-content: center;
  }

  .ticket-modal {
    padding: 14px;
  }

  .ticket-modal__dialog {
    padding: 22px 16px 18px;
    border-radius: 22px;
  }

  .ticket-modal__close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 30px;
  }

  .ticket-modal__header p {
    font-size: 16px;
    max-width: 85%;
  }

  .ticket-modal__general-grid,
  .ticket-modal__content-grid {
    grid-template-columns: 1fr;
  }

  .ticket-modal__section p,
  .ticket-modal__updates li,
  .ticket-modal__section strong {
    font-size: 15px;
  }
}


/* =========================
   FOOTER
========================= */
.footer {
  position: relative;
  background:
    linear-gradient(rgba(18, 8, 10, 0.58), rgba(8, 10, 18, 0.58)),
    url("../img/footer.png") center center / cover no-repeat;
  color: #fff;
  padding: 62px 20px 48px;
  overflow: hidden;
}

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(260px, 340px);
  gap: 44px;
  align-items: center;
}

.footer-left {
  min-width: 0;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 34px;
  margin-bottom: 34px;
}

.footer-brand {
  margin: 0;
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  white-space: nowrap;
}

.footer-tagline {
  margin: 0;
  max-width: 430px;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.96);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-bottom: 38px;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.93);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.93);
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.74);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.footer-logo {
  width: 195px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3d8bff, #2b6ef3);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(43, 110, 243, 0.28);
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {
  .footer {
    padding: 52px 20px 40px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
  }

  .footer-brand {
    font-size: 32px;
  }

  .footer-tagline {
    max-width: 560px;
    font-size: 20px;
  }

  .footer-columns {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
  }

  .footer-col h4 {
    font-size: 14px;
  }

  .footer-col li {
    font-size: 16px;
  }

  .footer-copy {
    font-size: 14px;
  }

  .footer-right {
    gap: 20px;
  }

  .footer-logo {
    width: 170px;
  }

  .footer-btn {
    min-width: 164px;
    font-size: 17px;
    padding: 13px 24px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
  .footer {
    padding: 42px 16px 34px;
    background-position: center;
  }

  .footer-top {
    gap: 14px;
    margin-bottom: 24px;
  }

  .footer-brand {
    font-size: 28px;
    white-space: normal;
  }

  .footer-tagline {
    font-size: 17px;
    max-width: 100%;
    line-height: 1.35;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 26px;
  }

  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-col li {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .footer-copy {
    font-size: 13px;
  }

  .footer-logo {
    width: 145px;
  }

  .footer-btn {
    width: min(100%, 150px);
    min-width: 150px;
    padding: 12px 22px;
    font-size: 16px;
  }
}
