/* =========================
   RESET BÁSICO
========================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    background: #011b33;
    color: #fff;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}


/* =========================
   VARIABLES
========================= */

:root {
    --navy: #011b33;
    --blue: #0e76b7;
    --blue-light: #38a9e8;
    --gold: #d2ad59;
    --gold-light: #f2d890;
    --white: #ffffff;
    --soft-white: rgba(255, 255, 255, 0.72);
}


/* =========================
   NAVBAR BLANCO
========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 18px 24px;
    transition: 0.3s ease;
}

.site-header.scrolled {
    padding: 10px 24px;
    /* background: rgba(255, 255, 255, 0.92); */
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 40px rgba(1, 27, 51, 0.12);
}

.navbar {
    width: min(100%, 1350px);
    height: 76px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(1, 27, 51, 0.08);
    box-shadow: 0 18px 45px rgba(1, 27, 51, 0.10);
    backdrop-filter: blur(16px);
}

.site-header.scrolled .navbar {
    height: 68px;
    box-shadow: none;
    border-color: rgba(1, 27, 51, 0.06);
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: 850px;
    height: 100vh;
    overflow: hidden;
    background: var(--navy);
}

.hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero__slide.active {
    opacity: 1;
    visibility: visible;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: 6s ease;
}

.hero__slide.active .hero__bg {
    transform: scale(1);
}

.hero__content {
    position: relative;
    z-index: 6;
    width: min(100% - 48px, 1320px);
    height: 100%;
    margin: 0 auto;
    padding-top: 120px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 70px;
}

.hero__text {
    max-width: 760px;
}

.hero__tag {
    display: inline-block;
    margin-bottom: 22px;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.hero__text h1 {
    max-width: 800px;
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    line-height: 0.98;
    letter-spacing: -1px;
    font-weight: 600;
    color: white;
}

.hero__text p {
    max-width: 660px;
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--soft-white);
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 800;
    transition: 0.25s ease;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn:hover {
    transform: translateY(-3px);
}

.hero__stats {
    display: flex;
    gap: 28px;
    margin-top: 44px;
}

.hero__stats div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero__stats strong {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
}

.hero__stats span {
    max-width: 110px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.58);
}


/* =========================
   HERO CARD
========================= */

.hero__card {
    width: 100%;
    max-width: 460px;
    margin-left: auto;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(24px);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
}

.hero__card > span {
    display: block;
    margin-bottom: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f2f2f2;
}

.hero__card h2 {
    margin-bottom: 22px;
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
}

.hero__card ul {
    display: grid;
    gap: 14px;
    list-style: none;
}

.hero__card li {
    padding: 17px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.hero__card strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}

.hero__card small {
    color: rgba(255, 255, 255, 0.62);
}


/* =========================
   CONTROLES HERO
========================= */

.hero__controls {
    position: absolute;
    right: 45px;
    bottom: 36px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__controls button {
    width: 15px;
    height: 15px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: 0.25s ease;
}

.hero__controls button:hover {
    background: rgba(255, 255, 255, 0.22);
}

.hero__dots {
    display: flex;
    gap: 8px;
}

.hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    border: 0;
    cursor: pointer;
    transition: 0.25s ease;
}

.hero__dot.active {
    width: 15px;
    background: var(--gold);
}

/* =========================
   GENERAL SECTIONS
========================= */

.container {
    width: min(100% - 48px, 1240px);
    margin: 0 auto;
}

.section-header {
    max-width: 780px;
    margin-bottom: 56px;
}

.section-header span {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(14, 118, 183, 0.10);
    color: var(--blue);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-header h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--navy);
}

.section-header p {
    margin-top: 20px;
    max-width: 680px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(1, 27, 51, 0.68);
}

.section-header--light span {
    background: #0e76b7;
    color: #f4f8fc;
}

.section-header--light h2 {
    color: white;
}

.section-header--light p {
    color: rgba(255, 255, 255, 0.68);
}


/* =========================
   NOSOTROS
========================= */

.about {
    position: relative;
    padding: 110px 0;
    background: #f6f8fb;
    color: var(--navy);
}

.about__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.about__content {
    max-width: 680px;
}

.about__label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: white;
    color: var(--blue);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(1, 27, 51, 0.06);
}

.about__content h3 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--navy);
}

.about__content > p {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(1, 27, 51, 0.68);
}

.about__features {
    display: grid;
    gap: 16px;
    margin-top: 34px;
}

.about__feature {
    display: flex;
    gap: 18px;
    padding: 22px;
    border-radius: 22px;
    background: white;
    box-shadow: 0 16px 40px rgba(1, 27, 51, 0.07);
    transition: 0.25s ease;
}

.about__feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(1, 27, 51, 0.10);
}

.about__feature span {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.about__feature strong {
    display: block;
    margin-bottom: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    color: var(--navy);
}

.about__feature p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(1, 27, 51, 0.62);
}

.about__visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__visual::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    opacity: 0.14;
    filter: blur(10px);
}

.about__card {
    position: relative;
    z-index: 2;
    width: min(100%, 430px);
    min-height: 430px;
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 36px;
    background:
        linear-gradient(
            145deg,
            rgba(1, 27, 51, 0.96),
            rgba(14, 118, 183, 0.86)
        );
    background-image: url(../assets/asesoramiento-juridico-admefi.jpg);
    color: white;
    box-shadow: 0 35px 90px rgba(1, 27, 51, 0.24);
    overflow: hidden;
}

.about__card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -90px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(210, 173, 89, 0.28);
    filter: blur(20px);
}

.about__card span {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
    color: var(--gold-light);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.about__card h4 {
    position: relative;
    z-index: 2;
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -1.5px;
}

.about__card p {
    position: relative;
    z-index: 2;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
}

.about__mini-card {
    position: absolute;
    z-index: 3;
    padding: 18px 20px;
    border-radius: 22px;
    background: white;
    color: var(--navy);
    box-shadow: 0 20px 50px rgba(1, 27, 51, 0.16);
}

.about__mini-card strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    color: var(--blue);
}

.about__mini-card span {
    display: block;
    max-width: 130px;
    margin-top: 4px;
    font-size: 13px;
    color: rgba(1, 27, 51, 0.65);
}

.about__mini-card--top {
    top: 40px;
    left: 20px;
}

.about__mini-card--bottom {
    right: -29px;
    bottom: 110px;
}


/* =========================
   SERVICIOS
========================= */

.services {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at top right, rgba(14, 118, 183, 0.28), transparent 34%),
        linear-gradient(135deg, #011b33 0%, #012a4d 52%, #011b33 100%);
    color: white;
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: 0.25;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    position: relative;
    min-height: 350px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 80%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    overflow: hidden;
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.22);
}

.service-card__number {
    position: absolute;
    top: 24px;
    right: 26px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.service-card__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 34px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy);
    font-size: 25px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}

.service-card__image {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
    max-width: 280px;
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -0.8px;
    color: #01467f;
}

.service-card:hover h3 {
    color: white;
}


.service-card p {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
    font-size: 15.5px;
    line-height: 1.7;
    transition: all 0.3s ease;
    color: #01467f;
}

.service-card:hover p {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
    font-size: 15.5px;
    line-height: 1.7;
    color: white;
}

.service-card a {
    position: absolute;
    left: 28px;
    bottom: 28px;
    color: #012a4d;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.service-card:hover a {
    color: white;
}

.service-card a::after {
    content: " →";
}

/* =========================
   MEMBRESÍAS
========================= */

.memberships {
    padding: 110px 0;
    background: #f6f8fb;
    color: var(--navy);
}

.memberships__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.membership-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    padding: 32px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(1, 27, 51, 0.08);
    box-shadow: 0 18px 45px rgba(1, 27, 51, 0.07);
    transition: 0.25s ease;
}

.membership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(1, 27, 51, 0.12);
}

.membership-card--featured {
    background: linear-gradient(145deg, #011b33, #013d69);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 80px rgba(1, 27, 51, 0.24);
}

.membership-card__badge {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #01467f, #0e76b7);
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.membership-card__head span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--blue);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.membership-card--featured .membership-card__head span {
    color: #f6f8fb;
}

.membership-card__head h3 {
    margin-bottom: 14px;
    font-family: "Montserrat", sans-serif;
    font-size: 31px;
    line-height: 1.05;
    letter-spacing: -1px;
}

.membership-card__head p {
    min-height: 78px;
    font-size: 15.5px;
    line-height: 1.65;
    color: rgba(1, 27, 51, 0.62);
}

.membership-card--featured .membership-card__head p {
    color: rgba(255, 255, 255, 0.66);
}

.membership-card__price {
    margin: 28px 0;
    padding: 22px 0;
    border-top: 1px solid rgba(1, 27, 51, 0.09);
    border-bottom: 1px solid rgba(1, 27, 51, 0.09);
}

.membership-card--featured .membership-card__price {
    border-color: rgba(255, 255, 255, 0.14);
}

.membership-card__price strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    line-height: 1.1;
}

.membership-card__price span {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: rgba(1, 27, 51, 0.55);
}

.membership-card--featured .membership-card__price span {
    color: rgba(255, 255, 255, 0.55);
}

.membership-card ul {
    display: grid;
    gap: 13px;
    margin-bottom: 30px;
    list-style: none;
}

.membership-card li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(1, 27, 51, 0.70);
}

.membership-card--featured li {
    color: rgba(255, 255, 255, 0.74);
}

.membership-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(14, 118, 183, 0.12);
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

.membership-card--featured li::before {
    background: rgba(210, 173, 89, 0.18);
    color: var(--gold-light);
}

.membership-card__btn {
    margin-top: auto;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 900;
    transition: 0.25s ease;
}

.membership-card__btn:hover {
    transform: translateY(-3px);
    background: var(--blue);
}

.membership-card--featured .membership-card__btn {
    background: linear-gradient(135deg, #01467f, #0e76b7);
    color: #ffffff;
}

/* =========================
   BOTONES PREMIUM / HOVERS
========================= */

.btn,
.navbar__cta,
.hero__buttons a,
.membership-card__btn,
.process__btn,
.faq__btn,
.contact-form__btn,
.location__btn,
.blog-home__link {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

/* Brillo que cruza el botón */
.btn::before,
.hero__buttons a::before,
.membership-card__btn::before,
.process__btn::before,
.faq__btn::before,
.contact-form__btn::before,
.location__btn::before,
.blog-home__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -85%;
    z-index: -1;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.btn:hover::before,
.hero__buttons a:hover::before,
.membership-card__btn:hover::before,
.process__btn:hover::before,
.faq__btn:hover::before,
.contact-form__btn:hover::before,
.location__btn:hover::before,
.blog-home__link:hover::before {
    left: 125%;
}

.btn:hover,
.hero__buttons a:hover,
.membership-card__btn:hover,
.process__btn:hover,
.faq__btn:hover,
.contact-form__btn:hover,
.location__btn:hover,
.blog-home__link:hover {
    transform: translateY(-4px) scale(1.015);
}

/* Botones azules */
.membership-card__btn,
.faq__btn,
.contact-form__btn,
.location__btn,
.blog-home__link {
    box-shadow:
        0 14px 32px rgba(14, 118, 183, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.navbar__cta:hover,
.membership-card__btn:hover,
.faq__btn:hover,
.contact-form__btn:hover,
.location__btn:hover,
.blog-home__link:hover {
    box-shadow:
        0 20px 42px rgba(14, 118, 183, 0.34),
        0 0 0 5px rgba(14, 118, 183, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* Botones dorados */
.btn--primary, .process__btn, .membership-card--featured .membership-card__btn {
    box-shadow: 0 14px 32px #01467f, inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn--primary:hover,
.process__btn:hover,
.membership-card--featured .membership-card__btn:hover {
        box-shadow: 0 20px 45px #0e76b7, 0 0 0 5px #01467f, inset 0 1px 0 #0e76b7;
}

/* Botones secundarios glass */
.btn--secondary {
    backdrop-filter: blur(14px);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.36);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.20),
        0 0 0 5px rgba(255, 255, 255, 0.06);
}

/* =========================
   CARDS MÁS DINÁMICAS
========================= */

.service-card,
.membership-card,
.case-card,
.blog-card,
.location-card,
.contact-card,
.about__feature,
.process-step,
.faq-item {
    will-change: transform;
}

.service-card::after,
.membership-card::after,
.case-card::after,
.blog-card::after,
.location-card::after,
.contact-card::after,
.about__feature::after,
.process-step::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at var(--x, 50%) var(--y, 50%),
        rgba(255, 255, 255, 0.22),
        transparent 34%
    );
    transition: opacity 0.25s ease;
}

.service-card:hover::after,
.membership-card:hover::after,
.case-card:hover::after,
.blog-card:hover::after,
.location-card:hover::after,
.contact-card:hover::after,
.about__feature:hover::after,
.process-step:hover::after {
    opacity: 1;
}

.case-card,
.blog-card,
.location-card,
.contact-card,
.about__feature {
    position: relative;
    overflow: hidden;
}

.case-card:hover img,
.blog-card:hover img {
    transform: scale(1.08);
}

.case-card__image img,
.blog-card__image img {
    transition: transform 0.55s ease;
}

/* =========================
   TABLA COMPARATIVA REAL
========================= */

section#comparativa {
    padding: 3rem 0;
}

.comparison-table-wrap {
    overflow-x: auto;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 85px rgba(0, 0, 0, 0.22);
}

.comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    color: white;
}

.comparison-table thead {
    background: rgba(255, 255, 255, 0.11);
}

.comparison-table th {
    padding: 24px 22px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-align: center;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table th:last-child {
    color: var(--gold-light);
}

.comparison-table td {
    padding: 22px;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    color: rgba(255, 255, 255, 0.76);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.comparison-table td:first-child {
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    color: white;
}

.comparison-table td:nth-child(2) {
    background: rgba(255, 255, 255, 0.025);
}

.comparison-table td:nth-child(3) {
    background: rgba(255, 255, 255, 0.045);
}

.comparison-table td:nth-child(4) {
    background: rgba(210, 173, 89, 0.08);
}

.comparison-table tbody tr:hover td {
    background-color: rgba(255, 255, 255, 0.075);
}

.comparison-table tbody tr:hover td:nth-child(4) {
    background-color: rgba(210, 173, 89, 0.14);
}

.check,
.cross {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 900;
}

.check {
    background: rgba(83, 227, 140, 0.16);
    color: #53e38c;
}

.cross {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.38);
}

/* =========================
   CASOS DE ÉXITO
========================= */

.cases {
    padding: 110px 0;
    background: #f6f8fb;
    color: var(--navy);
}

.cases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(1, 27, 51, 0.08);
    box-shadow: 0 18px 45px rgba(1, 27, 51, 0.07);
    transition: 0.25s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(1, 27, 51, 0.12);
}

.case-card__image {
    height: 230px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    overflow: hidden;
}

.case-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-card__body {
    padding: 28px;
}

.case-card__body span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--blue);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.case-card__body h3 {
    margin-bottom: 14px;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 1.14;
    letter-spacing: -0.7px;
    color: var(--navy);
}

.case-card__body p {
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(1, 27, 51, 0.64);
}


/* =========================
   PROCESO
========================= */

.process {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at top right, rgba(210, 173, 89, 0.18), transparent 34%),
        linear-gradient(135deg, #011b33 0%, #012a4d 52%, #011b33 100%);
    color: white;
    overflow: hidden;
}

.process::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: 0.22;
}

.process .container {
    position: relative;
    z-index: 2;
}

.process__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.process__intro {
    position: sticky;
    top: 120px;
}

.process__btn {
    padding: 11px 20px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
    background: linear-gradient(135deg, #011b33, #0e76b7);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(14, 118, 183, .28);
    transition: .25s;
}

.process__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px #01467f;
}

.process__steps {
    display: grid;
    gap: 18px;
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 22px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    transition: 0.25s ease;
}

.process-step:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.22);
}

.process-step > span {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 20px;
        background: linear-gradient(135deg, #9fefff, #0e76b7);
    color: var(--navy);
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 900;
}

.process-step h3 {
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.7px;
    color: white;
}

.process-step p {
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
}

/* =========================
   FAQ
========================= */

.faq {
    padding: 110px 0;
    background: #f6f8fb;
    color: var(--navy);
}

.faq__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.faq__intro {
    position: sticky;
    top: 120px;
}

.faq__btn {
    min-height: 54px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(14, 118, 183, 0.22);
    transition: 0.25s ease;
}

.faq__btn:hover {
    transform: translateY(-3px);
}

.faq__list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border-radius: 22px;
    background: white;
    border: 1px solid rgba(1, 27, 51, 0.08);
    box-shadow: 0 16px 40px rgba(1, 27, 51, 0.06);
}

.faq-item__question {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    background: transparent;
    color: var(--navy);
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
}

.faq-item__question span {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(14, 118, 183, 0.1);
    color: var(--blue);
    font-size: 22px;
    transition: 0.25s ease;
}

.faq-item.active .faq-item__question span {
    transform: rotate(45deg);
    background: var(--blue);
    color: white;
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 260px;
}

.faq-item__answer p {
    padding: 0 24px 24px;
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(1, 27, 51, 0.65);
}


/* =========================
   CONTACTO
========================= */

.contact {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at top left, rgba(210, 173, 89, 0.18), transparent 34%),
        linear-gradient(135deg, #011b33 0%, #012a4d 55%, #011b33 100%);
    color: white;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: 0.22;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.contact__cards {
    display: grid;
    gap: 16px;
    margin-top: 36px;
}

.contact-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(18px);
    transition: 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.11);
}

.contact-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-card strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    color: white;
    word-break: break-word;
}

.contact-card small {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.contact__form-box {
    padding: 34px;
    border-radius: 32px;
    background: white;
    color: var(--navy);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
}

.contact-form__header {
    margin-bottom: 24px;
}

.contact-form__header span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--blue);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form__header h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    letter-spacing: -1px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.form-group label {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: rgba(1, 27, 51, 0.78);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(1, 27, 51, 0.12);
    border-radius: 14px;
    background: #f6f8fb;
    color: var(--navy);
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    outline: none;
    transition: 0.2s ease;
}

.form-group textarea {
    padding-top: 15px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(14, 118, 183, 0.11);
}

.contact-form__btn {
    width: 100%;
    min-height: 56px;
    margin-top: 8px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s ease;
}

.contact-form__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(14, 118, 183, 0.28);
}

.contact-form__note {
    margin-top: 16px;
    text-align: center;
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(1, 27, 51, 0.52);
}

.form-alert {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 16px;
}

.form-alert strong,
.form-alert span {
    display: block;
}

.form-alert strong {
    margin-bottom: 4px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

.form-alert span {
    font-size: 14px;
    line-height: 1.5;
}

.form-alert--success {
    background: rgba(83, 227, 140, 0.14);
    color: #106c38;
    border: 1px solid rgba(83, 227, 140, 0.28);
}

.form-alert--error {
    background: rgba(255, 80, 80, 0.12);
    color: #a42525;
    border: 1px solid rgba(255, 80, 80, 0.22);
}

/* =========================
   UBICACIÓN / MAPA
========================= */

.location {
    padding: 110px 0;
    background: #f6f8fb;
    color: var(--navy);
}

.location__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: stretch;
}

.location__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location__cards {
    display: grid;
    gap: 16px;
    margin-top: 36px;
}

.location-card {
    padding: 24px;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(1, 27, 51, 0.08);
    box-shadow: 0 16px 40px rgba(1, 27, 51, 0.06);
}

.location-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--blue);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.location-card strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.45;
    color: var(--navy);
}

.location__btn {
    min-height: 54px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(14, 118, 183, 0.22);
    transition: 0.25s ease;
}

.location__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(14, 118, 183, 0.30);
}

.location__map {
    min-height: 520px;
    overflow: hidden;
    border-radius: 34px;
    background: white;
    border: 1px solid rgba(1, 27, 51, 0.08);
    box-shadow: 0 26px 70px rgba(1, 27, 51, 0.13);
}

.location__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    filter: grayscale(15%) contrast(1.05);
}

/* =========================
   BLOG HOME
========================= */

.blog-home {
    padding: 110px 0;
    background: #ffffff;
    color: var(--navy);
}

.blog-home__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 56px;
}

.blog-home__top .section-header {
    margin-bottom: 0;
}

.blog-home__link {
    flex: 0 0 auto;
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(14, 118, 183, 0.22);
    transition: 0.25s ease;
}

.blog-home__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(14, 118, 183, 0.30);
}

.blog-home__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    overflow: hidden;
    border-radius: 30px;
    background: #f6f8fb;
    border: 1px solid rgba(1, 27, 51, 0.08);
    box-shadow: 0 18px 45px rgba(1, 27, 51, 0.07);
    transition: 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(1, 27, 51, 0.12);
}

.blog-card__image {
    height: 230px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__body {
    padding: 28px;
}

.blog-card__body span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--blue);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-card__body h3 {
    margin-bottom: 14px;
    font-family: "Montserrat", sans-serif;
    font-size: 23px;
    line-height: 1.14;
    letter-spacing: -0.7px;
    color: var(--navy);
}

.blog-card__body p {
    margin-bottom: 24px;
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(1, 27, 51, 0.64);
}

.blog-card__body a {
    color: var(--blue);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 900;
}

.blog-card__body a::after {
    content: " →";
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 80px 0 0;
    background: #011b33;
    color: white;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.7fr 0.9fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 18px;
    background: white;
    margin-bottom: 22px;
}

.footer__logo img {
    width: 125px;
    max-height: 58px;
    object-fit: contain;
}

.footer__brand p {
    max-width: 360px;
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.66);
}

.footer__social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.footer__social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 900;
    transition: 0.25s ease;
}

.footer__social a:hover {
    background: var(--blue);
    transform: translateY(-3px);
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__col h3 {
    margin-bottom: 10px;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer__col a,
.footer__col span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.5;
    transition: 0.2s ease;
}

.footer__col a:hover {
    color: white;
    transform: translateX(4px);
}

.footer__contact a,
.footer__contact span {
    word-break: break-word;
}

.footer__bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.footer__bottom div {
    display: flex;
    gap: 20px;
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    transition: 0.2s ease;
}

.footer__bottom a:hover {
    color: white;
}

/* =========================
   SCROLL REVEAL ANIMATIONS
========================= */

.reveal {
    opacity: 0;
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
    will-change: opacity, transform;
}

.reveal-up {
    transform: translateY(42px);
}

.reveal-left {
    transform: translateX(-42px);
}

.reveal-right {
    transform: translateX(42px);
}

.reveal-zoom {
    transform: scale(0.94);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}


/* =========================
   NUEVAS IMÁGENES
========================= */

.about__image-card {
    position: relative;
    z-index: 2;
    width: min(100%, 460px);
    height: 520px;
    overflow: hidden;
    border-radius: 36px;
    box-shadow: 0 35px 90px rgba(1, 27, 51, 0.22);
}

.about__image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about__image-card:hover img {
    transform: scale(1.08);
}

.about__image-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(1, 27, 51, 0.06),
            rgba(1, 27, 51, 0.82)
        );
}

.about__image-overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    color: white;
}

.about__image-overlay span {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-light);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about__image-overlay h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -1.3px;
}

.about__image-overlay p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
}

.process__image,
.contact__image {
    overflow: hidden;
    margin: 26px 0 28px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.22);
}

.process__image {
    height: 280px;
}

.contact__image {
    height: 260px;
}

.process__image img,
.contact__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.process__image:hover img,
.contact__image:hover img {
    transform: scale(1.08);
}


/* =========================
   ANIMACIÓN EN LISTAS / CARDS
========================= */

.service-card,
.membership-card,
.case-card,
.blog-card,
.faq-item,
.process-step,
.location-card,
.contact-card {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.service-card.is-visible,
.membership-card.is-visible,
.case-card.is-visible,
.blog-card.is-visible,
.faq-item.is-visible,
.process-step.is-visible,
.location-card.is-visible,
.contact-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
   RESPONSIVE
========================= */


/* Respeta usuarios que prefieren menos movimiento */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .service-card,
    .membership-card,
    .case-card,
    .blog-card,
    .faq-item,
    .process-step,
    .location-card,
    .contact-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


@media (max-width: 1024px) {
    
    .hero {
        height: auto;
        min-height: 960px;
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-top: 145px;
        padding-bottom: 100px;
    }

    .hero__card {
        max-width: 560px;
        margin: 0;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about__visual {
        min-height: 460px;
        justify-content: flex-start;
        display: none;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .memberships__grid {
        grid-template-columns: 1fr;
    }

    .membership-card {
        min-height: auto;
    }

     .cases__grid {
        grid-template-columns: 1fr;
    }

    .process__grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .process__intro {
        position: static;
    }

    .faq__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .faq__intro {
        position: static;
    }

    .location__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .location__map {
        min-height: 430px;
    }

    .blog-home__top {
        display: block;
    }

    .blog-home__link {
        margin-top: 28px;
    }

    .blog-home__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

     .about__image-card {
        width: 100%;
        height: 410px;
        border-radius: 28px;
    }

    .about__image-overlay h4 {
        font-size: 32px;
    }

    .process__image,
    .contact__image {
        height: 220px;
        border-radius: 22px;
    }
}

@media (max-width: 640px) {
    .comparison-table-wrap {
        border-radius: 22px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 18px;
        font-size: 14px;
    }
    .site-header {
        padding: 12px;
        width: 100%;
    }

    .navbar {
        height: 64px;
        padding: 0 15px;
        border-radius: 16px;
    }

    .hero {
        min-height: 1280px;
    }



    .container {
        width: min(100% - 28px, 560px);
    }

    .about,
    .services {
        padding: 82px 0;
    }

    .section-header {
        margin-bottom: 38px;
    }

    .section-header h2 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .section-header p {
        font-size: 16px;
    }

    .about__content h3 {
        font-size: 31px;
    }

    .about__feature {
        padding: 18px;
    }

    .about__visual {
        min-height: auto;
        padding: 30px 0 70px;
    }

    .about__card {
        width: 100%;
        min-height: 360px;
        padding: 28px;
        border-radius: 28px;
    }

    .about__card h4 {
        font-size: 34px;
    }

    .about__mini-card--top {
        top: 0;
        left: 8px;
    }

    .about__mini-card--bottom {
        right: 8px;
        bottom: 0;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 320px;
    }
    .memberships,
    .comparison {
        padding: 82px 0;
    }

    .comparison__box {
        overflow-x: auto;
        border-radius: 22px;
    }

    .comparison__row {
        min-width: 760px;
    }

    .comparison__row > div {
        padding: 18px;
        font-size: 14px;
    }

    .membership-card {
        padding: 26px;
        border-radius: 24px;
    }

    .membership-card__head h3 {
        font-size: 28px;
    }

    .membership-card__price strong {
        font-size: 24px;
    }

    .cases,
    .process {
        padding: 82px 0;
    }

    .case-card {
        border-radius: 24px;
    }

    .case-card__image {
        height: 210px;
    }

    .case-card__body {
        padding: 24px;
    }

    .case-card__body h3 {
        font-size: 22px;
    }

    .process-step {
        grid-template-columns: 1fr;
        padding: 24px;
        border-radius: 24px;
    }

    .process-step:hover {
        transform: translateY(-4px);
    }

    .process-step > span {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

    .faq,
    .contact {
        padding: 82px 0;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact__form-box {
        padding: 24px;
        border-radius: 24px;
    }

    .contact-form__header h3 {
        font-size: 26px;
    }

    .faq-item__question {
        padding: 20px;
        font-size: 15.5px;
    }

    .faq-item__answer p {
        padding: 0 20px 20px;
    }

    .contact-card strong {
        font-size: 19px;
    }

     .location {
        padding: 82px 0;
    }

    .location-card {
        padding: 22px;
        border-radius: 22px;
    }

    .location-card strong {
        font-size: 16px;
    }

    .location__map {
        min-height: 360px;
        border-radius: 24px;
    }

    .blog-home {
        padding: 82px 0;
    }

    .blog-card {
        border-radius: 24px;
    }

    .blog-card__image {
        height: 210px;
    }

    .blog-card__body {
        padding: 24px;
    }

    .blog-card__body h3 {
        font-size: 21px;
    }

    .footer {
        padding-top: 64px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 44px;
    }

    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer__bottom div {
        flex-direction: column;
        gap: 8px;
    }
}