@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
@import url('font-awesome/css/font-awesome.min.css');

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes heroGlow {
    0% {
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    }
    50% {
        box-shadow: 0 26px 60px rgba(0, 204, 255, 0.16);
    }
    100% {
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    }
}

@keyframes sectionReveal {
    from {
        opacity: 0;
        transform: translateY(38px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.logo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 96px;
    height: auto;
    max-height: 62px;
    object-fit: contain;
    display: block;
}

.site-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.site-menu-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.site-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    position: relative;
    text-decoration: none;
    color: #d1d1d1;
    font-size: 0.9rem;
    font-weight: 500;
    padding-bottom: 8px;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff66cc, #8cecff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

nav ul li a:hover {
    color: #ff66cc;
}

nav ul li a:hover::after,
nav ul li a.is-active::after {
    transform: scaleX(1);
}

nav ul li a.is-active {
    color: #ffffff;
}

.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 60px;
}

.assistants-home {
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 204, 255, 0.12), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(255, 102, 204, 0.12), transparent 26%),
        #040404;
}

.assistants-shell {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.assistants-hero {
    padding: 150px 0 90px;
}

.assistants-hero .assistants-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 32px;
    align-items: stretch;
}

.assistants-eyebrow,
.assistants-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #89e5ff;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.76rem;
    font-weight: 700;
}

.assistants-hero-copy h1 {
    margin: 20px 0 18px;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.98;
    max-width: 11ch;
}

.assistants-hero-copy p {
    max-width: 62ch;
    color: #adb6c5;
    font-size: 1.05rem;
}

.assistants-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.assistants-hero-panel {
    display: grid;
    gap: 18px;
    align-self: center;
}

.assistants-hero-metric {
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(8, 17, 30, 0.9), rgba(6, 6, 10, 0.96));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.assistants-hero-metric strong {
    display: block;
    margin-bottom: 8px;
    color: #00ccff;
    font-size: 2.8rem;
    line-height: 1;
}

.assistants-hero-metric span {
    color: #d8e1ee;
    font-size: 0.98rem;
}

.assistants-directory,
.assistants-roadmap {
    padding: 24px 0 90px;
}

.assistants-offerings,
.assistants-about,
.assistants-contact {
    padding: 24px 0 90px;
}

.assistants-section-head {
    max-width: 720px;
    margin-bottom: 34px;
}

.assistants-section-head h2,
.assistants-roadmap-copy h2 {
    margin: 18px 0 12px;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.02;
}

.assistants-section-head p,
.assistants-roadmap-copy p {
    color: #adb6c5;
    max-width: 62ch;
}

.assistants-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.assistants-offerings-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.offering-card {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(35, 15, 72, 0.78), rgba(12, 10, 22, 0.96));
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
}

.offering-media {
    padding: 16px;
    background: rgba(4, 6, 14, 0.94);
}

.offering-media img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.offering-body {
    padding: 22px 22px 26px;
}

.offering-body h3 {
    margin-bottom: 10px;
    color: #19d2ff;
    font-size: 1.7rem;
    line-height: 1.05;
}

.offering-body p {
    color: #f0b8df;
    font-size: 1rem;
}

.assistants-about-panel,
.assistants-contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 28px;
    padding: 34px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(9, 14, 24, 0.9), rgba(7, 7, 10, 0.98));
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.assistants-about-copy h2,
.assistants-contact-copy h2 {
    margin: 18px 0 12px;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.04;
}

.assistants-about-copy p,
.assistants-contact-copy p {
    color: #adb6c5;
    max-width: 58ch;
}

.assistants-about-actions {
    margin-top: 24px;
}

.assistants-about-points {
    display: grid;
    gap: 16px;
    align-self: center;
}

.assistants-about-item {
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.assistants-about-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #ffffff;
}

.assistants-about-item span {
    color: #aab4c2;
}

.assistants-contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-self: center;
    justify-content: flex-start;
}

.assistant-card {
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(10, 14, 24, 0.96), rgba(8, 8, 10, 0.98));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.assistant-media {
    position: relative;
    min-height: 290px;
    padding: 22px;
    background: linear-gradient(180deg, rgba(7, 12, 25, 0.94), rgba(6, 6, 8, 0.98));
}

.assistant-media img {
    width: 100%;
    height: 100%;
    min-height: 246px;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
    display: block;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.assistant-media-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.assistant-placeholder-art {
    position: relative;
    width: 100%;
    min-height: 246px;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(4, 17, 38, 0.92), rgba(10, 10, 12, 0.98)),
        repeating-linear-gradient(90deg, rgba(0, 210, 255, 0.06) 0 18px, rgba(255, 255, 255, 0.02) 18px 36px);
}

.assistant-placeholder-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 18px 18px;
    transform: scale(1.08);
    filter: blur(0.2px);
    opacity: 0.45;
}

.assistant-placeholder-word {
    position: relative;
    z-index: 1;
    padding: 0 18px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(2.4rem, 7vw, 4.4rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(0, 210, 255, 0.22);
    filter: blur(0.8px);
}

.assistant-placeholder-chip {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 1;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #d6deea;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.assistant-status {
    position: absolute;
    left: 34px;
    bottom: 34px;
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(2, 11, 24, 0.84);
    border: 1px solid rgba(0, 204, 255, 0.2);
    color: #aaf0ff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.assistant-status-soon {
    color: #ffd59a;
    border-color: rgba(255, 191, 92, 0.18);
}

.assistant-body {
    padding: 28px 28px 32px;
}

.assistant-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.assistant-title-row h3 {
    font-size: clamp(1.8rem, 4vw, 2.35rem);
    line-height: 1.02;
}

.assistant-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0, 204, 255, 0.12);
    color: #8ee6ff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.assistant-pill-muted {
    background: rgba(255, 191, 92, 0.12);
    color: #ffd59a;
}

.assistant-tagline {
    margin-bottom: 10px;
    color: #eef3fb;
    font-size: 1rem;
}

.assistant-description {
    color: #9da8b7;
}

.assistant-cta {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 164px;
    padding: 13px 20px;
    border-radius: 999px;
    background: #00ccff;
    color: #031018;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.assistant-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 204, 255, 0.18);
}

.assistant-cta-disabled {
    background: rgba(255, 255, 255, 0.08);
    color: #d2d8e1;
    cursor: default;
}

.assistants-roadmap .assistants-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: start;
}

.assistants-roadmap-list {
    display: grid;
    gap: 18px;
}

.assistants-roadmap-item {
    padding: 24px 26px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.assistants-roadmap-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.assistants-roadmap-item span {
    color: #adb6c5;
}

.about-page {
    background:
        radial-gradient(circle at 15% 14%, rgba(0, 204, 255, 0.1), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(255, 110, 196, 0.1), transparent 24%),
        #050505;
}

.about-shell {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 5%;
}

.about-hero,
.about-section,
.about-cta {
    padding: 96px 0;
}

.about-hero {
    padding-top: 148px;
}

.about-section-purple {
    background: linear-gradient(180deg, rgba(26, 11, 61, 0.88), rgba(10, 8, 18, 0.98));
}

.about-title-block h1 {
    margin-top: 18px;
    font-size: clamp(3rem, 6vw, 4.8rem);
    color: #00d2ff;
    line-height: 0.98;
}

.about-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    align-items: center;
}

.about-split-reverse .about-copy {
    order: 2;
}

.about-split-reverse .about-media-card {
    order: 1;
}

.about-copy h2 {
    margin-bottom: 18px;
    color: #ff6ec4;
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1.05;
}

.about-copy p {
    color: #d8dbe5;
    font-size: 1.04rem;
    margin-bottom: 18px;
    max-width: 62ch;
}

.about-media-card {
    padding: 12px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.about-media-card img {
    width: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.about-bullet-list {
    list-style: none;
    display: grid;
    gap: 16px;
    margin-top: 12px;
}

.about-bullet-list li {
    position: relative;
    padding-left: 26px;
    color: #d8dbe5;
}

.about-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -2px;
    color: #ff6ec4;
    font-size: 1.4rem;
    line-height: 1;
}

.about-cta {
    text-align: center;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(26, 11, 61, 0.88));
}

.about-cta h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.02;
    margin-bottom: 18px;
}

.about-cta p {
    max-width: 64ch;
    margin: 0 auto;
    color: #8fe8ff;
    font-size: 1.08rem;
}

.about-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.services-page {
    background:
        radial-gradient(circle at 14% 14%, rgba(0, 210, 255, 0.08), transparent 28%),
        radial-gradient(circle at 86% 16%, rgba(255, 110, 196, 0.08), transparent 24%),
        #050505;
}

.services-shell {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 5%;
}

.services-hero {
    padding: 148px 0 48px;
}

.services-hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(3rem, 6vw, 4.8rem);
    line-height: 0.98;
    color: #00d2ff;
}

.services-hero p {
    max-width: 62ch;
    color: #b9c4d3;
    font-size: 1.06rem;
}

.services-section {
    padding: 18px 0 90px;
}

.services-list {
    display: grid;
    gap: 34px;
}

.service-card-pro {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.2fr);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(20, 10, 43, 0.92), rgba(10, 10, 16, 0.98));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card-pro:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 210, 255, 0.28);
}

.service-card-media {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(6, 8, 18, 0.92);
}

.service-card-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.service-card-content {
    padding: 46px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-content h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1.02;
}

.service-card-content p {
    color: #abb5c4;
    font-size: 1.03rem;
    margin-bottom: 14px;
}

.services-cta {
    padding: 110px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(26, 11, 61, 0.92) 0%, rgba(5, 5, 5, 1) 72%);
}

.services-cta h2 {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    line-height: 0.98;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #ffffff, #ff6ec4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-cta p {
    color: #8fe8ff;
    font-size: 1.1rem;
}

.services-cta-actions {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

section.hero-main {
    display: flex;
    width: 100%;
    max-width: 1200px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 320px;
}

.hero-content > * {
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
}

.hero-content > *:nth-child(1) {
    animation-delay: 0.08s;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.18s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-content > *:nth-child(4) {
    animation-delay: 0.42s;
}

.hero-tagline {
    font-size: 1rem;
    color: #ff66cc;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: #33ccff;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-title-line {
    display: block;
}

.hero-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-visual {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
    align-self: flex-start;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    display: block;
    margin-top: -72px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    animation: heroFadeUp 0.95s ease 0.22s forwards, heroFloat 6s ease-in-out 1.3s infinite, heroGlow 6s ease-in-out 1.3s infinite;
    opacity: 0;
    will-change: transform, box-shadow;
}

.cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease, color 0.28s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background-color: #00ccff;
    color: #000;
    border: 2px solid #00ccff;
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.22);
}

.btn-buy-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ff66cc;
}

.btn-buy-outline:hover {
    box-shadow: 0 10px 26px rgba(255, 102, 204, 0.18);
}

.btn-accent {
    background: #ff66cc;
    border-color: #ff66cc;
    color: #ffffff;
}

.ari-section {
    padding: 100px 5%;
    background: #050505;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(38px);
}

.scroll-reveal.is-visible {
    animation: sectionReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ari-container {
    max-width: 1280px;
    margin: 0 auto;
}

.ari-intro {
    text-align: center;
    max-width: 960px;
    margin: 0 auto 60px;
}

.ari-intro h2 {
    font-size: 2.5rem;
    color: #33ccff;
    margin-bottom: 15px;
}

.ari-intro p {
    color: #b0b0b0;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 18px;
}

.ari-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

@media (min-width: 1100px) {
    .ari-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.ari-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.ari-grid .ari-card:nth-child(1).is-visible {
    animation-delay: 0.06s;
}

.ari-grid .ari-card:nth-child(2).is-visible {
    animation-delay: 0.14s;
}

.ari-grid .ari-card:nth-child(3).is-visible {
    animation-delay: 0.22s;
}

.ari-grid .ari-card:nth-child(4).is-visible {
    animation-delay: 0.3s;
}

.ari-card:hover {
    transform: translateY(-6px);
    border-color: rgba(51, 204, 255, 0.35);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.ari-card:hover .neon-icon {
    transform: scale(1.08);
}

.card-visual {
    height: 196px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 25%, rgba(0, 204, 255, 0.14) 0%, rgba(4, 10, 28, 0.95) 72%);
    overflow: hidden;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

.neon-icon {
    font-size: 3rem;
    transition: transform 0.35s ease;
}

.card-content {
    background-color: #ffffff;
    padding: 32px 20px;
    flex-grow: 1;
    text-align: center;
}

.card-content h3 {
    color: #111;
    margin-bottom: 14px;
    font-weight: 700;
}

.card-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    text-align: center;
    line-height: 1.15;
    white-space: nowrap;
}

.card-title-icon {
    flex: 0 0 auto;
    font-size: 1.1em;
    filter: drop-shadow(0 2px 8px rgba(17, 17, 17, 0.12));
}

.card-title-text {
    display: inline-block;
    white-space: nowrap;
}

.card-content p {
    color: #444;
    font-size: 0.95rem;
    max-width: 26ch;
    margin: 0 auto;
    line-height: 1.45;
}

.cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.experience-section {
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    padding: 125px 5% 110px;
    background: #070709;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.experience-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(30, 27, 75, 0.9) 0%, rgba(10, 10, 12, 0) 55%);
    z-index: 0;
}

.experience-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 120px;
    right: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(142, 84, 233, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    animation: heroFloat 18s ease-in-out infinite alternate;
}

.experience-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.experience-badge {
    display: inline-block;
    padding: 7px 18px;
    margin-bottom: 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #00d2ff;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 700;
}

.experience-header h2 {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1.04;
    margin-bottom: 14px;
    color: #f5f7fb;
}

.experience-header p {
    max-width: 560px;
    margin: 0 auto;
    color: #aab4c2;
    font-size: 1rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.experience-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    align-items: center;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.45s ease, box-shadow 0.45s ease;
}

.experience-card:hover {
    transform: scale(1.01);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
}

.experience-info {
    padding: 42px;
}

.experience-info h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.08;
    margin-bottom: 16px;
    background: linear-gradient(45deg, #ffffff, #00d2ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-info p {
    color: #a1a1aa;
    font-size: 1.02rem;
    margin-bottom: 24px;
}

.experience-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px;
    background: rgba(0, 0, 0, 0.2);
}

.experience-visual-frame {
    display: grid;
    gap: 12px;
    justify-items: center;
}

.experience-visual-alt {
    background: rgba(0, 210, 255, 0.05);
}

.experience-visual img {
    width: 100%;
    max-width: 340px;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.experience-card-reverse .experience-visual img {
    transform: rotate(2deg);
}

.experience-card:hover .experience-visual img {
    transform: rotate(0deg) scale(1.05);
}

.experience-visual-caption {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.experience-check-list {
    display: grid;
    gap: 12px;
}

.experience-check-item {
    display: flex;
    align-items: center;
    color: #d4d4d8;
    font-size: 0.98rem;
}

.experience-check-item i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border-radius: 50%;
    background: #00d2ff;
    color: #000000;
    font-style: normal;
    font-weight: 700;
    font-size: 0.8rem;
}

.experience-tutorial-card {
    display: grid;
    grid-template-columns: 136px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-top: 26px;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 210, 255, 0.05));
    text-decoration: none;
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.experience-tutorial-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.experience-tutorial-media {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: #05070a;
}

.experience-tutorial-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.experience-tutorial-play {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 0, 51, 0.88);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.experience-tutorial-copy {
    display: grid;
    gap: 6px;
}

.experience-tutorial-copy strong {
    color: #f8fbff;
    font-size: 1rem;
    line-height: 1.25;
}

.experience-tutorial-copy span {
    color: #aeb7c4;
    font-size: 0.94rem;
    line-height: 1.5;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 24px 16px;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: #0d0d0d;
    padding: 32px;
    border-radius: 30px;
    width: 95%;
    max-width: 550px;
    max-height: min(86vh, 760px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(51, 204, 255, 0.72) rgba(255, 255, 255, 0.06);
    border: 1px solid #33ccff;
    position: relative;
}

.modal-busy-state {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 28px;
    border-radius: inherit;
    background: rgba(4, 10, 18, 0.82);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    z-index: 5;
    text-align: center;
}

.modal-busy-state.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-busy-spinner {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.14);
    border-top-color: #33ccff;
    border-right-color: rgba(123, 231, 255, 0.9);
    box-shadow: 0 0 22px rgba(51, 204, 255, 0.18);
    animation: modalSpinner 0.85s linear infinite;
}

.modal-busy-text {
    max-width: 280px;
    color: #e8fbff;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.5;
}

@keyframes modalSpinner {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track {
    margin: 14px 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
}

.modal-content::-webkit-scrollbar-thumb {
    border-radius: 999px;
    border: 2px solid rgba(13, 13, 13, 0.95);
    background: linear-gradient(180deg, rgba(51, 204, 255, 0.95), rgba(0, 163, 255, 0.7));
    box-shadow: 0 0 12px rgba(51, 204, 255, 0.2);
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(102, 225, 255, 0.98), rgba(51, 204, 255, 0.82));
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    cursor: pointer;
    font-size: 2rem;
}

.modal-title {
    color: #33ccff;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: #b0b8c4;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.plan-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 18px;
    border-radius: 15px;
    margin-bottom: 12px;
    border: 2px solid transparent;
    cursor: pointer;
}

.plan-option.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.plan-option:has(input:checked) {
    border-color: #33ccff;
    background: rgba(51, 204, 255, 0.1);
}

.plan-option.is-disabled:has(input:checked) {
    border-color: transparent;
    background: rgba(255, 255, 255, 0.05);
}

.plan-hint {
    color: #888;
}

.plan-input-hidden {
    display: none;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.modal-label {
    color: #33ccff;
    font-weight: 700;
    font-size: 0.8rem;
    display: block;
    margin-top: 20px;
}

.modal-status {
    min-height: 24px;
    margin: 4px 0 12px;
    color: #92f2ff;
    font-size: 0.92rem;
}

.modal-status.is-error {
    color: #ff8bbd;
}

.id-input {
    width: 100%;
    padding: 15px;
    margin: 10px 0 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    color: #fff;
    outline: none;
}

.channel-select {
    appearance: none;
    cursor: pointer;
    margin-bottom: 10px;
}

.modal-submit {
    width: 100%;
    padding: 18px;
    margin-top: 4px;
}

.modal-submit:disabled {
    opacity: 0.7;
    cursor: progress;
}

.success-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(0, 204, 255, 0.16), transparent 34%),
        radial-gradient(circle at 85% 15%, rgba(255, 102, 204, 0.14), transparent 26%),
        linear-gradient(180deg, #030303 0%, #08111a 100%);
    padding: 120px 5% 60px;
}

.success-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.success-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 28px;
    align-items: stretch;
}

.success-main,
.success-side {
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 13, 20, 0.84);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.success-main {
    padding: 42px;
}

.success-side {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.success-badge {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #00ccff, #6dffcf);
    color: #02131a;
    font-size: 2rem;
    box-shadow: 0 18px 50px rgba(0, 204, 255, 0.28);
}

.success-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #7ce5ff;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.82rem;
    font-weight: 700;
}

.success-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.04;
    margin-bottom: 16px;
}

.success-title strong {
    color: #7ce5ff;
}

.success-description {
    max-width: 640px;
    color: #b8c3cf;
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.success-card {
    border-radius: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.success-card h3 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.success-card p,
.success-side p,
.success-list li {
    color: #aab7c6;
}

.success-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.success-side h2 {
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.session-ref {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(0, 204, 255, 0.08);
    border: 1px solid rgba(0, 204, 255, 0.18);
    color: #dff9ff;
    word-break: break-word;
    font-size: 0.92rem;
}

.success-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.success-list li {
    padding-left: 28px;
    position: relative;
}

.success-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    top: -1px;
    color: #7ce5ff;
    font-size: 1.2rem;
}

.floating-quick-nav {
    position: fixed;
    right: -8px;
    bottom: 24px;
    z-index: 920;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.floating-quick-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 16px;
    text-decoration: none;
    color: #ffffff;
    box-shadow: -6px 14px 30px rgba(0, 0, 0, 0.28);
    transition: width 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    backdrop-filter: blur(12px);
}

.floating-quick-link:hover,
.floating-quick-link:focus-visible {
    width: 156px;
    transform: translateX(-8px);
    box-shadow: -10px 20px 36px rgba(0, 0, 0, 0.32);
}

.floating-quick-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: 3px;
}

.floating-quick-icon {
    width: 48px;
    min-width: 48px;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.floating-quick-text {
    padding-right: 20px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    opacity: 0;
    transition: opacity 0.24s ease;
    white-space: nowrap;
}

.floating-quick-link:hover .floating-quick-text,
.floating-quick-link:focus-visible .floating-quick-text {
    opacity: 1;
}

.floating-whatsapp {
    background: linear-gradient(135deg, #15b95f, #26d366);
}

.floating-facebook {
    background: linear-gradient(135deg, #0d59d6, #1877f2);
}

.floating-youtube {
    background: linear-gradient(135deg, #d40000, #ff2d2d);
}

.floating-telegram {
    background: linear-gradient(135deg, #007bb5, #1d9bf0);
}

.floating-instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d 55%, #fcb045);
}

.premium-footer {
    --f-bg: #050505;
    --f-accent: #00d2ff;
    --f-text-muted: #666666;
    --f-text-main: #ffffff;
    --f-border: rgba(255, 255, 255, 0.05);
    background-color: var(--f-bg);
    color: var(--f-text-main);
    padding: 72px 0 38px;
    border-top: 1px solid var(--f-border);
}

.f-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.f-top-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.45fr) minmax(280px, 0.95fr);
    gap: 36px;
    margin-bottom: 48px;
    align-items: start;
}

.f-links-cluster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.f-brand-info h2 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.f-brand-info p {
    color: var(--f-text-muted);
    line-height: 1.7;
    font-size: 0.92rem;
    max-width: 340px;
}

.f-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--f-text-main);
    margin-bottom: 18px;
}

.f-nav-links {
    list-style: none;
    padding: 0;
}

.f-nav-links li {
    margin-bottom: 10px;
}

.f-nav-links a {
    color: var(--f-text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s ease;
}

.f-nav-links a:hover {
    color: var(--f-accent);
}

.f-subscribe-box p {
    color: var(--f-text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.f-subscribe-box {
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.f-input-group {
    display: flex;
    border-bottom: 1px solid var(--f-border);
    padding-bottom: 10px;
    transition: border-color 0.3s ease;
}

.f-input-group:focus-within {
    border-color: var(--f-accent);
}

.f-input-group input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 5px 0;
    width: 100%;
    outline: none;
    font-size: 0.95rem;
}

.f-input-group button {
    background: transparent;
    border: none;
    color: var(--f-accent);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.f-bottom-bar {
    border-top: 1px solid var(--f-border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--f-text-muted);
    font-size: 0.85rem;
}

.f-socials {
    display: flex;
    gap: 30px;
}

.f-socials a {
    color: var(--f-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.f-socials a:hover {
    color: #fff;
}

@media only screen and (max-width: 768px) {
    header {
        padding: 15px 20px;
        gap: 12px;
    }

    .site-menu-toggle {
        display: inline-flex;
    }

    nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }

    nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        gap: 6px;
        padding: 14px;
        border-radius: 22px;
        background: rgba(6, 10, 18, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
        backdrop-filter: blur(14px);
    }

    nav ul li {
        margin-left: 0;
    }

    nav ul li a {
        display: block;
        padding: 12px 10px;
        font-size: 0.98rem;
        border-radius: 12px;
    }

    nav ul li a::after {
        left: 10px;
        right: 10px;
        width: auto;
        bottom: 8px;
    }

    .hero-wrapper {
        padding: 110px 20px 50px;
    }

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

    .hero-image {
        margin-top: 0;
        animation: heroFadeUp 0.9s ease 0.2s forwards;
    }

    .experience-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .experience-section {
        margin-top: 40px;
        padding: 95px 5% 90px;
    }

    .experience-header {
        margin-bottom: 30px;
    }

    .experience-info {
        padding: 40px 22px;
    }

    .experience-info h3 {
        font-size: 1.9rem;
    }

    .experience-check-item {
        justify-content: center;
    }

    .experience-card-reverse .experience-visual,
    .experience-visual {
        order: -1;
    }

    .success-panel,
    .success-grid {
        grid-template-columns: 1fr;
    }

    .success-main,
    .success-side {
        padding: 26px;
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .modal-content {
        padding: 28px 22px;
    }

    .assistants-hero {
        padding: 120px 0 64px;
    }

    .assistants-hero .assistants-shell,
    .assistants-roadmap .assistants-shell,
    .assistants-grid,
    .offerings-grid,
    .assistants-about-panel,
    .assistants-contact-panel {
        grid-template-columns: 1fr;
    }

    .assistants-hero-copy h1,
    .assistants-section-head h2,
    .assistants-roadmap-copy h2 {
        max-width: none;
    }

    .assistant-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .assistant-media {
        min-height: 240px;
    }

    .offering-body h3 {
        font-size: 1.45rem;
    }

    .about-hero,
    .about-section,
    .about-cta {
        padding: 76px 0;
    }

    .about-hero {
        padding-top: 126px;
    }

    .about-split {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .services-hero {
        padding: 126px 0 36px;
    }

    .service-card-pro {
        grid-template-columns: 1fr;
    }

    .service-card-media img {
        min-height: 260px;
    }

    .service-card-content {
        padding: 30px 24px;
    }

    .about-split-reverse .about-copy,
    .about-split-reverse .about-media-card {
        order: initial;
    }

    .about-copy,
    .about-cta {
        text-align: center;
    }

    .about-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-bullet-list li {
        text-align: left;
    }

    .floating-quick-nav {
        bottom: 20px;
        right: -6px;
        gap: 8px;
    }

    .floating-quick-link {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .floating-quick-link:hover,
    .floating-quick-link:focus-visible {
        width: 138px;
        transform: translateX(-6px);
    }

    .floating-quick-icon {
        width: 46px;
        min-width: 46px;
        font-size: 0.88rem;
    }

    .floating-quick-text {
        padding-right: 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .assistants-hero .assistants-shell,
    .assistants-roadmap .assistants-shell,
    .assistants-about-panel,
    .assistants-contact-panel {
        grid-template-columns: 1fr;
    }

    .assistants-grid,
    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .f-top-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .f-links-cluster {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .floating-quick-nav {
        bottom: 12px;
        right: 10px;
    }

    .f-top-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .f-links-cluster {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .f-brand-info p {
        margin: 0 auto;
    }

    .f-bottom-bar {
        flex-direction: column;
        gap: 20px;
    }

    .f-input-group {
        justify-content: center;
    }
}

@media (max-height: 820px) {
    .modal-overlay {
        padding: 8px;
        align-items: flex-start;
    }

    .modal-content {
        width: min(92vw, 520px);
        max-height: calc(100vh - 16px);
        margin: auto 0;
        padding: 20px 20px 18px;
        border-radius: 24px;
    }

    .close-modal {
        top: 14px;
        right: 18px;
        font-size: 1.8rem;
    }

    .modal-title {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }

    .modal-subtitle {
        font-size: 0.86rem;
        margin-bottom: 12px;
    }

    .plan-option {
        padding: 12px 14px;
        margin-bottom: 8px;
    }

    .price {
        font-size: 0.95rem;
    }

    .modal-label {
        margin-top: 10px;
    }

    .id-input {
        padding: 12px;
        margin: 7px 0 10px;
    }

    .modal-status {
        min-height: 18px;
        margin-bottom: 6px;
    }

    .modal-submit {
        padding: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-content > *,
    .hero-image {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .scroll-reveal,
    .scroll-reveal.is-visible {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .btn,
    .ari-card,
    .neon-icon {
        transition: none;
    }
}