:root {
    --color-primary: #122C4F;
    --color-secondary: #F0E8D5;
    --color-text: #1B1B1B;
    --font-title: 'Bowlby One SC', sans-serif;
    --font-base: 'Josefin Sans', sans-serif;
    --font-text: 'Darker Grotesque', sans-serif;
    --font-text2: 'Montserrat', sans-serif;
    --font-size-title-lg: 3rem;
    --font-size-title-md: 2rem;
    --font-size-base: 1.125rem;
    --font-size-text: 1rem;
    --weight-thin: 100;
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-black: 900;
    --color-btn-primary: #F0E8D5;
    --color-btn-primary-hover: #122C4F;
    --color-btn-secondary: #1B1B1B;
    --color-btn-secondary-hover: #F0E8D5;
    --accent-green: #3E7F3D;
    --accent-green-ink: #D8E7D6;
    --accent-red: #B9302A;
    --card-radius: 18px;
    --shadow-soft: 0 10px 24px rgba(0, 0, 0, .18);

    --check-size: clamp(18px, 1.6vw, 24px);
    --check-gap: 14px;

    --ease-out: cubic-bezier(.2, .65, .25, 1);
}

[data-animate] {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity .6s var(--ease-out),
        transform .6s var(--ease-out);
    will-change: opacity, transform;
}

.is-visible[data-animate] {
    opacity: 1;
    transform: none;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    background: #F0E8D5;
}

.hero {
    padding: 24px;
    background: var(--color-secondary);
}

.hero-card {
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: 12px;
    overflow: hidden;
    min-height: 420px;
    padding: 32px;
    background: radial-gradient(circle at 80% 30%, rgba(37, 60, 90, 1) 10%, rgba(240, 232, 213, 1) 70%);
}

.hero-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-header .brand {
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    font-weight: 700;
    letter-spacing: .03em;
    color: var(--color-primary);
    text-decoration: underline;
}

.hero-nav {
    display: flex;
    align-items: center;
    gap: clamp(24px, 6vw, 72px);
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    letter-spacing: .04em;
}

.hero-nav a {
    text-decoration: none;
    color: var(--color-secondary);
    opacity: .9;
    text-underline-offset: 3px;
}

.hero-nav a:hover {
    opacity: 1;
    text-decoration: underline;
}

.hero-nav .chip {
    font-family: var(--font-base);
    background: var(--color-secondary);
    color: var(--color-text);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: .95rem;
    box-shadow: 0 2px 2px #000000;
}

.hero-nav .chip:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
}

.hero-copy {
    margin-top: 12px;
    max-width: 56ch;
    color: var(--color-text);
}

.hero-title {
    font-family: var(--font-base);
    font-size: var(--font-size-title-lg);
    letter-spacing: .01em;
}

.hero-subtitle {
    font-family: var(--font-text2);
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    line-height: 1.4;
    letter-spacing: .01em;
}

.hero-body {
    align-self: center;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 28px;
    margin-top: 12px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin: 18px 0 22px;
}

.hero-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;

    background: linear-gradient(90deg,
            rgba(240, 232, 213, .92) 0%,
            rgba(18, 44, 79, .92) 60%);
    backdrop-filter: saturate(140%) blur(4px);
    padding: 12px 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 23px;
    border-radius: 999px;
    font-family: var(--font-base);
    text-decoration: none;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: var(--color-btn-primary-hover);
    color: var(--color-btn-primary);
}

.btn-primary:hover {
    background: var(--color-btn-primary);
    color: var(--color-btn-primary-hover);
}

.btn-secondary {
    background: var(--color-text);
    color: var(--color-btn-primary);
}

.btn-secondary:hover {
    background: var(--color-btn-primary);
    color: var(--color-btn-secondary);
}

.hero-proof {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: center;
    color: var(--color-text);
}

.hero-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.proof-title {
    font-family: var(--font-base);
    font-size: var(--font-size-title-md);
    font-weight: var(--weight-thin);
    letter-spacing: .05em;
}

.hero-right {
    display: grid;
    place-items: center;
    justify-self: center;
}

.hero-img {
    width: clamp(220px, 30vw, 420px);
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .25));
    border-radius: 16px;
}

.hero-text {
    font-family: var(--font-text2);
    font-size: small;
    grid-column: 1 / -1;
    margin-top: 0px;
    font-weight: var(--weight-medium);
}

.services {
    padding: 0;
    background: var(--color-secondary);
}

.services-card {
    position: relative;
    overflow: hidden;
    min-height: clamp(520px, 60vh, 820px);
    padding: clamp(20px, 3vw, 36px);
    background: var(--color-secondary);
}

.services-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 1;
}

.services-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    z-index: 0;
}

.services-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(20px, 3vw, 32px);
    align-items: center;
    min-height: inherit;
}

.services-left {
    color: var(--color-secondary);
    display: grid;
    align-content: start;
    gap: 18px;
    padding-left: clamp(48px, 10vw, 160px);
}

.services-title {
    font-family: var(--font-base);
    font-weight: var(--weight-light, 300);
    letter-spacing: .06em;
    line-height: .95;
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    margin: 0;
    padding: 0;
}

.services-icons {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(72px, 92px));
    gap: 16px 18px;
}

.services-icons li {
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    cursor: pointer;
    will-change: transform;
}

.services-icons li:hover,
.services-icons li:focus-within {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .22));
}

.services-icons li.is-active,
.services-icons li[aria-selected="true"] {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .22));
}

.services-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services-note {
    font-family: var(--font-text2);
    font-size: var(--font-size-base);
    max-width: 36ch;
    margin: 0;
}

.services-right {
    align-self: stretch;
    display: grid;
    align-items: end;
}

.device-wrap {
    position: relative;
    align-self: end;
    justify-self: center;
    --screen-inset-top: 13%;
    --screen-inset-right: -4%;
    --screen-inset-bottom: 12%;
    --screen-inset-left: 34.5%;
}

.services-device {
    --device-bottom: -45px;
    align-self: end;
    justify-self: center;
    width: clamp(400px, 50vw, 820px);
    height: auto;
    margin-bottom: var(--device-bottom);
    transform: translateX(45px);
}

.device-overlay {
    position: absolute;
    z-index: 3;
    inset: var(--screen-inset-top) var(--screen-inset-right) var(--screen-inset-bottom) var(--screen-inset-left);
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 8px;
    background: rgba(240, 232, 213, 1);
    color: var(--color-text);
    padding: clamp(16px, 1.6vw, 24px);
    opacity: 0;
    transform: translateY(8px) scale(.98);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.device-overlay[open] {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.device-close {
    justify-self: end;
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--color-text);
    font: inherit;
    line-height: 1;
    font-weight: var(--weight-semibold);
    padding: 4px 8px;
    border-radius: 8px;
    cursor: pointer;
}

.device-close:hover {
    background: rgba(0, 0, 0, .06);
}

.device-content {
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    gap: clamp(8px, 1vw, 14px);
    width: 100%;
    white-space: normal;
}

.device-title {
    font-family: var(--font-text);
    font-weight: var(--weight-bold);
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    letter-spacing: .02em;
    margin: 0;
}

.device-text {
    font-family: var(--font-text2);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.6;
    opacity: .95;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.plans {
    background: var(--color-secondary);
    padding: clamp(32px, 5vw, 72px) clamp(16px, 5vw, 48px);
}

.plan-icon img {
    width: clamp(44px, 5vw, 60px);
    height: auto;
}

.plans-title {
    font-family: var(--font-base);
    color: var(--color-primary);
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    letter-spacing: .06em;
    text-align: center;
    margin: 0 0 clamp(24px, 3vw, 36px);
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 3vw, 28px);
    max-width: 1200px;
    margin: 0 auto;
}

.plan {
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-soft);
    padding: clamp(18px, 2.8vw, 28px);
    display: grid;
    gap: clamp(12px, 2vw, 18px);
    border: 1px solid rgba(0, 0, 0, .12);
}

.plan--light .plan-name {
    color: var(--color-primary);
}

.plan--dark .plan-name {
    text-align: right;
    margin: 0;
    line-height: .95;
    color: var(--color-secondary);
}

.plan--light .plan-header,
.plan--dark .plan-header {
    justify-content: flex-start;
    align-items: center;
    gap: clamp(16px, 2vw, 28px);
    text-align: initial;
}

.plan--dark .plan-desc {
    text-align: right;
    margin-top: 8px;
    opacity: .92;
}

.plan--dark .plan-header>div:not(.plan-icon) {
    text-align: right;
    max-width: 48ch;
}

.plan--light {
    background: #EFE8D7;
    color: var(--color-text);
}

.plan--dark {
    background: var(--color-primary);
    color: var(--color-secondary);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.plan-name {
    font-family: var(--font-base);
    font-weight: var(--weight-medium);
    color: var(--color-primary);
    font-size: clamp(1.6rem, 3.6vw, 2.6rem);
    letter-spacing: .02em;
    margin: 0;
    line-height: .95;
}

.plan-desc {
    font-family: var(--font-text2);
    margin: .35rem 0 0;
    max-width: 44ch;
    opacity: .9;
    font-size: .98rem;
}

.plan-emoji {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1;
    opacity: .95;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: grid;
    gap: 12px;
}

.feature {
    display: grid;
    border-radius: 12px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    position: relative;
    margin-left: calc(var(--check-size) + var(--check-gap));
}

.feature::before {
    content: "";
    position: absolute;
    left: calc(-1 * (var(--check-size) + var(--check-gap)));
    top: 50%;
    transform: translateY(-50%);
    width: var(--check-size);
    height: var(--check-size);
    background: url("../img/ic_plan_check.png") no-repeat center / contain;
}

.feature-label {
    position: relative;
}

.plan--light .feature {
    font-family: var(--font-text2);
    background: var(--color-primary);
    color: var(--color-btn-primary);
}

.plan--dark .feature {
    font-family: var(--font-text2);
    background: var(--color-btn-primary);
    color: var(--color-primary);
}

.feature-end {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 8px;
    white-space: nowrap;
}

.feature-end img {
    width: clamp(16px, 1.6vw, 22px);
    height: clamp(16px, 1.6vw, 22px);
    display: block;
    flex: 0 0 auto;
    object-fit: contain;
}

.plan-actions {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
    margin-top: 8px;
}

.plan-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

.toggle {
    appearance: none;
    border: 0;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 999px;
    font-family: var(--font-base);
    background: var(--accent-green);
    color: var(--accent-green-ink);
    box-shadow: 0 2px 0 rgba(0, 0, 0, .18);
}

.toggle--danger {
    background: var(--accent-red);
    color: #FDECEC;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-weight: var(--weight-regular);
    font-family: var(--font-title);
    text-shadow: 0 3px 0 rgba(0, 0, 0, .1);
}

.plan-price .currency {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.plan-price .amount {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.plan-price--monthly {
    color: var(--accent-green);
}

.plan-price--annual {
    color: var(--accent-red);
}

.mv {
    background: var(--color-secondary);
    padding: clamp(28px, 5vw, 64px) clamp(16px, 5vw, 48px);
}

.mv-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 3vw, 28px);
}

.mv-card {
    position: relative;
    min-height: clamp(380px, 52vh, 640px);
    border-radius: var(--card-radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-soft);
}

.mv--mission {
    background-image: url("../img/bg_mision.png");
}

.mv--vision {
    background-image: url("../img/bg_vision.png");
}

.mv-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: grid;
    align-content: start;
    gap: clamp(8px, 1.6vw, 16px);
    padding: clamp(18px, 3.5vw, 40px);
    color: var(--color-secondary);
    text-align: left;
}

.mv-content--right {
    justify-items: end;
    text-align: right;
}

.mv-title {
    margin: 0;
    font-family: var(--font-base);
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--color-secondary);
    font-size: clamp(2rem, 6.2vw, 4.2rem);
    line-height: .95;
    text-transform: uppercase;
    text-shadow: 0 3px 0 rgba(0, 0, 0, .12);
}

.mv-text {
    max-width: 46ch;
    font-family: var(--font-text2);
    font-size: clamp(1rem, 2.1vw, 1.35rem);
    line-height: 1.4;
    opacity: .98;
    text-align: justify;

}

.mv--full {
    padding: 0;
}

.mv--full .mv-grid {
    max-width: 100vw;
    width: 100vw;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.mv--full .mv-card {
    border-radius: 0;
    box-shadow: none;
    min-height: clamp(520px, 86vh, 900px);
    background-size: cover;
    background-position: center;
    position: relative;
}

.mv--full .mv--mission {
    background-image: url("../img/bg_mision.png");
}

.mv--full .mv--vision {
    background-image: url("../img/bg_vision.png");
}

.mv--full .mv-scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.mv--full .mv-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: grid;
    align-content: start;
    gap: clamp(8px, 1.6vw, 16px);
    padding: clamp(24px, 6vw, 80px);
    color: var(--color-secondary);
    text-align: left;
}

.mv--full .mv-content--right {
    justify-items: end;
    text-align: right;
}

.mv--full .mv-title {
    margin: 0;
    font-family: var(--font-base);
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--color-secondary);
    font-size: clamp(2rem, 6.2vw, 4.2rem);
    line-height: .95;
    text-transform: uppercase;
    text-shadow: 0 3px 0 rgba(0, 0, 0, .12);
    justify-self: center;
}

.mv--full .mv-text {
    max-width: 46ch;
    font-family: var(--font-text2);
    font-size: clamp(1rem, 2.1vw, 1.35rem);
    line-height: 1.4;
    opacity: .98;
    justify-self: center;
}

.mv--full .mv-grid::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, .14);
    pointer-events: none;
}

.team {
    background: var(--color-secondary);
    padding: clamp(32px, 5vw, 72px) clamp(16px, 5vw, 48px);
}

.team .member-photo {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    aspect-ratio: 3 / 4;
}

.team .member-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.team .member-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: center !important;
    padding: 14px 18px;
    font-family: var(--font-base);
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: .08em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .35);
    background: linear-gradient(to top, rgba(0, 0, 0, .38), rgba(0, 0, 0, 0));
}

.team .member-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

.team .member-photo,
.team .member-bio {
    margin: 0;
}

.team-title {
    font-family: var(--font-base);
    color: var(--color-btn-secondary);
    text-align: center;
    letter-spacing: .06em;
    margin: 0 0 clamp(20px, 3vw, 36px);
    font-size: clamp(1.8rem, 4.6vw, 3.2rem);
}

.team-grid {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 1280px;
    display: grid;
    gap: clamp(16px, 2vw, 24px);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.member-card {
    display: grid;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: transparent;
}

.member-photo {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    aspect-ratio: 3 / 4;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-photo,
.member-bio {
    margin: 0;
}

.member-name {
    position: absolute;
    inset: auto 0 0 0;
    padding: 14px 18px;
    font-family: var(--font-base);
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: .08em;
    text-align: center;
    font-size: clamp(1.2rem, 2.4vw, 2rem);
    text-shadow: 0 2px 6px rgba(0, 0, 0, .35);
    background: linear-gradient(to top, rgba(0, 0, 0, .38), rgba(0, 0, 0, 0));
    padding: 14px 18px;
}

.member-bio {
    background: var(--color-btn-secondary);
    color: var(--color-secondary);
    font-family: var(--font-text2);
    padding: 16px 18px 20px;
    line-height: 1.5;
    font-size: clamp(.95rem, 1.4vw, 1rem);
    border-radius: 0 0 20px 20px;
    min-height: 170px;
    display: flex;
    align-items: flex-start;
    text-align: justify;
}

.about-video {
    background: var(--color-secondary);
    padding: clamp(32px, 5vw, 72px) clamp(16px, 5vw, 48px);
}

.about-video__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(140px, .28fr) 0.9fr minmax(300px, .8fr);
    gap: clamp(20px, 3.8vw, 48px);
    align-items: center;
}

.video-title {
    font-family: var(--font-base);
    color: var(--color-btn-secondary);
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: .92;
    margin: 0;
    font-size: clamp(1.4rem, 4.4vw, 3.2rem);
}

.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #000;
    max-width: clamp(420px, 46vw, 820px);
    margin-inline: auto;
    border-radius: 12px;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-copy {
    font-family: var(--font-text2);
    color: var(--color-btn-secondary);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.5;
    text-align: justify;
}



.footer {
    background: #1B1B1B;
    color: var(--color-secondary);
    padding: 40px 20px;
    font-family: var(--font-text2);
    text-align: center;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 28px;
    justify-content: center;
}

.footer-social img {
    width: 42px;
    height: 42px;
    filter: brightness(0) invert(1);
    transition: transform .2s;
}

.footer-social img:hover {
    transform: scale(1.12);
}

.footer-links {
    text-align: left;
}

.footer-links h3 {
    font-family: var(--font-base);
    margin: 0 0 12px;
    letter-spacing: .03em;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin: 6px 0;
}

.footer-links a {
    color: var(--color-secondary);
    text-decoration: none;
    opacity: .9;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-copy {
    margin: 0;
    opacity: .85;
    font-size: 0.95rem;
}

.lang-switch {
    appearance: none;
    border: 0;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 999px;
    font-family: var(--font-base);
    font-size: .95rem;
    letter-spacing: .02em;
    background: var(--color-btn-secondary);
    color: var(--color-btn-primary);
    box-shadow: 0 2px 2px #000000;
    transition: transform .15s ease;
}

.lang-switch:hover {
    transform: translateY(-1px);
    background: var(--color-btn-primary-hover);
    color: var(--color-btn-primary);
}

.lang-switch:active {
    transform: translateY(0);
}





@media (min-width: 1600px) {
    html {
        font-size: 108%;
    }

}

@media (min-width: 2000px) {
    html {
        font-size: 116%;
    }
}

@media (max-width: 980px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        gap: 20px;
    }

    .mv--full .mv-grid {
        grid-template-columns: 1fr;
    }

    .mv--full .mv-card {
        min-height: clamp(360px, 60vh, 680px);
    }

    .mv--full .mv-content--right {
        justify-items: start;
        text-align: left;
    }

    .mv--full .mv-grid::before {
        display: none;
    }
}

@media (min-width: 1600px) {
    .hero-title {
        font-size: clamp(3.2rem, 4.6vw, 5.4rem);
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 1.2vw, 1.5rem);
    }

    .services-inner {
        gap: clamp(28px, 3.2vw, 48px);
    }

    .services-title {
        font-size: clamp(2.6rem, 6.2vw, 5rem);
    }

    .services-left {
        padding-left: clamp(80px, 11vw, 220px);
    }

    .services-device {
        width: clamp(520px, 48vw, 980px);
        transform: translateX(50px);
        --device-bottom: -52px;
    }

    .device-wrap {
        --screen-inset-top: 9%;
        --screen-inset-right: -5%;
        --screen-inset-bottom: 8%;
        --screen-inset-left: 30%;
    }
}

@media (max-width: 1200px) {
    .hero-body {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .services-inner {
        grid-template-columns: 1fr 1fr;
    }

    .services-left {
        padding-left: clamp(28px, 6vw, 90px);
    }

    .services-title {
        font-size: clamp(2rem, 5.2vw, 3.4rem);
    }

    .services-device {
        width: clamp(360px, 46vw, 700px);
        transform: translateX(30px);
        --device-bottom: -40px;
    }

    .device-wrap {
        --screen-inset-top: 12%;
        --screen-inset-right: -6%;
        --screen-inset-bottom: 12%;
        --screen-inset-left: 34%;
    }

    .footer-inner {
        max-width: 900px;
        gap: 24px;
    }

    .footer-top {
        gap: 64px;
    }
}

@media (max-width: 960px) {
    .hero-card {
        grid-template-rows: auto 1fr;
    }

    .hero-body {
        min-height: clamp(420px, 56vh, 680px);
    }

    .services-inner {
        grid-template-columns: 1fr;
        gap: clamp(18px, 4vw, 28px);
    }

    .services-left {
        padding-left: clamp(16px, 5vw, 36px);
        text-align: left;
    }

    .services-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .services-note {
        font-size: clamp(1rem, 2.4vw, 1.125rem);
    }

    .services-right {
        justify-items: center;
    }

    .services-device {
        width: min(78vw, 560px);
        transform: translateX(0);
        --device-bottom: -28px;
    }

    .device-wrap {
        --screen-inset-top: 8%;
        --screen-inset-right: 8%;
        --screen-inset-bottom: 12%;
        --screen-inset-left: 8%;
    }
}

@media (max-width: 700px) {
    .hero-body {
        grid-template-columns: 1fr;
    }

    .hero-right {
        justify-self: center;
    }

    .hero-img {
        width: min(62vw, 300px);
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3.6vw, 1.125rem);
    }

    .services-icons {
        grid-template-columns: repeat(3, minmax(64px, 88px));
        gap: 14px 16px;
    }

    .services-title {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
    }

    :root {
        --check-size: 18px;
        --check-gap: 10px;
    }
}

@media (max-width: 480px) {
    .services-icons {
        grid-template-columns: repeat(2, minmax(64px, 1fr));
    }

    .services-device {
        width: min(86vw, 480px);
        --device-bottom: -22px;
    }

    .device-title {
        font-size: clamp(1.4rem, 5.5vw, 1.7rem);
    }

    .device-text {
        font-size: clamp(.98rem, 4.5vw, 1.1rem);
    }

    .footer {
        padding: 28px 16px;
    }

    .footer-top {
        gap: 16px;
    }

    .footer-social {
        gap: 20px;
    }

    .footer-social a {
        padding: 6px;
    }

    .footer-social img {
        width: 34px;
        height: 34px;
    }

    .footer-links h3 {
        margin-bottom: 8px;
        font-size: 1.05rem;
    }

    .footer-links li {
        margin: 4px 0;
    }
}

@media (min-width: 1200px) {
    .hero-card {
        min-height: clamp(560px, 72vh, 880px);
        padding: 48px 56px;
    }

    .hero-body {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        padding-top: 24px;
    }

    .hero-left,
    .hero-right {
        justify-self: center;
    }

    .hero-img {
        width: clamp(360px, 30vw, 520px);
    }
}

@media (max-width: 1100px) {
    .hero-body {
        grid-template-columns: 1.3fr 0.7fr;
        gap: 24px;
    }

    .hero-img {
        width: clamp(180px, 32vw, 340px);
    }
}

@media (min-width: 1400px) {
    .hero-body {
        --img-shift: 36px;
    }
}

@media (min-width: 960px) {
    .hero-card {
        display: grid;
        grid-template-rows: auto 1fr;
    }

    .hero-body {
        align-self: center;
        align-items: center;
        min-height: clamp(420px, 56vh, 680px);
        --img-shift: 24px;
    }

    .hero-right {
        justify-self: end;
        align-self: center;
        transform: translateY(var(--img-shift));
    }

    .hero-img {
        width: clamp(240px, 28vw, 420px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}