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

:root {
    --primary: #4DA3E6;
    --secondary: #2F7ED8;
    --dark: #0B0B0B;
    --light-bg: #F5F9FD;
    --white: #FFFFFF;
    --gray-100: #F7F8FA;
    --gray-200: #E5E8EC;
    --gray-300: #C4CDD5;
    --gray-700: #454F5B;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

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

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo img {
    height: 32px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 2rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-link {
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
    letter-spacing: -1px;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(77, 163, 230, 0.3);
}

.cta-button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(77, 163, 230, 0.4);
}

.hero-visual {
    position: relative;
    height: 400px;
    animation: fadeInRight 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-mockup {
    position: relative;
    width: 480px;
    height: 340px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    animation: floatDashboard 6s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

@keyframes floatDashboard {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(-0.5deg);
    }
}

.dashboard-header {
    display: flex;
    gap: 7px;
    margin-bottom: 1.2rem;
    align-items: center;
}

.dashboard-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--gray-300);
}

.dashboard-dot:nth-child(1) {
    background: #FF5F56;
}

.dashboard-dot:nth-child(2) {
    background: #FFBD2E;
}

.dashboard-dot:nth-child(3) {
    background: #27C93F;
}

.dashboard-title {
    font-size: 0.7rem;
    color: var(--gray-700);
    font-weight: 600;
    margin-left: auto;
    font-family: var(--font-heading);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    animation: fadeInUp 0.6s ease backwards;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:nth-child(1) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    font-family: var(--font-heading);
    margin-bottom: 0.2rem;
}

.stat-trend {
    font-size: 0.65rem;
    color: #27C93F;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2px;
}

.stat-trend.negative {
    color: #FF5F56;
}

.dashboard-chart {
    position: relative;
    height: 110px;
    background: linear-gradient(180deg, rgba(77, 163, 230, 0.05) 0%, transparent 100%);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: flex-end;
    gap: 0.6rem;
    animation: fadeInUp 0.6s ease backwards;
    animation-delay: 0.6s;
    border: 1px solid var(--gray-200);
}

.chart-bar-mini {
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 6px 6px 0 0;
    animation: growBar 1.2s ease-out backwards;
    position: relative;
    transition: transform 0.3s ease;
}

.chart-bar-mini:hover {
    transform: scaleY(1.05);
    filter: brightness(1.1);
}

.chart-bar-mini:nth-child(1) {
    height: 35%;
    animation-delay: 0.8s;
}

.chart-bar-mini:nth-child(2) {
    height: 58%;
    animation-delay: 0.9s;
}

.chart-bar-mini:nth-child(3) {
    height: 42%;
    animation-delay: 1s;
}

.chart-bar-mini:nth-child(4) {
    height: 75%;
    animation-delay: 1.1s;
}

.chart-bar-mini:nth-child(5) {
    height: 68%;
    animation-delay: 1.2s;
}

.chart-bar-mini:nth-child(6) {
    height: 85%;
    animation-delay: 1.3s;
}

@keyframes growBar {
    from {
        height: 0%;
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.dashboard-float {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 1.1rem;
    animation: floatElement 4s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.dashboard-float:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.dashboard-float-1 {
    top: -12%;
    right: -6%;
    animation-delay: 0s;
}

.dashboard-float-2 {
    bottom: -8%;
    left: -10%;
    animation-delay: 2s;
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.float-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
    box-shadow: 0 4px 12px rgba(77, 163, 230, 0.3);
}

.float-icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.float-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
    font-family: var(--font-heading);
}

.float-sublabel {
    font-size: 0.68rem;
    color: var(--gray-700);
    font-weight: 500;
}

.bg-gradient-circle {
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(77, 163, 230, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.3;
    }
}

.decorative-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.4;
}

.deco-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.deco-dot:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.deco-dot:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.deco-dot:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.deco-dot:nth-child(4) {
    bottom: 30%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.services {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, var(--light-bg) 0%, transparent 100%);
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.03;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(77, 163, 230, 0.15);
    border-color: var(--primary);
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(77, 163, 230, 0.25);
    transition: var(--transition);
    margin-bottom: 0;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(77, 163, 230, 0.35);
}

.service-icon svg {
    width: 42px;
    height: 42px;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-title {
    font-size: 1.5rem;
    margin: 0;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
}

.service-description {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
    transition: var(--transition);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: var(--secondary);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

.clients {
    padding: 6rem 0;
    background: var(--light-bg);
    overflow: hidden;
}

.clients-description {
    text-align: center;
    color: var(--gray-700);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clients-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    animation: scrollLogos 50s linear infinite;
    width: max-content;
}

.clients-grid:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    height: 120px;
    min-width: 200px;
    width: 200px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.client-logo img {
    max-width: 250%;
    max-height: 250%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2) contrast(0.9);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: none;
    opacity: 1;
}

.black-logo img {
    filter: brightness(0) saturate(100%) invert(70%);
    opacity: 0.95;
}

.black-logo:hover img {
    filter: none;
}

.client-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.placeholder-logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-300);
    filter: grayscale(100%);
    transition: var(--transition);
}

.client-logo:hover .placeholder-logo {
    color: var(--primary);
    filter: grayscale(0%);
}

.why-codseez {
    padding: 6rem 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.why-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.why-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
}

.about-content {
    padding: 4rem 0 6rem;
}

.prose-content {
    max-width: 800px;
    margin: 0 auto;
}

.prose-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 2rem;
}

.prose-content h2:first-child {
    margin-top: 0;
}

.prose-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.contact-content {
    padding: 4rem 0 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info>p {
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-item a {
    color: var(--primary);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--secondary);
}

.contact-item p {
    color: var(--gray-700);
}

.contact-cta {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-cta h2 {
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.legal-content {
    padding: 4rem 0 6rem;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-heading);
}

.footer-slogan {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 340px;
    }

    .dashboard-mockup {
        width: 100%;
        max-width: 400px;
        height: 300px;
        padding: 1.2rem;
    }

    .dashboard-header {
        gap: 5px;
        margin-bottom: 1rem;
    }

    .dashboard-dot {
        width: 9px;
        height: 9px;
    }

    .dashboard-title {
        font-size: 0.65rem;
    }

    .dashboard-stats {
        gap: 0.6rem;
        margin-bottom: 1rem;
        grid-template-columns: 1fr 1fr;
    }

    .stat-card {
        padding: 0.8rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .stat-value {
        font-size: 1.1rem;
    }

    .stat-trend {
        font-size: 0.6rem;
    }

    .dashboard-chart {
        height: 85px;
        padding: 0.8rem;
        gap: 0.4rem;
    }

    .dashboard-float {
        padding: 0.9rem;
    }

    .dashboard-float-1 {
        top: -10%;
        right: -4%;
    }

    .dashboard-float-2 {
        bottom: -6%;
        left: -6%;
    }

    .float-icon {
        width: 38px;
        height: 38px;
    }

    .float-icon svg {
        width: 19px;
        height: 19px;
    }

    .float-label {
        font-size: 0.75rem;
    }

    .float-sublabel {
        font-size: 0.65rem;
    }

    .bg-gradient-circle {
        width: 380px;
        height: 380px;
    }

    .decorative-dots {
        display: none;
    }

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

    .clients-grid {
        animation: scrollLogos 35s linear infinite;
    }

    .client-logo {
        height: 100px;
        min-width: 150px;
        width: 150px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        gap: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo img {
        height: 28px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .hero-visual {
        height: 300px;
    }

    .dashboard-mockup {
        max-width: 340px;
        height: 260px;
        padding: 1rem;
        border-radius: 16px;
    }

    .dashboard-header {
        gap: 4px;
        margin-bottom: 0.9rem;
    }

    .dashboard-dot {
        width: 8px;
        height: 8px;
    }

    .dashboard-title {
        font-size: 0.6rem;
    }

    .dashboard-stats {
        gap: 0.5rem;
        margin-bottom: 0.9rem;
    }

    .stat-card {
        padding: 0.7rem;
        border-radius: 10px;
    }

    .stat-label {
        font-size: 0.55rem;
        margin-bottom: 0.3rem;
    }

    .stat-value {
        font-size: 1rem;
        margin-bottom: 0.15rem;
    }

    .stat-trend {
        font-size: 0.55rem;
    }

    .dashboard-chart {
        height: 70px;
        padding: 0.7rem;
        gap: 0.35rem;
        border-radius: 10px;
    }

    .chart-bar-mini {
        border-radius: 4px 4px 0 0;
    }

    .dashboard-float {
        padding: 0.75rem;
        border-radius: 12px;
    }

    .dashboard-float-1 {
        top: -9%;
        right: -3%;
    }

    .dashboard-float-2 {
        bottom: -5%;
        left: -4%;
    }

    .float-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 0.4rem;
        border-radius: 9px;
    }

    .float-icon svg {
        width: 17px;
        height: 17px;
    }

    .float-label {
        font-size: 0.7rem;
    }

    .float-sublabel {
        font-size: 0.6rem;
    }

    .bg-gradient-circle {
        width: 300px;
        height: 300px;
    }

    .service-card {
        padding: 2rem;
    }

    .prose-content {
        padding: 0 1rem;
    }

    .contact-cta {
        padding: 2rem;
    }

    .footer-container {
        padding: 0 1.5rem;
    }
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2rem);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.oms-feature-card.reveal:nth-child(1) {
    transition-delay: 0s;
}

.oms-feature-card.reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.oms-feature-card.reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.oms-feature-card.reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.cloud-reason-card.reveal:nth-child(1) {
    transition-delay: 0s;
}

.cloud-reason-card.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.cloud-reason-card.reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.price-card.reveal:nth-child(1) {
    transition-delay: 0s;
}

.price-card.reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.price-card.reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.price-card.reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.choose-card.reveal:nth-child(1) {
    transition-delay: 0s;
}

.choose-card.reveal:nth-child(2) {
    transition-delay: 0.12s;
}

.support-card.reveal:nth-child(1) {
    transition-delay: 0s;
}

.support-card.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.support-card.reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.faq-item.reveal:nth-child(1) {
    transition-delay: 0s;
}

.faq-item.reveal:nth-child(2) {
    transition-delay: 0.05s;
}

.faq-item.reveal:nth-child(3) {
    transition-delay: 0.1s;
}

.faq-item.reveal:nth-child(4) {
    transition-delay: 0.15s;
}

.faq-item.reveal:nth-child(5) {
    transition-delay: 0.2s;
}

.faq-item.reveal:nth-child(6) {
    transition-delay: 0.25s;
}

.faq-item.reveal:nth-child(7) {
    transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .oms-hero-support-note .pulse-dot::after {
        animation: none !important;
    }

    .oms-hero-container {
        animation: none;
    }
}

.oms-hero {
    padding: 9rem 0 5rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    overflow: hidden;
    position: relative;
}

.oms-hero-container {
    max-width: 760px;
    text-align: center;
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.oms-hero-container .oms-hero-support-note {
    justify-content: center;
}

.oms-hero-container .oms-hero-desc {
    margin-left: auto;
    margin-right: auto;
}

@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.oms-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(77, 163, 230, 0.1);
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.oms-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.oms-hero-title {
    font-size: 3rem;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}

.oms-hero-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.oms-hero-desc {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 520px;
}

.oms-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--gray-200);
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
}

.btn-outline svg {
    width: 18px;
    height: 18px;
}

.oms-hero-support-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.6rem;
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
}

.oms-hero-support-note .pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #27C93F;
    position: relative;
    flex-shrink: 0;
}

.oms-hero-support-note .pulse-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #27C93F;
    animation: pulseDot 1.8s ease-out infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}


.oms-hero-versions-note {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-top: 0.9rem;
}

.oms-hero-versions-note a {
    color: var(--secondary);
    font-weight: 600;
}

.section-eyebrow {
    text-align: center;
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-desc {
    text-align: center;
    color: var(--gray-700);
    max-width: 640px;
    margin: -1.5rem auto 3rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.cloud-reasons-section {
    padding: 5rem 0 1rem;
}

.cloud-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1050px;
    margin: 0 auto;
}

.cloud-reason-card {
    background: linear-gradient(160deg, rgba(77, 163, 230, 0.07) 0%, var(--white) 60%);
    border: 1px solid rgba(77, 163, 230, 0.25);
    border-radius: 16px;
    padding: 1.6rem 1.5rem;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.cloud-reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.cloud-reason-card h3 {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.cloud-reason-card p {
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.65;
}

.choose-section {
    padding: 3rem 0 6rem;
}

.choose-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2.5rem auto 0;
    align-items: stretch;
}

.choose-card {
    border-radius: 18px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.choose-card.is-cloud {
    background: var(--white);
    border: 2px solid var(--primary);
}

.choose-card.is-desktop {
    background: var(--white);
    border: 2px solid var(--gray-200);
}

.choose-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.choose-card.is-cloud .choose-label {
    color: var(--secondary);
}

.choose-card.is-desktop .choose-label {
    color: var(--gray-700);
}

.choose-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.choose-card p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 0.95rem;
}

.oms-features-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.oms-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.oms-feature-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.oms-feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.oms-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.1rem;
}

.oms-feature-icon svg {
    width: 26px;
    height: 26px;
}

.oms-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.oms-feature-card p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.1rem;
    font-size: 0.96rem;
}

.oms-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.oms-tag {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--secondary);
    background: rgba(77, 163, 230, 0.1);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
}

.pricing-section {
    padding: 6rem 0;
}

.pricing-group {
    max-width: 1150px;
    margin: 0 auto 3rem;
}

.pricing-group-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pricing-bar {
    width: 4px;
    height: 22px;
    border-radius: 2px;
    background: var(--primary);
    flex-shrink: 0;
}

.pricing-bar.is-desktop {
    background: var(--dark);
}

.pricing-group-header h3 {
    font-size: 1.3rem;
}

.pricing-group-header span {
    color: var(--gray-700);
    font-size: 0.9rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
}

.pricing-cards.single-col {
    grid-template-columns: minmax(260px, 320px);
}

.price-card {
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.6rem 1.4rem;
    background: var(--white);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.price-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.price-card.is-popular {
    border-color: var(--primary);
    background: linear-gradient(160deg, rgba(77, 163, 230, 0.06) 0%, var(--white) 55%);
}

.price-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    white-space: nowrap;
}

.price-name {
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0.75rem;
}

.price-amount {
    margin-bottom: 1rem;
    line-height: 1;
}

.price-amount .currency {
    font-size: 0.85rem;
    color: var(--gray-700);
    vertical-align: super;
}

.price-amount .amount {
    font-size: 1.85rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.price-amount .period {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-700);
    margin-top: 0.3rem;
    font-weight: 400;
}

.price-specs {
    border-top: 1px solid var(--gray-200);
    padding-top: 0.9rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.price-spec {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray-700);
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.price-spec:last-child {
    border-bottom: none;
}

.price-spec .v {
    font-weight: 700;
    color: var(--dark);
}

.pricing-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-700);
    font-size: 0.92rem;
    line-height: 1.7;
}

.pricing-note a {
    color: var(--primary);
    font-weight: 600;
}

.comparison-section {
    padding: 2rem 0 6rem;
}

.compare-table-wrap {
    max-width: 900px;
    margin: 3rem auto 0;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
}

.compare-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.compare-table col.col-feature {
    width: 42%;
}

.compare-table col.col-cloud,
.compare-table col.col-desktop {
    width: 29%;
}

.compare-table th,
.compare-table td {
    padding: 0.85rem 0.75rem;
    font-size: 0.85rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
    word-break: break-word;
}

.compare-table thead th {
    background: var(--light-bg);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
}

.compare-table thead th:nth-child(2) {
    color: var(--secondary);
}

.compare-table thead th:nth-child(3) {
    color: var(--dark);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr:hover td {
    background: rgba(77, 163, 230, 0.05);
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--dark);
}

.ct-yes,
.ct-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.76rem;
    font-weight: 700;
}

.ct-yes {
    background: rgba(39, 201, 63, 0.14);
    color: #1a9c30;
}

.ct-no {
    background: var(--gray-100);
    color: var(--gray-300);
}

@media (max-width: 640px) {
    .compare-table col.col-feature {
        width: 40%;
    }

    .compare-table col.col-cloud,
    .compare-table col.col-desktop {
        width: 30%;
    }

    .compare-table th,
    .compare-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .compare-table thead th {
        font-size: 0.74rem;
    }

    .ct-yes,
    .ct-no {
        width: 19px;
        height: 19px;
        font-size: 0.68rem;
    }
}

@media (max-width: 360px) {

    .compare-table th,
    .compare-table td {
        padding: 0.5rem 0.3rem;
        font-size: 0.66rem;
    }

    .compare-table thead th {
        font-size: 0.68rem;
    }
}

.support-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #14324D 0%, #1B4B75 55%, #2F7ED8 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.support-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.support-inner .oms-eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    margin-left: auto;
    margin-right: auto;
}

.support-inner .oms-eyebrow::before {
    background: #6FE58B;
}

.support-title {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.support-desc {
    max-width: 680px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.75;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.support-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(6px);
    transition: var(--transition);
}

.support-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.support-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    color: var(--white);
}

.support-card-icon svg {
    width: 26px;
    height: 26px;
}

.support-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.support-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.support-card a.support-link {
    display: block;
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    font-family: var(--font-heading);
    padding: 0.55rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    transition: var(--transition);
}

.support-card a.support-link:hover {
    color: #A9D8FF;
}

.support-plans-note {
    margin-top: 2.5rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
}

.hardware-section {
    padding: 5rem 0;
}

.hardware-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--light-bg);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.5rem;
}

.hardware-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.hardware-icon svg {
    width: 36px;
    height: 36px;
}

.hardware-text h3 {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}

.hardware-text p {
    color: var(--gray-700);
    line-height: 1.7;
}

.hardware-text .hardware-items {
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hardware-items span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--dark);
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
}

.faq-section {
    padding: 2rem 0 6rem;
    background: var(--light-bg);
}

.faq-list {
    max-width: 780px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.faq-item {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.is-open {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    color: var(--primary);
}

.faq-item.is-open .faq-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
}

.faq-answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-answer-wrap {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer {
    padding: 0 1.5rem 1.4rem;
    color: var(--gray-700);
    line-height: 1.75;
    font-size: 0.96rem;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.faq-item.is-open .faq-answer {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .oms-hero {
        padding: 7.5rem 0 3rem;
    }

    .oms-features-grid {
        grid-template-columns: 1fr;
    }

    .cloud-reasons-grid {
        grid-template-columns: 1fr;
    }

    .choose-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .hardware-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
}

@media (max-width: 640px) {
    .section-container {
        padding: 0 1.25rem;
    }

    .oms-hero-title {
        font-size: 2rem;
    }

    .oms-hero-desc {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }

    .section-desc {
        font-size: 0.95rem;
        margin: -1rem auto 2rem;
    }

    .oms-feature-card {
        padding: 1.5rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-group-header {
        flex-wrap: wrap;
    }

    .price-card {
        padding: 1.4rem 1.2rem;
    }

    .support-title {
        font-size: 1.6rem;
    }

    .support-desc {
        font-size: 0.95rem;
    }

    .support-section {
        padding: 4rem 0;
    }

    .support-card {
        padding: 1.6rem 1.25rem;
    }

    .hardware-card {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .hardware-icon {
        width: 60px;
        height: 60px;
    }

    .faq-question {
        padding: 1.1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.92rem;
    }
}

@media (max-width: 400px) {
    .oms-hero-title {
        font-size: 1.7rem;
    }

    .price-amount .amount {
        font-size: 1.6rem;
    }
}