@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

page-hero:not(:defined),
bento-grid:not(:defined),
bento-box:not(:defined),
product-selector:not(:defined),
product-panel:not(:defined),
client-card:not(:defined),
document-card:not(:defined) {           
    visibility: hidden;
}

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

:root {
    --bg-main: #f5f5f7;
    --bg-surface: #ffffff;
    --white: #ffffff;
    --blue: #0057ff;
    --blue-dark: #003ecc;
    --blue-pale: #e5efff;
    --red: #ff2a2a;
    --gray-100: #eaeaea;
    --gray-200: #d1d1d6;
    --gray-400: #8e8e93;
    --gray-600: #3a3a3c;
    --dark: #1c1c1e;
    --radius: 24px;
    --radius-sm: 12px;
    --radius-lg: 36px;
    --radius-pill: 9999px;
    --shadow-float: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-bento: 0 4px 24px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 16px 32px rgba(0, 87, 255, 0.15);
    --transition-fast: 0.2s cubic-bezier(0.2, 0, 0, 1);
    --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --font-main: 'Inter', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--bg-main);
    color: var(--dark);
    font-family: var(--font-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button {
    border: 0;
    font: inherit;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.floating-nav-wrapper {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.island-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 8px 12px 8px 24px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-float);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    pointer-events: auto;
}

.island-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        var(--blue),
        #9d33ff,
        var(--red),
        #9d33ff,
        var(--blue),
        #9d33ff,
        var(--red),
        #9d33ff,
        var(--blue)
    );
    background-size: 200% 100%;
    animation: gradientBorder 4s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.island-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.island-logo svg {
    width: 28px;
    height: 28px;
    color: var(--blue);
}

.dot {
    color: var(--red);
}

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

.island-link {
    position: relative;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 600;
}

.island-link:hover {
    background: var(--gray-100);
    color: var(--dark);
}

.island-link.active {
    background: var(--blue);
    color: var(--white);
}

.island-cta {
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    background: var(--dark);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.island-cta:hover {
    background: var(--blue);
    transform: scale(1.05);
}

.island-burger {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 50%;
    background: var(--gray-100);
}

.island-burger span {
    width: 20px;
    height: 2px;
    background: var(--dark);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-link {
    margin: 16px 0;
    color: var(--dark);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.mobile-nav-link.active {
    color: var(--blue);
}

.include-error {
    width: min(100% - 40px, 900px);
    margin: 24px auto;
    padding: 16px 20px;
    border: 1px solid rgba(255, 42, 42, 0.25);
    border-radius: var(--radius);
    background: rgba(255, 42, 42, 0.08);
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
}

.hero,
.radical-hero-sec {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero-content,
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

.mega-title {
    display: inline-block;
    margin: -0.1em -0.15em;
    padding: 0.1em 0.15em;
    background-image: linear-gradient(60deg, var(--blue) 0%, var(--blue) 0%, var(--red) 92%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: clamp(80px, 20vw, 280px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
}

.hero-subtitle {
    max-width: 900px;
    margin-bottom: 48px;
    color: var(--gray-600);
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.hero-subtitle strong {
    color: var(--dark);
    font-weight: 800;
}

.btn-radical {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    border-radius: var(--radius-pill);
    background: var(--dark);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-radical:hover {
    background: var(--blue);
    transform: scale(1.02);
}

.btn-radical svg {
    width: 24px;
    height: 24px;
    margin-left: 8px;
}

.hero-action-icon {
    width: 24px;
    height: 24px;
    margin-left: 8px;
}

.bento-section {
    padding-bottom: 40px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 24px;
}

.bento-box {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 260px;
    padding: 48px;
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    box-shadow: var(--shadow-bento);
    transition: var(--transition);
}

.bento-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.bento-dark {
    background: var(--dark);
    color: var(--white);
}

.bento-blue {
    background: var(--blue);
    color: var(--white);
}

.b-span-8 {
    grid-column: span 8;
}

.b-span-12 {
    grid-column: span 12;
}

.b-span-6 {
    grid-column: span 6;
}

.b-span-4 {
    grid-column: span 4;
}

.bento-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.bento-content.bottom {
    margin-top: auto;
}

.bento-title {
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
    color: var(--dark);
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.bento-title-large {
    font-size: clamp(28px, 5vw, 40px);
}

.bento-dark .bento-title,
.bento-blue .bento-title {
    color: var(--white);
}

.bento-desc {
    position: relative;
    z-index: 2;
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.6;
}

.bento-dark .bento-desc {
    color: var(--gray-400);
}

.bento-blue .bento-desc {
    color: rgba(255, 255, 255, 0.8);
}

.bento-desc-large {
    max-width: 400px;
    margin-bottom: 40px;
    font-size: 20px;
}

.bento-desc-gap {
    margin-bottom: 24px;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: auto;
}

.stat-block {
    display: flex;
    flex-direction: column;
}

.stat-block > span:last-child {
    margin-top: 8px;
    color: var(--gray-400);
    font-size: 16px;
    font-weight: 600;
}

.stat-value {
    display: inline-flex;
    align-items: baseline;
    color: var(--white);
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    white-space: nowrap;
}

.stat-blue {
    color: var(--blue);
}

.stat-red {
    color: var(--red);
}

.stat-label {
    margin-top: 8px;
    color: var(--gray-400);
    font-size: 16px;
    font-weight: 600;
}

.bento-icon-top {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.bento-icon-top svg {
    width: 32px;
    height: 32px;
}

.bento-tag {
    margin-bottom: 24px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bento-link-arrow {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: auto;
    border-radius: 50%;
    background: var(--bg-main);
    color: var(--dark);
}

.bento-link-arrow:hover {
    background: var(--blue);
    color: var(--white);
    transform: scale(1.1);
}

.bento-link-arrow svg {
    width: 24px;
    height: 24px;
}

.custom-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-desc {
    max-width: 500px;
    margin-bottom: 32px;
    font-size: 18px;
}

.bento-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: auto;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    background: var(--dark);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

.bento-action-btn:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.footer-wrapper {
    position: relative;
}

.footer-wave-separator {
    width: 100%;
    max-width: 1000px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
}

.footer-wave-separator svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 6px rgba(0, 87, 255, 0.6));
}

.line-deco {
    position: absolute;
    z-index: 1;
    width: clamp(500px, 50vw, 900px);
    height: clamp(500px, 50vw, 900px);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
    opacity: 0.32;
    transform: translate(-50%, -50%);
}

.line-deco.blue {
    background: radial-gradient(circle, rgba(0, 87, 255, 0.28) 0%, rgba(0, 87, 255, 0) 65%);
}

.line-deco.red {
    background: radial-gradient(circle, rgba(255, 42, 42, 0.24) 0%, rgba(255, 42, 42, 0) 65%);
}

.radical-hero {
    position: relative;
    display: flex;
    padding: 140px 40px 60px;
    flex-direction: column;
    justify-content: center;
}

.ph-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

.rh-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    padding: 8px 24px;
    border-radius: var(--radius-pill);
    background: var(--white);
    box-shadow: var(--shadow-bento);
    color: var(--blue);
    font-weight: 700;
}

.rh-tag .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
}

.giant-title {
    margin-bottom: 24px;
    color: var(--dark);
    font-size: clamp(32px, 8vw, 110px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}

.giant-title span {
    color: var(--blue);
}

.section-desc {
    max-width: 760px;
    margin-top: 40px;
    color: var(--gray-600);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 500;
    line-height: 1.5;
}

.about-vision-title {
    max-width: 900px;
    font-size: clamp(32px, 6vw, 56px);
}

.about-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 64px;
}

.about-stat-value {
    display: inline-flex;
    align-items: baseline;
    color: var(--white);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
}

.about-stat-value.stat-blue {
    color: var(--blue);
}

.about-stat-value.stat-red {
    color: var(--red);
}

.about-stat-value.stat-white {
    color: var(--white);
}

.about-stat-label {
    color: var(--gray-400);
    font-weight: 600;
}

.company-info-list,
.company-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.company-info-item,
.company-contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 16px;
}

.company-info-item {
    border-bottom: 1px solid var(--gray-200);
}

.company-contact-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.company-info-item:last-child,
.company-contact-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.company-info-item span,
.company-contact-item span {
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 600;
}

.company-info-item strong,
.company-contact-item strong {
    color: var(--dark);
    font-size: 16px;
    font-weight: 800;
    text-align: right;
    line-height: 1.4;
}

.bento-blue .company-contact-item span {
    color: rgba(255, 255, 255, 0.6);
}

.bento-blue .company-contact-item strong {
    color: var(--white);
}

.section-heading {
    display: flex;
    align-items: center;
    min-height: 120px;
    padding-top: 16px;
}

.section-heading .bento-title {
    margin-bottom: 0;
    font-size: clamp(32px, 5vw, 48px);
}

.document-bento-card {
    min-height: auto;
}

.document-card__link {
    display: flex;
    flex: 1;
    flex-direction: column;
    color: inherit;
}

.document-card__preview {
    height: 320px;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.document-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.document-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.document-card__meta {
    width: fit-content;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: rgba(0, 87, 255, 0.2);
    color: #8bb4ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.document-bento-card h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0;
}

.contact-card-title {
    font-size: clamp(28px, 5vw, 40px);
}

.radical-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font: inherit;
    font-size: 16px;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.form-submit-btn {
    width: 100%;
    margin-top: 16px;
    background: var(--white);
    color: var(--blue);
}

.form-submit-btn:hover {
    background: var(--bg-main);
    color: var(--blue-dark);
}

.contact-details-card {
    min-height: 100%;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.c-method {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.c-method:hover {
    transform: translateX(8px);
}

.c-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: var(--transition-fast);
}

.c-method:hover .c-icon {
    background: var(--white);
    color: var(--blue);
}

.c-icon svg {
    width: 24px;
    height: 24px;
}

.c-method div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.c-method span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.c-method strong {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.contact-map-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    margin-top: auto;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-float);
}

.contact-map {
    width: 100%;
    height: 100%;
}

.map-external-btn {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    background: var(--blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.map-external-btn:hover {
    background: var(--white);
    color: var(--blue);
    transform: translateY(-2px);
}

.map-external-btn svg {
    width: 16px;
    height: 16px;
}

.map-center-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.map-center-btn:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.map-center-btn svg {
    width: 20px;
    height: 20px;
}

.clients-section-title {
    margin-bottom: 0;
    font-size: clamp(32px, 5vw, 48px);
}

.client-bento-card h3 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.client-bento-card p {
    margin-bottom: 24px;
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.6;
}

.cbc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cbc-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.cbc-icon svg {
    width: 28px;
    height: 28px;
}

.cbc-badge {
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.badge-gov {
    background: rgba(0, 87, 255, 0.2);
    color: #8bb4ff;
}

.badge-mfc {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.badge-biz {
    background: rgba(255, 42, 42, 0.2);
    color: #ff8b8b;
}

.cbc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cbc-tags span {
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(0, 87, 255, 0.3);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}

.client-bento-card.light {
    border: 1px solid var(--gray-200);
    background: var(--bg-main);
}

.client-bento-card.light:hover {
    background: var(--white);
    box-shadow: var(--shadow-bento);
}

.client-bento-card.light h3 {
    color: var(--dark);
}

.client-bento-card.light p {
    color: var(--gray-600);
}

.cbc-icon.light {
    background: var(--blue-pale);
    color: var(--blue);
}

.cbc-badge.light {
    background: var(--gray-200);
    color: var(--gray-600);
}

.product-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

.ps-btn {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-pill);
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.ps-btn:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-bento);
    transform: translateY(-2px);
}

.ps-btn.active {
    border-color: var(--blue);
    background: var(--blue);
    box-shadow: 0 10px 30px rgba(0, 85, 255, 0.3);
    color: var(--white);
}

.ps-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-icon svg {
    width: 24px;
    height: 24px;
}

.ps-btn:not(.active) .ps-icon {
    color: var(--blue);
}

.product-panel {
    margin-bottom: 24px;
}

.product-panel:not(.active) {
    display: none;
}

.product-title {
    font-size: clamp(28px, 5vw, 40px);
}

.product-subtitle {
    margin-bottom: 40px;
    font-size: 18px;
}

.prod-badge {
    margin-bottom: 24px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.prod-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.prod-features li {
    position: relative;
    padding-left: 24px;
    color: var(--gray-200);
    font-size: 15px;
    line-height: 1.5;
}

.prod-features li .dot {
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.bento-desc-inverse {
    color: rgba(255, 255, 255, 0.8);
}

.prod-clients {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-left: 0;
}

.client-chip {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 600;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.doc-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    background: var(--bg-main);
    box-shadow: inset 0 0 0 1px transparent;
    transition: var(--transition-fast);
}

.doc-card:hover {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: var(--shadow-bento);
    transform: translateX(4px);
}

.doc-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--red);
}

.doc-name {
    min-width: 0;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
}

.doc-date {
    flex-shrink: 0;
    align-self: flex-end;
    margin-left: auto;
    padding-bottom: 1px;
    color: #c98b6b;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

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

.product-panel.active {
    animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.section-title {
    margin-bottom: 32px;
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.radical-footer {
    position: relative;
    overflow: hidden;
    width: calc(100% - 80px);
    max-width: calc(1400px - 80px);
    margin: 40px auto;
    padding: 100px 80px 40px;
    border-radius: var(--radius-lg);
    background: var(--dark);
    color: var(--white);
}

.rf-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 100px;
}

.rf-brand {
    margin-bottom: 24px;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.rf-desc {
    max-width: 400px;
    color: var(--gray-400);
    font-size: 18px;
    line-height: 1.6;
}

.rf-col h4 {
    margin-bottom: 32px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rf-col a {
    display: block;
    margin-bottom: 16px;
    color: var(--gray-200);
    font-size: 18px;
    font-weight: 600;
}

.rf-col a:hover {
    color: var(--white);
    transform: translateX(8px);
}

.rf-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
}

.circle-blur-blue,
.circle-blur-red {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.circle-blur-blue {
    width: clamp(1200px, 160vw, 3500px);
    height: clamp(1200px, 120vw, 2400px);
    background: radial-gradient(
        50% 50% at 50% 50%,
        rgba(0, 87, 255, 0.25) 0%,
        rgba(0, 87, 255, 0.16) 30%,
        rgba(0, 87, 255, 0.08) 60%,
        rgba(0, 87, 255, 0) 100%
    );
}

.circle-blur-red {
    width: clamp(1000px, 150vw, 3200px);
    height: clamp(1000px, 100vw, 2000px);
    background: radial-gradient(
        50% 50% at 50% 50%,
        rgba(255, 42, 42, 0.22) 0%,
        rgba(255, 42, 42, 0.14) 30%,
        rgba(255, 42, 42, 0.06) 60%,
        rgba(255, 42, 42, 0) 100%
    );
}

.hero-blue {
    top: 10%;
    left: 0%;
}

.hero-red {
    top: 40%;
    left: 100%;
    transform: translate(-50%, -50%) scale(1.15);
}

[data-aos] {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

[data-aos-delay='100'] {
    transition-delay: 0.1s;
}

[data-aos-delay='200'] {
    transition-delay: 0.2s;
}

[data-aos-delay='300'] {
    transition-delay: 0.3s;
}

[data-aos-delay='400'] {
    transition-delay: 0.4s;
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@media (max-width: 1024px), (orientation: portrait) {
    .bento-grid {
        display: flex;
        flex-direction: column;
    }

    .about-stats-row {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .island-links,
    .island-cta {
        display: none;
    }

    .island-burger {
        display: flex;
    }

    .floating-nav-wrapper {
        top: 20px;
    }

    .rf-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .radical-hero-sec {
        min-height: auto;
        padding: 120px 20px 40px;
    }

    .bento-section {
        padding-bottom: 20px;
    }

    .bento-box {
        min-height: auto;
        padding: 32px;
        border-radius: var(--radius);
    }

    .radical-hero {
        min-height: auto;
        padding: 120px 20px 40px;
    }

    .stats-row {
        flex-direction: column;
        gap: 24px;
    }

    .product-selector {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin: -20px -20px 10px;
        padding: 30px 20px 40px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .product-selector::-webkit-scrollbar {
        display: none;
    }

    .document-bento-card {
        min-height: auto;
        border-radius: var(--radius);
    }

    .radical-footer {
        width: calc(100% - 40px);
        margin: 40px auto 20px;
        padding: 60px 30px 30px;
    }
}

@media (max-width: 640px) {
    .company-info-item,
    .company-contact-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .company-info-item strong,
    .company-contact-item strong {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .btn-radical {
        width: 100%;
        padding: 18px 24px;
    }

    .rf-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.feature-list,
.feature-sublist {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
}

.feature-sublist {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding-left: 28px;
}

.feature-list li > .dot {
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.feature-sublist li > .dot {
    width: 6px;
    height: 6px;
    background: var(--red);
}
