/* =========================================================
   COCOVISTA HOLIDAYS
   BUSINESS / CORPORATE LANDING PAGE
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --primary: #073b4c;

    --primary-dark: #052d3a;

    --primary-light: #0d5267;

    --accent: #d9b978;

    --accent-light: #ead39b;

    --dark: #10242c;

    --text: #51636a;

    --muted: #7d8d92;

    --light: #f6f8f8;

    --white: #ffffff;

    --border: #e5eaec;

    --success: #198754;

    --orange: #e99a38;

    --purple: #8064c9;

    --shadow:
        0 20px 60px rgba(7, 59, 76, 0.10);

    --shadow-heavy:
        0 30px 80px rgba(5, 45, 58, 0.18);

    --radius: 20px;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: "DM Sans", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
input,
textarea,
select {

    font-family: inherit;

}


img {

    max-width: 100%;

    display: block;

}


.business-container {

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;

}


/* =========================================================
   NAVBAR
========================================================= */

.business-navbar {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(7, 59, 76, 0.08);

}


.nav-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    gap: 40px;

}


.business-logo {

    display: flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;

}


.business-logo-icon {

    width: 48px;

    height: 48px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 19px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-light)
        );

    box-shadow:
        0 8px 20px rgba(7, 59, 76, 0.18);

}


.business-logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.business-logo-text strong {

    color: var(--dark);

    font-size: 22px;

    font-weight: 800;

}


.business-logo-text span {

    margin-top: 5px;

    color: var(--accent);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 3px;

}


.business-nav {

    display: flex;

    align-items: center;

    gap: 30px;

    margin-left: auto;

}


.business-nav a {

    color: var(--dark);

    font-size: 14px;

    font-weight: 700;

    transition: 0.25s ease;

}


.business-nav a:hover {

    color: var(--primary-light);

}


.nav-actions {

    display: flex;

    align-items: center;

    gap: 20px;

}


.login-link {

    color: var(--primary);

    font-size: 14px;

    font-weight: 800;

}


.nav-business-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 19px;

    color: white;

    background: var(--primary);

    border-radius: 10px;

    font-size: 13px;

    font-weight: 800;

    transition: 0.3s ease;

}


.nav-business-btn:hover {

    background: var(--accent);

    transform: translateY(-2px);

}


.mobile-business-menu {

    display: none;

    margin-left: auto;

    width: 44px;

    height: 44px;

    border: 0;

    border-radius: 10px;

    color: var(--primary);

    background: #f0f4f5;

    font-size: 18px;

    cursor: pointer;

}


.mobile-nav {

    display: none;

}


/* =========================================================
   HERO
========================================================= */

.business-hero {

    position: relative;

    min-height: 700px;

    display: flex;

    align-items: center;

    background:
        url("https://images.unsplash.com/photo-1521292270410-a8c4d716d518?auto=format&fit=crop&w=2000&q=90")
        center/cover no-repeat;

    overflow: hidden;

}


.business-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 35, 44, 0.94) 0%,
            rgba(4, 35, 44, 0.82) 48%,
            rgba(4, 35, 44, 0.36) 100%
        );

}


.hero-inner {

    position: relative;

    z-index: 2;

    min-height: 700px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        430px;

    align-items: center;

    gap: 70px;

}


.hero-content {

    max-width: 680px;

}


.hero-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 22px;

    color: var(--accent-light);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

}


.hero-eyebrow i {

    font-size: 14px;

}


.hero-content h1 {

    color: white;

    font-family: "Playfair Display", serif;

    font-size: clamp(48px, 6vw, 76px);

    line-height: 1.06;

    letter-spacing: -1.5px;

    margin-bottom: 23px;

}


.hero-content h1 span {

    display: block;

    color: var(--accent-light);

}


.hero-content > p {

    max-width: 640px;

    color:
        rgba(255, 255, 255, 0.86);

    font-size: 18px;

    line-height: 1.8;

}


.hero-actions {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 32px;

}


.hero-primary,
.hero-secondary {

    min-height: 54px;

    padding: 0 23px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius: 11px;

    font-size: 14px;

    font-weight: 800;

    transition: 0.3s ease;

}


.hero-primary {

    color: var(--dark);

    background: var(--accent-light);

}


.hero-primary:hover {

    background: white;

    transform: translateY(-3px);

}


.hero-secondary {

    color: white;

    border: 1px solid rgba(255,255,255,0.32);

    background:
        rgba(255,255,255,0.08);

}


.hero-secondary:hover {

    background: rgba(255,255,255,0.16);

    transform: translateY(-3px);

}


.hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 30px;

}


.hero-trust div {

    color: rgba(255,255,255,0.72);

    font-size: 12px;

    font-weight: 600;

}


.hero-trust i {

    margin-right: 7px;

    color: var(--accent-light);

}


/* =========================================================
   HERO DASHBOARD CARD
========================================================= */

.hero-dashboard-card {

    padding: 25px;

    border:
        1px solid rgba(255,255,255,0.18);

    border-radius: 22px;

    background:
        rgba(255,255,255,0.97);

    box-shadow: var(--shadow-heavy);

}


.dashboard-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--border);

}


.dashboard-card-top span {

    display: block;

    color: var(--accent);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.dashboard-card-top strong {

    display: block;

    margin-top: 4px;

    color: var(--dark);

    font-size: 17px;

}


.online-dot {

    display: flex;

    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    border-radius: 20px;

    color: var(--success);

    background: #edf8f2;

    font-size: 10px;

    font-weight: 800;

}


.online-dot i {

    font-size: 7px;

}


.mini-stat-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    padding: 20px 0;

}


.mini-stat {

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 14px;

    border-radius: 13px;

    background: #f7f9fa;

}


.mini-stat-icon {

    width: 37px;

    height: 37px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

}


.mini-stat-icon.blue {

    color: #2879a2;

    background: #eaf5fb;

}


.mini-stat-icon.green {

    color: var(--success);

    background: #eaf8f0;

}


.mini-stat-icon.orange {

    color: var(--orange);

    background: #fff4e6;

}


.mini-stat-icon.purple {

    color: var(--purple);

    background: #f1edfb;

}


.mini-stat small {

    display: block;

    color: var(--muted);

    font-size: 9px;

}


.mini-stat strong {

    display: block;

    margin-top: 1px;

    color: var(--dark);

    font-size: 19px;

}


.mini-request {

    padding: 15px 0;

    border-top: 1px solid var(--border);

}


.mini-request-title {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 5px;

    color: var(--muted);

    font-size: 10px;

}


.mini-status {

    padding: 4px 8px;

    border-radius: 20px;

    color: var(--success);

    background: #eaf8f0;

    font-size: 8px;

    font-weight: 800;

}


.mini-status.pending {

    color: var(--orange);

    background: #fff4e6;

}


.mini-request > strong {

    display: block;

    color: var(--dark);

    font-size: 13px;

}


.mini-request > small {

    color: var(--muted);

    font-size: 9px;

}


/* =========================================================
   TRUST BAR
========================================================= */

.business-trust {

    background: white;

    border-bottom: 1px solid var(--border);

}


.trust-inner {

    min-height: 105px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.trust-title span {

    display: block;

    color: var(--accent);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.trust-title strong {

    display: block;

    margin-top: 3px;

    color: var(--dark);

    font-size: 16px;

}


.trust-items {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 30px;

}


.trust-items div {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--text);

    font-size: 11px;

    font-weight: 700;

}


.trust-items i {

    color: var(--primary);

    font-size: 16px;

}


/* =========================================================
   GENERAL SECTION
========================================================= */

.solutions-section,
.process-section {

    padding: 110px 0;

}


.section-heading {

    max-width: 700px;

    margin-bottom: 55px;

}


.section-heading.center {

    margin-left: auto;

    margin-right: auto;

    text-align: center;

}


.section-heading > span,
.section-eyebrow {

    display: block;

    margin-bottom: 13px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


.section-heading h2 {

    color: var(--dark);

    font-family: "Playfair Display", serif;

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.16;

    margin-bottom: 17px;

}


.section-heading p {

    color: var(--text);

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   SOLUTION CARDS
========================================================= */

.solution-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.solution-card {

    overflow: hidden;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 20px;

    box-shadow:
        0 10px 40px rgba(7,59,76,0.05);

    transition: 0.35s ease;

}


.solution-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(7,59,76,0.12);

}


.solution-card.featured {

    border-color:
        rgba(217,185,120,0.5);

}


.solution-image {

    position: relative;

    height: 220px;

    background-position: center;

    background-size: cover;

    display: flex;

    align-items: flex-end;

    padding: 22px;

}


.corporate-image {

    background-image:
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=85");

}


.agent-image {

    background-image:
        url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=900&q=85");

}


.operator-image {

    background-image:
        url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=900&q=85");

}


.solution-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(4,35,44,0.78),
            rgba(4,35,44,0.05)
        );

}


.solution-icon {

    position: relative;

    z-index: 2;

    width: 49px;

    height: 49px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 12px;

    border-radius: 13px;

    color: var(--dark);

    background: var(--accent-light);

    font-size: 19px;

}


.solution-label {

    position: relative;

    z-index: 2;

    margin-bottom: 15px;

    color: white;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.solution-content {

    padding: 27px;

}


.solution-content h3 {

    color: var(--dark);

    font-size: 21px;

    margin-bottom: 10px;

}


.solution-content > p {

    min-height: 95px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.7;

}


.solution-content ul {

    list-style: none;

    margin: 15px 0 23px;

}


.solution-content li {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 8px;

    color: var(--text);

    font-size: 11px;

    font-weight: 600;

}


.solution-content li i {

    color: var(--success);

}


.solution-content > a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

}


.solution-content > a i {

    transition: 0.25s ease;

}


.solution-content > a:hover i {

    transform: translateX(4px);

}


/* =========================================================
   BENEFITS
========================================================= */

.benefits-section {

    padding: 115px 0;

    background: #f6f9fa;

    overflow: hidden;

}


.benefits-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 0.85fr);

    align-items: center;

    gap: 90px;

}


.benefits-content h2 {

    max-width: 580px;

    color: var(--dark);

    font-family: "Playfair Display", serif;

    font-size: clamp(38px, 4.5vw, 58px);

    line-height: 1.12;

    margin-bottom: 22px;

}


.benefits-content h2 span {

    color: var(--primary-light);

}


.benefits-content > p {

    max-width: 590px;

    margin-bottom: 35px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.8;

}


.benefit-list {

    display: grid;

    gap: 22px;

}


.benefit-item {

    display: flex;

    gap: 16px;

}


.benefit-icon {

    width: 47px;

    height: 47px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 13px;

    color: var(--primary);

    background: white;

    box-shadow:
        0 8px 25px rgba(7,59,76,0.07);

}


.benefit-item h3 {

    color: var(--dark);

    font-size: 15px;

    margin-bottom: 3px;

}


.benefit-item p {

    color: var(--text);

    font-size: 12px;

    line-height: 1.6;

}


/* =========================================================
   BENEFITS VISUAL
========================================================= */

.benefits-visual {

    position: relative;

    min-height: 510px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.visual-main-card {

    position: relative;

    z-index: 2;

    width: 390px;

    padding: 27px;

    border-radius: 22px;

    background: white;

    box-shadow: var(--shadow-heavy);

}


.visual-card-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--border);

}


.visual-card-header span {

    display: block;

    color: var(--accent);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

}


.visual-card-header strong {

    display: block;

    margin-top: 4px;

    color: var(--dark);

    font-size: 17px;

}


.visual-card-header > i {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    color: var(--primary);

    background: #edf5f7;

}


.progress-item {

    margin-top: 24px;

}


.progress-item > div:first-child {

    display: flex;

    justify-content: space-between;

    margin-bottom: 8px;

}


.progress-item span {

    color: var(--text);

    font-size: 11px;

    font-weight: 600;

}


.progress-item strong {

    color: var(--dark);

    font-size: 11px;

}


.progress-bar {

    height: 7px;

    overflow: hidden;

    border-radius: 20px;

    background: #edf1f2;

}


.progress-bar span {

    display: block;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--accent)
        );

}


.visual-bottom {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 28px;

    padding-top: 22px;

    border-top: 1px solid var(--border);

}


.visual-avatar-stack {

    display: flex;

    padding-left: 8px;

}


.visual-avatar-stack span {

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-left: -8px;

    border: 2px solid white;

    border-radius: 50%;

    color: white;

    background: var(--primary);

    font-size: 9px;

    font-weight: 800;

}


.visual-avatar-stack span:nth-child(2) {

    background: var(--accent);

}


.visual-avatar-stack span:nth-child(3) {

    background: var(--primary-light);

}


.visual-avatar-stack span:nth-child(4) {

    background: #dfe8ea;

    color: var(--dark);

}


.visual-bottom small {

    color: var(--muted);

    font-size: 9px;

}


.floating-card {

    position: absolute;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 13px 16px;

    border-radius: 13px;

    background: white;

    box-shadow:
        0 18px 45px rgba(7,59,76,0.15);

}


.floating-card > i {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    color: var(--success);

    background: #eaf8f0;

}


.floating-card strong {

    display: block;

    color: var(--dark);

    font-size: 10px;

}


.floating-card small {

    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 8px;

}


.floating-one {

    top: 45px;

    right: 0;

}


.floating-two {

    bottom: 45px;

    left: 0;

}


.floating-two > i {

    color: var(--primary);

    background: #edf5f7;

}


/* =========================================================
   PROCESS
========================================================= */

.process-section {

    background: white;

}


.process-grid {

    display: grid;

    grid-template-columns:
        1fr
        40px
        1fr
        40px
        1fr
        40px
        1fr;

    align-items: start;

}


.process-step {

    text-align: center;

}


.process-number {

    margin-bottom: 8px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

}


.process-icon {

    width: 68px;

    height: 68px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 19px;

    color: var(--primary);

    background: #edf5f7;

    font-size: 23px;

}


.process-step h3 {

    margin-bottom: 8px;

    color: var(--dark);

    font-size: 15px;

}


.process-step p {

    color: var(--text);

    font-size: 11px;

    line-height: 1.7;

}


.process-line {

    height: 1px;

    margin-top: 95px;

    background:
        repeating-linear-gradient(
            90deg,
            var(--accent) 0,
            var(--accent) 5px,
            transparent 5px,
            transparent 10px
        );

}


/* =========================================================
   DEMO CTA
========================================================= */

.demo-section {

    padding: 0 0 110px;

}


.demo-card {

    position: relative;

    min-height: 340px;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 60px;

    border-radius: 25px;

    background:
        linear-gradient(
            115deg,
            var(--primary-dark),
            var(--primary)
        );

    box-shadow:
        0 25px 70px rgba(7,59,76,0.18);

}


.demo-content {

    position: relative;

    z-index: 3;

    max-width: 650px;

}


.demo-content > span {

    color: var(--accent-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.demo-content h2 {

    margin: 10px 0 15px;

    color: white;

    font-family: "Playfair Display", serif;

    font-size: clamp(35px, 4vw, 51px);

    line-height: 1.1;

}


.demo-content p {

    max-width: 570px;

    color: rgba(255,255,255,0.75);

    font-size: 14px;

}


.demo-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 27px;

}


.demo-primary,
.demo-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 50px;

    padding: 0 20px;

    border-radius: 10px;

    font-size: 12px;

    font-weight: 800;

    transition: 0.3s ease;

}


.demo-primary {

    color: var(--dark);

    background: var(--accent-light);

}


.demo-secondary {

    color: white;

    border: 1px solid rgba(255,255,255,0.3);

    background: rgba(255,255,255,0.08);

}


.demo-primary:hover,
.demo-secondary:hover {

    transform: translateY(-3px);

}


.demo-primary:hover {

    background: white;

}


.demo-secondary:hover {

    background: rgba(255,255,255,0.16);

}


.demo-decoration {

    position: absolute;

    inset: 0;

    pointer-events: none;

}


.decoration-circle {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.1);

}


.circle-one {

    width: 470px;

    height: 470px;

    right: -130px;

    top: -190px;

}


.circle-two {

    width: 330px;

    height: 330px;

    right: 40px;

    bottom: -210px;

}


.decoration-plane {

    position: absolute;

    right: 150px;

    top: 95px;

    color: rgba(255,255,255,0.07);

    font-size: 170px;

    transform: rotate(-12deg);

}


/* =========================================================
   FOOTER
========================================================= */

.business-footer {

    background: #061f29;

    color: white;

}


.footer-main {

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap: 50px;

    padding: 70px 0 55px;

}


.footer-logo .business-logo-text strong {

    color: white;

}


.footer-brand p {

    max-width: 300px;

    margin-top: 20px;

    color: rgba(255,255,255,0.55);

    font-size: 12px;

    line-height: 1.8;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.footer-column h4 {

    margin-bottom: 8px;

    color: white;

    font-size: 12px;

}


.footer-column a {

    color: rgba(255,255,255,0.55);

    font-size: 11px;

    transition: 0.2s;

}


.footer-column a:hover {

    color: var(--accent-light);

}


.footer-bottom {

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid rgba(255,255,255,0.08);

    color: rgba(255,255,255,0.4);

    font-size: 10px;

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {


    .business-nav {

        gap: 18px;

    }


    .nav-actions {

        gap: 12px;

    }


    .hero-inner {

        grid-template-columns:
            minmax(0, 1fr)
            370px;

        gap: 40px;

    }


    .hero-content h1 {

        font-size: 58px;

    }


    .benefits-layout {

        gap: 50px;

    }


    .process-grid {

        grid-template-columns:
            1fr
            30px
            1fr
            30px
            1fr
            30px
            1fr;

    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 800px) {


    .business-container {

        width: min(100% - 30px, 600px);

    }


    /* NAV */

    .nav-inner {

        min-height: 70px;

        gap: 0;

    }


    .business-nav,
    .nav-actions {

        display: none;

    }


    .mobile-business-menu {

        display: flex;

        align-items: center;

        justify-content: center;

    }


    .mobile-nav {

        display: flex;

        position: absolute;

        left: 15px;

        right: 15px;

        top: calc(100% + 8px);

        flex-direction: column;

        padding: 10px;

        border: 1px solid var(--border);

        border-radius: 15px;

        background: white;

        box-shadow:
            0 20px 45px rgba(7,59,76,0.14);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition: 0.25s ease;

    }


    .mobile-nav.active {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .mobile-nav a {

        padding: 13px 14px;

        border-radius: 9px;

        color: var(--dark);

        font-size: 13px;

        font-weight: 700;

    }


    .mobile-nav a:hover {

        background: #f4f7f8;

    }


    .mobile-nav .mobile-login {

        margin-top: 5px;

        color: var(--primary);

        background: #edf5f7;

        text-align: center;

    }


    .mobile-nav .mobile-register {

        margin-top: 5px;

        color: white;

        background: var(--primary);

        text-align: center;

    }


    /* HERO */

    .business-hero {

        min-height: auto;

    }


    .hero-inner {

        min-height: auto;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 45px;

        padding-top: 80px;

        padding-bottom: 80px;

    }


    .hero-content h1 {

        font-size: clamp(43px, 13vw, 62px);

    }


    .hero-content > p {

        font-size: 15px;

    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-primary,
    .hero-secondary {

        width: 100%;

    }


    .hero-dashboard-card {

        width: 100%;

    }


    /* TRUST */

    .trust-inner {

        flex-direction: column;

        align-items: flex-start;

        padding: 28px 0;

        gap: 22px;

    }


    .trust-items {

        display: grid;

        grid-template-columns: 1fr 1fr;

        width: 100%;

        gap: 15px;

    }


    /* SOLUTIONS */

    .solutions-section,
    .process-section,
    .benefits-section {

        padding: 75px 0;

    }


    .section-heading {

        margin-bottom: 38px;

    }


    .section-heading h2 {

        font-size: 36px;

    }


    .solution-grid {

        grid-template-columns: 1fr;

    }


    .solution-content > p {

        min-height: auto;

    }


    /* BENEFITS */

    .benefits-layout {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .benefits-content h2 {

        font-size: 39px;

    }


    .benefits-visual {

        min-height: 470px;

    }


    .visual-main-card {

        width: min(390px, 100%);

    }


    .floating-one {

        right: -5px;

    }


    .floating-two {

        left: -5px;

    }


    /* PROCESS */

    .process-grid {

        display: grid;

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .process-line {

        display: none;

    }


    .process-step {

        max-width: 350px;

        margin: 0 auto;

    }


    /* DEMO */

    .demo-section {

        padding-bottom: 75px;

    }


    .demo-card {

        min-height: auto;

        padding: 45px 28px;

    }


    .demo-content h2 {

        font-size: 38px;

    }


    .decoration-plane {

        right: -30px;

        font-size: 120px;

    }


    /* FOOTER */

    .footer-main {

        grid-template-columns:
            1fr 1fr;

        gap: 40px 25px;

        padding: 55px 0 40px;

    }


    .footer-brand {

        grid-column: 1 / -1;

    }


    .footer-bottom {

        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .business-container {

        width: calc(100% - 26px);

    }


    .business-logo-text strong {

        font-size: 19px;

    }


    .business-logo-icon {

        width: 43px;

        height: 43px;

    }


    .hero-inner {

        padding-top: 65px;

        padding-bottom: 65px;

    }


    .hero-content h1 {

        font-size: 43px;

    }


    .hero-trust {

        flex-direction: column;

        gap: 10px;

    }


    .hero-dashboard-card {

        padding: 18px;

    }


    .mini-stat {

        padding: 10px;

    }


    .mini-stat-icon {

        width: 32px;

        height: 32px;

    }


    .mini-stat small {

        font-size: 8px;

    }


    .mini-stat strong {

        font-size: 16px;

    }


    .solution-image {

        height: 200px;

    }


    .benefits-content h2 {

        font-size: 36px;

    }


    .benefits-visual {

        min-height: 430px;

    }


    .visual-main-card {

        padding: 20px;

    }


    .floating-card {

        padding: 10px 12px;

    }


    .floating-one {

        right: -8px;

        top: 25px;

    }


    .floating-two {

        left: -8px;

        bottom: 20px;

    }


    .demo-card {

        padding: 38px 22px;

    }


    .demo-content h2 {

        font-size: 34px;

    }


    .demo-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .demo-primary,
    .demo-secondary {

        width: 100%;

    }


    .footer-main {

        grid-template-columns: 1fr;

    }


    .footer-brand {

        grid-column: auto;

    }

}