/* HEADER */

.om-header {
    position: sticky;
    top: 0;
    z-index: 99999;
    width: 100%;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(11, 31, 85, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: 0.3s ease;
}

.user-login {
    display: none;
}

.om-header.om-scrolled {
    box-shadow: 0 10px 35px rgba(11, 31, 85, 0.1);
    background: rgba(255, 255, 255, 0.96);
}

.om-header-inner {
    width: min(1320px, calc(100% - 44px));
    height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.om-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.om-logo img {
    width: 190px;
    max-width: 100%;
    height: auto;
    display: block;
}

.om-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    flex: 1;
}

.om-nav a {
    position: relative;
    color: #12204b !important;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
    padding: 31px 0;
    transition: 0.25s ease;
}

.om-nav a:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 22px;
    width: 0;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, #1558ff, #18b45b);
    transform: translateX(-50%);
    transition: 0.25s ease;
}

.om-nav a:hover {
    color: #1558ff !important;
}

.om-nav a:hover:after {
    width: 100%;
}

.om-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.om-login {
    color: #1558ff !important;
    border: 1px solid #d8e3f7;
    background: #fff;
    padding: 11px 17px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
    transition: 0.25s ease;
}

.om-login:hover {
    border-color: #1558ff;
    transform: translateY(-2px);
}

.om-header-cta,
.om-mobile-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff !important;
    background: linear-gradient(115deg, #123ec5 0%, #1558ff 55%, #3876ff 100%);
    padding: 12px 18px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(21, 88, 255, 0.25);
    transition: 0.25s ease;
}

.om-header-cta:hover,
.om-mobile-cta:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(21, 88, 255, 0.32);
}

.om-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #dce6f7;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    cursor: pointer;
}

.om-mobile-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 5px;
    background: #12336f;
    transition: 0.25s ease;
}

.om-mobile-menu {
    display: none;
    padding: 14px 22px 22px;
    background: #fff;
    border-top: 1px solid #eef2f8;
    box-shadow: 0 18px 35px rgba(11, 31, 85, 0.1);
}

.om-mobile-menu > a {
    display: block;
    padding: 12px 2px;
    color: #12204b !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
    border-bottom: 1px solid #f0f3f8;
}

.om-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 10px;
    margin-top: 15px;
}

.om-mobile-login {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #1558ff;
    color: #1558ff !important;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
}

@media (max-width: 1050px) {
    .om-nav {
        gap: 15px;
    }
    .om-nav a {
        font-size: 12px;
    }
    .om-logo img {
        width: 165px;
    }
    .om-header-cta,
    .om-login {
        font-size: 12px;
        padding: 10px 13px;
    }
}

@media (max-width: 820px) {
    .om-header-inner {
        height: 70px;
        width: min(100% - 30px, 1320px);
    }

    .om-logo img {
        width: 155px;
    }
    .om-nav,
    .om-header-actions {
        display: none;
    }
    .om-mobile-toggle {
        display: block;
    }
    .om-mobile-menu.is-open {
        display: block;
    }
}

@media (max-width: 420px) {
    .om-logo img {
        width: 138px;
    }
    .om-mobile-actions {
        grid-template-columns: 1fr;
    }
    .om-mobile-login {
        min-height: 44px;
    }
}

/* HOME / LANDING */

:root {
    --om-navy: #071a46;
    --om-navy-2: #0c2a67;
    --om-blue: #1558ff;
    --om-blue-2: #3977ff;
    --om-green: #18b45b;
    --om-green-2: #56e98b;
    --om-purple: #7b2cff;
    --om-orange: #ff7a00;
    --om-cyan: #14b8d4;
    --om-bg: #f6f9ff;
    --om-card: #ffffff;
    --om-text: #17264d;
    --om-muted: #65728d;
    --om-line: #e2e9f5;
    --om-shadow: 0 18px 55px rgba(16, 32, 74, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--om-text);
    background: #fff;
    overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
    font-family: "Open Sans", Arial, sans-serif;
}

a {
    text-decoration: none;
}

.one-minute-home {
    overflow: hidden;
}

.one-minute-home section {
    scroll-margin-top: 95px;
}

.one-minute-home .container {
    width: min(1280px, calc(100% - 40px));
    max-width: 1280px;
}

/* ---------- REVEAL ANIMATION ---------- */

.om-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease,
        transform 0.75s cubic-bezier(0.2, 0.75, 0.3, 1);
}

.om-reveal.om-visible {
    opacity: 1;
    transform: none;
}

.om-delay-1 {
    transition-delay: 0.08s;
}
.om-delay-2 {
    transition-delay: 0.16s;
}
.om-delay-3 {
    transition-delay: 0.24s;
}
.om-delay-4 {
    transition-delay: 0.32s;
}

/* ---------- HERO ---------- */

.om-hero {
    position: relative;
    min-height: auto;
    padding: 20px 0 20px;
    background: radial-gradient(
            circle at 78% 20%,
            rgba(79, 130, 255, 0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(24, 180, 91, 0.08),
            transparent 28%
        ),
        linear-gradient(180deg, #fbfdff 0%, #f3f7ff 100%);
}

.om-hero:before,
.om-hero:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.om-hero:before {
    width: 240px;
    height: 240px;
    right: -70px;
    top: 100px;
    background: rgba(21, 88, 255, 0.08);
    animation: omFloat 7s ease-in-out infinite;
}

.om-hero:after {
    width: 180px;
    height: 180px;
    left: -90px;
    bottom: 70px;
    background: rgba(24, 180, 91, 0.08);
    animation: omFloat 9s ease-in-out infinite reverse;
}

@keyframes omFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -18px, 0);
    }
}

.om-hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.om-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 30px;
    background: #eaf1ff;
    color: #174fcf;
    border: 1px solid #d5e2ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.om-eyebrow i {
    color: var(--om-green);
}

.om-hero h1 {
    margin: 0 0 20px;
    color: var(--om-navy);
    font-size: 25px;
    line-height: 1.02;
    letter-spacing: 0px;
    font-weight: 900;
}

.om-hero h1 .green {
    color: var(--om-green);
}

.om-hero-copy > p {
    max-width: 640px;
    margin: 0 0 22px;
    color: var(--om-muted);
    font-size: 17px;
    line-height: 1.75;
}

.om-proofs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 27px;
}

.om-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid var(--om-line);
    border-radius: 10px;
    color: #30405f;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 7px 22px rgba(16, 32, 74, 0.05);
}

.om-proof-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--om-green);
    background: #eafff2;
}

.om-cta-label {
    margin-bottom: 11px;
    color: var(--om-navy);
    font-size: 18px;
    font-weight: 900;
}

.om-build-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 610px;
}

.om-build {
    min-height: 76px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-radius: 15px;
    text-decoration: none !important;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.om-build:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: -35px;
    top: -55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.om-build:hover {
    transform: translateY(-4px);
}

.om-ai {
    color: #fff !important;
    background: linear-gradient(115deg, #7224e8 0%, #1558ff 75%);
    box-shadow: 0 15px 35px rgba(91, 45, 220, 0.22);
}

.om-manual {
    color: var(--om-navy) !important;
    background: #fff;
    border: 1px solid #cfdcf2;
    box-shadow: 0 12px 30px rgba(16, 32, 74, 0.07);
}

.om-build-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-size: 18px;
}

.om-ai .om-build-icon {
    background: rgba(255, 255, 255, 0.16);
}

.om-manual .om-build-icon {
    color: var(--om-green);
    background: #eef4ff;
}

.om-build-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.om-build-copy small {
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 5px;
    opacity: 0.85;
}

.om-build-copy strong {
    font-size: 14px;
}

.om-build-arrow {
    margin-left: auto;
    font-size: 19px;
}

.om-free-note {
    margin-top: 12px;
    color: #405172;
    font-size: 12px;
    font-weight: 700;
}

.om-free-note i {
    color: var(--om-green);
}

/* ---------- HERO MOCKUP ---------- */

.om-hero-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.om-glow {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(21, 88, 255, 0.18),
        rgba(21, 88, 255, 0)
    );
    animation: omPulse 5s ease-in-out infinite;
}

@keyframes omPulse {
    0%,
    100% {
        transform: scale(0.96);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

.om-device {
    position: relative;
    z-index: 2;
    width: min(100%, 530px);
    padding: 11px;
    border-radius: 27px;
    background: linear-gradient(145deg, #101a2c, #243b61);
    box-shadow: 0 35px 75px rgba(11, 31, 85, 0.25);
    transform: rotate(-1.4deg);
    animation: omDevice 5s ease-in-out infinite;
}

@keyframes omDevice {
    0%,
    100% {
        transform: rotate(-1.4deg) translateY(0);
    }
    50% {
        transform: rotate(-0.3deg) translateY(-9px);
    }
}

.om-screen {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
}

.om-screen-top {
    min-height: 220px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    background: radial-gradient(
            circle at 80% 20%,
            rgba(255, 255, 255, 0.18),
            transparent 28%
        ),
        linear-gradient(135deg, #173e83, #3478df);
}

.om-screen-top small {
    display: inline-block;
    margin-bottom: 7px;
    font-size: 10px;
    letter-spacing: 1.4px;
    font-weight: 900;
    opacity: 0.8;
}

.om-screen-top strong {
    font-size: 29px;
    line-height: 1.05;
}

.om-screen-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 16px;
}

.om-product {
    height: 105px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #f4f7fc;
    border: 1px solid #e9eef7;
    transition: 0.3s ease;
}

.om-product i {
    font-size: 31px;
}

.om-product:nth-child(1) i {
    color: #31b866;
}
.om-product:nth-child(2) i {
    color: #1d73d5;
}
.om-product:nth-child(3) i {
    color: #aa8d73;
}
.om-product:nth-child(4) i {
    color: #f15f42;
}

.om-device-badge {
    position: absolute;
    right: -30px;
    bottom: 32px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 17px;
    border: 1px solid #e3e9f3;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(16, 32, 74, 0.15);
    font-size: 12px;
    font-weight: 900;
    animation: omBadge 4s ease-in-out infinite;
}

.om-device-badge i {
    color: var(--om-green);
    font-size: 17px;
}

@keyframes omBadge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.om-mini-stat {
    position: absolute;
    left: -24px;
    top: 70px;
    z-index: 3;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--om-line);
    border-radius: 15px;
    box-shadow: 0 18px 40px rgba(16, 32, 74, 0.12);
}

.om-mini-stat strong {
    display: block;
    color: var(--om-green);
    font-size: 21px;
}

.om-mini-stat span {
    color: var(--om-muted);
    font-size: 9px;
    font-weight: 800;
}

/* ---------- COMMON ---------- */

.om-section {
    position: relative;
    padding: 40px 0;
}

.om-section.alt {
    background: radial-gradient(
            circle at 0 50%,
            rgba(21, 88, 255, 0.05),
            transparent 30%
        ),
        #f6f9ff;
}

.om-section.white {
    background: #fff;
}

.om-title {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.om-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--om-green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.om-title h2 {
    margin: 0 0 12px;
    color: var(--om-navy);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -1.3px;
    font-weight: 900;
}

.om-title h2 span {
    color: var(--om-green);
}

.om-title p {
    margin: 0 auto;
    color: var(--om-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ---------- ADVANTAGE ---------- */

.om-adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.om-adv {
    position: relative;
    padding: 30px 22px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--om-line);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(16, 32, 74, 0.055);
    transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}

.om-adv:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--om-blue), var(--om-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s ease;
}

.om-adv:hover {
    transform: translateY(-9px);
    box-shadow: 0 25px 55px rgba(16, 32, 74, 0.12);
}

.om-adv:hover:before {
    transform: scaleX(1);
}

.om-adv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: var(--om-green);
    background: #edf3ff;
    font-size: 25px;
    transition: 0.35s ease;
}

.om-adv:hover .om-adv-icon {
    transform: rotate(-6deg) scale(1.08);
}

.om-adv:nth-child(2) .om-adv-icon {
    color: var(--om-green);
    background: #eafff2;
}

.om-adv:nth-child(3) .om-adv-icon {
    color: var(--om-purple);
    background: #f2eaff;
}

.om-adv:nth-child(4) .om-adv-icon {
    color: var(--om-orange);
    background: #fff0e4;
}

.om-adv h3 {
    margin: 0 0 8px;
    color: var(--om-navy);
    font-size: 17px;
    font-weight: 900;
}

.om-adv h3 span {
    color: var(--om-green);
}

.om-adv p {
    margin: 0;
    color: var(--om-muted);
    font-size: 12px;
    line-height: 1.65;
}

/* ---------- FEATURE ROWS ---------- */

.om-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    margin-bottom: 100px;
}

.om-feature-row:last-child {
    margin-bottom: 0;
}

.om-feature-row.reverse .om-feature-image {
    order: 2;
}

.om-feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: var(--om-shadow);
    background: #eaf0fa;
}

.om-feature-image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(21, 88, 255, 0.06),
        transparent 55%
    );
    pointer-events: none;
}

.om-feature-image img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.om-feature-image:hover img {
    transform: scale(1.055);
}

.om-feature-number {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--om-green);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(16, 32, 74, 0.16);
}

.om-feature-copy h2 {
    margin: 0 0 16px;
    color: var(--om-navy);
    font-size: clamp(29px, 3vw, 42px);
    line-height: 1.12;
    letter-spacing: -1px;
    font-weight: 900;
}

.om-feature-copy h2 span {
    color: var(--om-green);
}

.om-feature-copy p {
    margin: 0 0 14px;
    color: var(--om-muted);
    font-size: 15px;
    line-height: 1.8;
}

.om-feature-copy ul {
    list-style: none;
    margin: 22px 0;
    padding: 0;
}

.om-feature-copy li {
    position: relative;
    margin: 10px 0;
    padding-left: 30px;
    color: #31415f;
    font-size: 13px;
    font-weight: 800;
}

.om-feature-copy li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--om-green);
    background: #e8fff0;
    font-size: 11px;
    font-weight: 900;
}

.om-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--om-green) !important;
    font-size: 13px;
    font-weight: 900;
}

.om-link i {
    transition: 0.25s ease;
}

.om-link:hover i {
    transform: translateX(5px);
}

/* ---------- STEPS ---------- */

.om-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.om-step {
    position: relative;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--om-line);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(16, 32, 74, 0.055);
    transition: 0.35s ease;
}

.om-step:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 48px rgba(16, 32, 74, 0.12);
}

.om-step-head {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--om-navy);
    font-size: 14px;
    font-weight: 900;
}

.om-num {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.om-n1 {
    background: linear-gradient(135deg, #1558ff, #4b83ff);
}
.om-n2 {
    background: linear-gradient(135deg, #13a94f, #42d875);
}
.om-n3 {
    background: linear-gradient(135deg, #7224e8, #a45cff);
}
.om-n4 {
    background: linear-gradient(135deg, #f36c00, #ff9b43);
}

.om-step-art {
    height: 145px;
    margin: 19px 0;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(145deg, #f6f8fc, #eef3fb);
    border: 1px solid #edf1f7;
    font-size: 49px;
}

.om-step-art i {
    font-size: 47px;
}

.om-product-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.om-product-icons i:nth-child(1) {
    color: #31b866;
}
.om-product-icons i:nth-child(2) {
    color: #1d73d5;
}

.om-margin {
    color: var(--om-green);
    font-size: 42px;
    font-weight: 900;
}

.om-muted {
    color: var(--om-muted);
    font-size: 11px;
    line-height: 1.65;
}

.om-banner {
    position: relative;
    overflow: hidden;
    margin: 24px 0 18px;
    padding: 23px 28px;
    text-align: center;
    color: #fff;
    border-radius: 18px;
    background: linear-gradient(100deg, #103cbb, #1558ff 55%, #3978ff);
    box-shadow: 0 17px 38px rgba(21, 88, 255, 0.2);
    font-size: 20px;
    font-weight: 900;
}

.om-banner:after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    top: -120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.om-banner span {
    color: #6dffa2;
}

.om-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--om-line);
    border-radius: 18px;
}

.om-benefit {
    padding: 23px 15px;
    text-align: center;
    border-right: 1px solid var(--om-line);
}

.om-benefit:last-child {
    border-right: 0;
}

.om-benefit .ico {
    height: 32px;
    color: var(--om-green);
    font-size: 22px;
}

.om-benefit strong {
    display: block;
    margin-top: 6px;
    color: var(--om-navy);
    font-size: 13px;
}

.om-tagline {
    margin-top: 23px;
    text-align: center;
    color: var(--om-navy);
    font-size: 22px;
    font-weight: 900;
}

.om-tagline span {
    color: var(--om-green);
}

/* ---------- STATS ---------- */

.om-status {
    color: #fff;
    background: radial-gradient(
            circle at 90% 10%,
            rgba(70, 124, 255, 0.25),
            transparent 30%
        ),
        linear-gradient(135deg, #061742, #103d9a);
}

.om-status .om-title h2 {
    color: #fff;
}

.om-status .om-title h2 span {
    color: #63ff9c;
}

.om-status .om-title p {
    color: #c5d0e8;
}

.om-status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.om-status-card {
    position: relative;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(10px);
    transition: 0.35s ease;
}

.om-status-card:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.11);
}

.om-status-card i {
    color: #6dffa2;
    font-size: 23px;
    margin-bottom: 14px;
}

.om-status-card .amount {
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
}

.om-status-card .small {
    margin-top: 8px;
    color: #c9d5ee;
    font-size: 10px;
    line-height: 1.5;
}

/* ---------- PRICING / CATCH ---------- */

.om-catch-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 70px;
    align-items: center;
}

.om-price {
    position: relative;
    overflow: hidden;
    padding: 42px 30px;
    text-align: center;
    border: 1px solid var(--om-line);
    border-radius: 25px;
    background: #fff;
    box-shadow: var(--om-shadow);
}

.om-price:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--om-green), var(--om-blue));
}

.om-price-badge {
    display: inline-block;
    margin-bottom: 13px;
    padding: 6px 11px;
    border-radius: 20px;
    color: #168a49;
    background: #eafff2;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.om-price h3 {
    margin: 0;
    color: var(--om-navy);
    font-size: 23px;
    font-weight: 900;
}

.om-price h3 span {
    color: var(--om-green);
}

.om-no-price {
    margin: 13px 0 5px;
    color: var(--om-green);
    font-size: 78px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -3px;
}

.om-price small {
    color: var(--om-muted);
    font-size: 12px;
}

.om-sign {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 22px 0 12px;
    padding: 13px 21px;
    color: #fff !important;
    border-radius: 11px;
    background: linear-gradient(90deg, #103fc9, #1558ff);
    box-shadow: 0 12px 28px rgba(21, 88, 255, 0.22);
    font-size: 12px;
    font-weight: 900;
    transition: 0.25s ease;
}

.om-sign:hover {
    color: #fff !important;
    transform: translateY(-3px);
}

.om-price p {
    margin: 0;
    color: var(--om-muted);
    font-size: 11px;
    line-height: 1.6;
}

.om-catch-copy h2 {
    margin: 0 0 18px;
    color: var(--om-navy);
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.08;
    font-weight: 900;
}

.om-catch-copy h2 span {
    color: var(--om-green);
}

.om-catch-copy p {
    margin: 0 0 17px;
    color: var(--om-muted);
    font-size: 15px;
    line-height: 1.8;
}

/* ---------- DIFFERENT ---------- */

.om-different-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.om-different {
    position: relative;
    padding: 25px 25px 25px 61px;
    border: 1px solid var(--om-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 9px 27px rgba(16, 32, 74, 0.05);
    transition: 0.3s ease;
}

.om-different:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(16, 32, 74, 0.1);
}

.om-different:before {
    content: "✓";
    position: absolute;
    left: 22px;
    top: 25px;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: var(--om-green);
    background: #e9fff1;
    font-size: 12px;
    font-weight: 900;
}

.om-different h3 {
    margin: 0 0 8px;
    color: var(--om-navy);
    font-size: 15px;
    font-weight: 900;
}

.om-different p {
    margin: 0;
    color: var(--om-muted);
    font-size: 11px;
    line-height: 1.65;
}

.om-final {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 65px auto 0;
    padding: 62px 35px;
    text-align: center;
    color: #fff;
    border-radius: 28px;
    background: radial-gradient(
            circle at 15% 10%,
            rgba(255, 255, 255, 0.16),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(24, 180, 91, 0.16),
            transparent 30%
        ),
        linear-gradient(120deg, #6825df, #1558ff 70%);
    box-shadow: 0 30px 70px rgba(21, 88, 255, 0.25);
}

.om-final:after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -100px;
    top: -150px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.om-final h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    font-size: clamp(31px, 4vw, 45px);
    font-weight: 900;
}

.om-final p {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.7;
}

.om-final a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    color: var(--om-blue) !important;
    border-radius: 11px;
    background: #fff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: 0.25s ease;
}

.om-final a:hover {
    transform: translateY(-3px) scale(1.02);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1100px) {
    .om-hero-grid {
        gap: 35px;
    }
    .om-hero {
        padding-top: 55px;
    }
    .om-adv-grid,
    .om-steps,
    .om-status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .om-feature-row {
        gap: 40px;
    }
    .om-catch-grid {
        gap: 40px;
    }
}

@media (max-width: 800px) {
    .one-minute-home .container {
        width: min(100% - 30px, 1280px);
    }

    .om-hero {
        min-height: auto;
        padding: 15px 0 15px;
    }

    .om-hero-grid,
    .om-feature-row,
    .om-catch-grid {
        grid-template-columns: 1fr;
    }

    .om-hero-copy {
        text-align: center;
    }

    .om-hero-copy > p {
        margin-left: auto;
        margin-right: auto;
    }

    .om-proofs {
        justify-content: center;
    }

    .om-build-options {
        max-width: 100%;
    }

    .om-hero-visual {
        min-height: 410px;
    }

    .om-device {
        width: min(100%, 550px);
    }

    .om-mini-stat {
        left: 0;
    }

    .om-device-badge {
        right: 0;
    }

    .om-feature-row {
        gap: 30px;
        margin-bottom: 70px;
    }

    .om-feature-row.reverse .om-feature-image {
        order: 0;
    }

    .om-feature-copy {
        text-align: left;
    }

    .om-section {
        padding: 65px 0;
    }
}

@media (max-width: 600px) {
    .om-hero h1 {
        font-size: 22px;
        letter-spacing: 0px;
    }

    .om-build-options,
    .om-adv-grid,
    .om-steps,
    .om-status-grid,
    .om-different-list {
        grid-template-columns: 1fr;
    }

    .om-feature-image img {
        height: 270px;
    }

    .om-screen-top {
        min-height: 165px;
    }

    .om-screen-top strong {
        font-size: 23px;
    }

    .om-product {
        height: 72px;
    }

    .om-product i {
        font-size: 24px;
    }

    .om-device-badge {
        bottom: 18px;
        font-size: 10px;
        padding: 11px 13px;
    }

    .om-mini-stat {
        top: 35px;
        padding: 11px 12px;
    }

    .om-mini-stat strong {
        font-size: 17px;
    }

    .om-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .om-benefit {
        border-right: 1px solid var(--om-line);
        border-bottom: 1px solid var(--om-line);
    }

    .om-benefit:nth-child(2n) {
        border-right: 0;
    }

    .om-benefit:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .om-tagline {
        font-size: 18px;
    }

    .om-price {
        padding: 35px 22px;
    }

    .om-final {
        padding: 45px 22px;
        border-radius: 22px;
    }
}

@media (max-width: 390px) {
    .om-proof {
        width: 100%;
        justify-content: center;
    }

    .om-hero-visual {
        min-height: 330px;
    }

    .om-device-badge {
        right: -4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *:before,
    *:after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* FOOTER */

/* =========================================================
   FOOTER
========================================================= */

.om-footer {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #fff;
    background: #061638;
    overflow: hidden;
}

/* =========================================================
   MAIN FOOTER
========================================================= */

.om-footer-main {
    padding: 58px 0 35px;

    background: radial-gradient(
            circle at 8% 0%,
            rgba(21, 88, 255, 0.2),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(24, 180, 91, 0.08),
            transparent 28%
        ),
        #061638;
}

.om-footer .container {
    width: min(1280px, calc(100% - 40px));

    max-width: 1280px;

    margin: 0 auto;
}

/* =========================================================
   GRID
========================================================= */

.om-footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        repeat(2, 1fr)
        1fr;

    gap: 45px;

    align-items: start;

    padding-bottom: 40px;
}

/* =========================================================
   BRAND
========================================================= */

.om-footer-brand {
    transform: translateY(-5px);
    position: relative;
    padding: 25px 25px 25px 25px;
    border: 1px solid var(--om-line);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 9px 27px rgba(16, 32, 74, 0.05);
    transition: 0.3s ease;
}

.om-footer-logo-link {
    display: inline-flex;

    align-items: center;

    margin-bottom: 18px;
}

.om-footer-logo {
    display: block;

    width: 180px;

    height: auto;

    max-width: 100%;
}

.om-footer-brand p {
    max-width: 330px;

    margin: 0;

    color: #444;

    font-size: 12px;

    line-height: 1.8;
}

/* =========================================================
   DYNAMIC MENU
========================================================= */

.om-footer-column {
    min-width: 0;
}

.om-footer-column h4 {
    margin: 3px 0 17px;

    color: #fff;

    font-size: 15px;

    line-height: 1.3;

    font-weight: 900;
}

.om-footer-column ul {
    margin: 0;

    padding: 0;

    list-style: none;
}

.om-footer-column li {
    margin: 9px 0;
}

.om-footer-column li a {
    color: #aebbd5 !important;

    font-size: 12px;

    line-height: 1.5;

    text-decoration: none !important;

    transition: color 0.2s ease, padding-left 0.2s ease;
}

.om-footer-column li a:hover {
    color: #fff !important;

    padding-left: 4px;
}

/* =========================================================
   ACCOUNT
========================================================= */

.om-footer-account {
    min-width: 150px;
}

/* =========================================================
   PAYMENT
========================================================= */

.om-payment-title {
    margin-top: 28px !important;

    margin-bottom: 13px !important;
}

.om-payment-icons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;
}

.om-payment {
    width: 51px;

    height: 36px;

    padding: 5px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background: #fff;

    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.12);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.om-payment:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.om-payment img {
    display: block;

    width: auto;

    height: auto;

    max-width: 100%;

    max-height: 25px;
}

/* =========================================================
   CTA
========================================================= */

.om-footer-cta {
    min-height: 82px;

    padding: 18px 26px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 18px;

    background: linear-gradient(
        100deg,
        rgba(21, 88, 255, 0.24),
        rgba(13, 63, 116, 0.28)
    );

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.om-footer-cta-text {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.om-footer-cta-text span {
    color: #63ff9c;

    font-size: 10px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: 1.2px;
}

.om-footer-cta-text strong {
    color: #fff;

    font-size: 18px;

    line-height: 1.25;

    font-weight: 900;
}

.om-footer-cta-button {
    flex: 0 0 auto;

    min-width: 175px;

    padding: 13px 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    box-sizing: border-box;

    color: #1558ff !important;

    border-radius: 11px;

    background: #fff;

    font-size: 12px;

    font-weight: 900;

    text-decoration: none !important;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.om-footer-cta-button:hover {
    color: #1558ff !important;

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.om-footer-cta-button i {
    transition: 0.25s ease;
}

.om-footer-cta-button:hover i {
    transform: translateX(4px);
}

/* =========================================================
   COPYRIGHT
========================================================= */

.om-footer-bottom {
    width: 100%;

    margin: 0;

    padding: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.09);

    background: #04112c;
}

.om-footer-bottom-inner {
    min-height: 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.om-copyright {
    margin: 0;

    padding: 0;

    color: #8291af;

    font-size: 10px;

    line-height: 1.5;
}

.om-footer-links {
    flex: 0 0 auto;

    display: flex;

    align-items: center;

    gap: 10px;
}

.om-footer-links span {
    color: #53627e;

    font-size: 10px;
}

.om-footer-links a {
    color: #8291af !important;

    font-size: 10px;

    text-decoration: none !important;

    transition: 0.2s ease;
}

.om-footer-links a:hover {
    color: #fff !important;
}

/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1050px) {
    .om-footer-grid {
        grid-template-columns:
            1.4fr
            1fr
            1fr;

        gap: 35px;
    }

    .om-footer-brand {
        grid-column: 1 / -1;

        padding-right: 0;
    }
}

/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 650px) {
    .om-footer-main {
        padding: 45px 0 28px;
    }

    .om-footer .container {
        width: min(100% - 30px, 1280px);
    }

    .om-footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 30px 20px;

        padding-bottom: 30px;
    }

    .om-footer-brand {
        grid-column: 1 / -1;
    }

    .om-footer-logo {
        width: 155px;
    }

    .om-footer-cta {
        min-height: 0;

        padding: 21px;

        flex-direction: column;

        align-items: flex-start;
    }

    .om-footer-cta-button {
        width: 100%;
    }

    .om-footer-bottom-inner {
        min-height: 0;

        padding: 14px 0;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 8px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
    .om-footer-grid {
        grid-template-columns: 1fr;
    }

    .om-footer-brand {
        grid-column: auto;
    }

    .om-footer-column {
        margin-bottom: 5px;
    }
}

/* SHARED / FORM / RESPONSIVE */

/* =========================================================
   OneMinuteStore - Shared Site Styles
   Centralized stylesheet for all landing/CMS pages.
========================================================= */

:root {
    --om-navy: #071a46;
    --om-navy-2: #0c2a67;
    --om-blue: #1558ff;
    --om-blue-2: #3977ff;
    --om-green: #18b45b;
    --om-green-2: #56e98b;
    --om-bg: #f6f9ff;
    --om-card: #fff;
    --om-text: #17264d;
    --om-muted: #65728d;
    --om-line: #e2e9f5;
    --om-shadow: 0 18px 55px rgba(16, 32, 74, 0.1);
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--om-text);
    background: #fff;
    overflow-x: hidden;
    font-family: "Open Sans", Arial, sans-serif;
}
body,
button,
input,
textarea,
select {
    font-family: "Open Sans", Arial, sans-serif;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}

.one-minute-home {
    overflow: hidden;
}
.one-minute-home section {
    scroll-margin-top: 95px;
}
.one-minute-home .container,
.om-page-container {
    width: min(1280px, calc(100% - 40px));
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* Shared CMS/content pages */
.layout-set {
    padding: 64px 0 80px;
}
.middel_content,
.last_box_layout {
    min-height: calc(100vh - 160px);
    background: #fff;
}
.p-style {
    max-width: 850px;
    margin: 0 auto;
    color: var(--om-muted);
    font-size: 16px;
    line-height: 1.75;
}
.link-text {
    color: var(--om-green);
    font-weight: 700;
}
.blue {
    color: var(--om-green);
}

.om-page-title {
    text-align: center;
    width: min(100%, 900px);
    margin: 0 auto 28px;
}
.om-page-title h1 {
    margin: 0;
}
.om-success-alert,
.om-danger-alert {
    display: none;
}

/* Shared page headings */
.contact_heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 42px;
}
.contact_heading h1,
.middel_content h1,
.last_box_layout h1 {
    margin: 0 0 16px;
    color: var(--om-navy);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -1.5px;
}

/* Shared forms */
.main_form {
    width: min(920px, 100%);
    margin: 0 auto;
    padding: 34px 38px;
    background: #fff;
    border: 1px solid var(--om-line);
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(16, 32, 74, 0.07);
}
.om-form-row {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
    margin: 0 0 22px;
}
.om-form-label {
    padding-top: 12px;
    color: #24365d;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
}
.om-form-label-empty {
    visibility: hidden;
}
.om-form-field {
    min-width: 0;
}
.om-form-control,
.main_form input.form-control,
.main_form select.form-control,
.main_form textarea.form-control {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: #17264d;
    background: #fff;
    border: 1px solid #d8e2f2;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    line-height: 1.45;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease,
        background 0.2s ease;
}
.main_form textarea.form-control {
    min-height: 125px;
    resize: vertical;
}
.main_form input.form-control:focus,
.main_form select.form-control:focus,
.main_form textarea.form-control:focus {
    border-color: #6f98ff;
    box-shadow: 0 0 0 4px rgba(21, 88, 255, 0.09);
}
.main_form .required_custom {
    color: #e14d4d;
}
.om-form-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}
.om-form-btn {
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}
.om-form-btn:hover {
    transform: translateY(-1px);
}
.om-form-btn-primary {
    color: #fff;
    background: linear-gradient(115deg, #1558ff, #3977ff);
    box-shadow: 0 9px 22px rgba(21, 88, 255, 0.2);
}
.om-form-btn-secondary {
    color: #1558ff;
    background: #fff;
    border: 1px solid #cfdcf2;
}

/* Supplier/contact page shells */
.contact_form_box {
    width: min(1000px, calc(100% - 40px));
    margin: 0 auto;
}
.supplier-intro {
    margin-bottom: 18px;
}
.supplier-intro + .main_form {
    margin-top: 28px;
}
.time_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.om-time-group {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr) minmax(
            0,
            90px
        );
    gap: 7px;
    align-items: center;
}
.om-time-label {
    font-size: 12px;
    color: #65728d;
    font-weight: 700;
}
.om-time-group .form-control {
    min-width: 0;
}

/* Generic CMS page content */
.om-cms-content {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
}
.om-cms-content .fixpage {
    margin-bottom: 42px;
}
.om-cms-content .fixpage > div > p,
.om-cms-content .cms-copy {
    color: var(--om-muted);
    font-size: 16px;
    line-height: 1.8;
}
.om-box-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.boxing_set {
    height: 100%;
    padding: 26px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--om-line);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(16, 32, 74, 0.05);
}
.boxing_set img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 13px;
}
.boxing_set h6 {
    margin: 0 0 8px;
    color: var(--om-navy);
    font-size: 15px;
    font-weight: 900;
}
.boxing_set p {
    margin: 0;
    color: var(--om-muted);
    font-size: 13px;
}
.boxing_set a {
    color: var(--om-green);
    font-weight: 700;
    font-size: 13px;
}

/* Alerts / preloader used by AJAX forms */
.om-global-alert {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100000;
    width: min(560px, calc(100% - 30px));
    margin: 0;
    padding: 13px 16px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(7, 26, 70, 0.16);
    font-size: 14px;
}
.preloader {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(3px);
}
.preloader-custom-gif {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}
.loader {
    width: 42px;
    height: 42px;
    border: 4px solid #dce6fa;
    border-top-color: #1558ff;
    border-radius: 50%;
    animation: omSpin 0.8s linear infinite;
}
@keyframes omSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Hero final spacing */
.om-hero {
    padding: 20px 0 20px;
}
.om-hero-grid {
    gap: 46px;
}
.om-hero h1 {
    font-size: 25;
    line-height: 1.04;
    margin-bottom: 16px;
}
.om-hero-copy > p {
    max-width: 600px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.65;
}
.om-proofs {
    gap: 9px;
    margin-bottom: 22px;
}
.om-cta-label {
    margin-bottom: 9px;
    font-size: 17px;
}
.om-build-options {
    gap: 11px;
    max-width: 600px;
}
.om-build {
    min-height: 72px;
    padding: 11px 14px;
}
.om-free-note {
    margin-top: 9px;
}
.om-hero-visual {
    min-height: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.om-hero-visual > img {
    display: block;
    width: 100%;
    max-width: 620px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

@media (max-width: 900px) {
    .om-form-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }
    .om-form-label {
        padding-top: 0;
    }
    .om-form-label-empty {
        display: none;
    }
    .time_box {
        grid-template-columns: 1fr;
    }
    .om-box-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 800px) {
    .one-minute-home .container,
    .om-page-container {
        width: min(100% - 30px, 1280px);
    }
    .om-hero {
        padding: 15px 0 15px;
    }
    .om-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .om-hero-copy {
        text-align: center;
    }
    .om-hero h1 {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .om-hero-copy > p {
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 650px) {
    .layout-set {
        padding: 46px 0 58px;
    }
    .main_form {
        padding: 24px 18px;
        border-radius: 14px;
    }
    .contact_form_box,
    .om-cms-content {
        width: min(100% - 30px, 1000px);
    }
    .om-box-grid {
        grid-template-columns: 1fr;
    }
    .om-form-actions {
        width: 100%;
        flex-direction: column;
    }
    .om-form-btn {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .om-hero {
        padding: 15px 0 15px;
    }
    .om-hero h1 {
        font-size: 20px;
        letter-spacing: 0px;
    }
    .om-hero-copy > p {
        font-size: 15px;
        line-height: 1.6;
    }
}
@media (max-width: 430px) {
    .om-time-group {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 6px;
    }
    .om-time-group .om-time-label {
        grid-column: 1/-1;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *:before,
    *:after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.om-icon-purple {
    color: #7b2cff;
}
.om-icon-orange {
    color: #ff7a00;
}
.om-kicker-light {
    color: #6dffa2;
}
