@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* font-family: "Outfit", sans-serif; */

:root {
    --orange: #ff6a00;
    --orange-dark: #ed5600;
    --orange-light: #ff8a3d;

    --navy: #07111d;
    --navy-2: #0b1724;
    --navy-3: #101f2f;

    --text: #0b1728;
    --text-soft: #64748b;

    --white: #ffffff;
    --surface: #ffffff;
    --surface-2: #f7f9fb;

    --border: #e7ebef;

    --green: #22c55e;
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --pink: #ec4899;

    --shadow:
        0 20px 60px rgba(10, 25, 45, .08);

    --radius: 24px;

    --container: 1180px;

    --transition: .3s ease;
}


/* =========================================================
           DARK THEME
        ========================================================= */

body.dark {

    --text: #f5f7fa;
    --text-soft: #94a3b8;

    --white: #07111d;
    --surface: #0d1926;
    --surface-2: #101e2c;

    --border: rgba(255, 255, 255, .09);

    --shadow:
        0 20px 70px rgba(0, 0, 0, .35);
}


/* =========================================================
           RESET
        ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);

    background:
        var(--surface);

    line-height: 1.6;

    transition:
        background .3s ease,
        color .3s ease;

    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: min(calc(100% - 40px),
            var(--container));

    margin: auto;
}


/* =========================================================
           HEADER
        ========================================================= */

header {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;
}

.navbar {

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.logo {

    display: flex;
    align-items: center;

    gap: 10px;
}

.logo img {

    width: 205px;
    height: auto;
}

.nav-links {

    display: flex;
    align-items: center;

    gap: 34px;

    font-size: 14px;
    font-weight: 600;

    color: var(--text);
}

.nav-links a {

    opacity: .82;

    transition:
        color var(--transition),
        opacity var(--transition);
}

.nav-links a:hover {

    color: var(--orange);

    opacity: 1;
}

.nav-actions {

    display: flex;

    align-items: center;

    gap: 12px;
}


/* =========================================================
           BUTTONS
        ========================================================= */

.btn {

    border: 0;

    cursor: pointer;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 48px;

    padding:
        0 22px;

    border-radius: 100px;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.btn:hover {

    transform: translateY(-2px);
}

.btn-primary {

    color: white;

    background:
        linear-gradient(135deg,
            #ff7a18,
            #ff5700);

    box-shadow:
        0 12px 28px rgba(255, 106, 0, .22);
}

.btn-primary:hover {

    box-shadow:
        0 16px 35px rgba(255, 106, 0, .32);
}

.btn-outline {

    color: var(--text);

    background:
        transparent;

    border:
        1px solid var(--border);
}

.btn-outline:hover {

    border-color:
        var(--orange);

    color:
        var(--orange);
}

.login-btn {

    min-height: 44px;
    padding: 0 24px;
}


/* =========================================================
           THEME TOGGLE
        ========================================================= */

.theme-toggle {

    width: 44px;
    height: 44px;

    border-radius: 50%;

    border:
        1px solid var(--border);

    background:
        var(--surface);

    color:
        var(--text);

    cursor: pointer;

    display: grid;
    place-items: center;

    font-size: 18px;

    transition: .3s ease;
}

.theme-toggle:hover {

    color: var(--orange);

    border-color:
        var(--orange);

    transform:
        rotate(15deg);
}


/* =========================================================
           MOBILE MENU
        ========================================================= */

.menu-btn {

    display: none;

    width: 44px;
    height: 44px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        var(--surface);

    color:
        var(--text);

    font-size: 20px;

    cursor: pointer;
}


/* =========================================================
           HERO
        ========================================================= */
.heroImg {
    color: transparent;
    width: 650px !important;
    height: auto !important;
    margin: 0px auto;
}

.hero {

    min-height: 850px;

    position: relative;

    overflow: hidden;

    padding-top: 100px;

    /* background:
        radial-gradient(circle at 50% 35%,
            rgba(255, 106, 0, .08),
            transparent 30%),
        var(--surface); */

    background: url('../public/images/bgDark.png') !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}

body.dark .hero {

    /* background:
        radial-gradient(circle at 50% 35%,
            rgba(255, 106, 0, .13),
            transparent 30%),
        #050d15; */
}

.hero::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    left: -380px;
    top: 140px;

    background:
        radial-gradient(circle,
            rgba(255, 106, 0, .10),
            transparent 65%);

    pointer-events: none;
}

.hero::after {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -380px;
    top: 140px;

    background:
        radial-gradient(circle,
            rgba(255, 106, 0, .10),
            transparent 65%);

    pointer-events: none;
}

.hero-content {

    text-align: center;

    position: relative;

    z-index: 2;
}

.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        7px 13px;

    border-radius: 100px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;

    color:
        var(--orange);

    background:
        rgba(255, 106, 0, .08);

    border:
        1px solid rgba(255, 106, 0, .15);

    margin-bottom: 18px;
}

.hero h1 {

    max-width: 950px;

    margin: auto;

    font-size:
        clamp(42px,
            5.8vw,
            76px);

    line-height: 1.02;

    letter-spacing: -3.5px;

    font-weight: 850;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

.hero h1 span {

    color:
        var(--orange);
}

.hero-description {

    max-width: 730px;

    margin:
        24px auto 0;

    color:
        var(--text-soft);

    font-size: 18px;

    line-height: 1.7;
}

.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 14px;

    margin-top: 30px;
}


/* =========================================================
           HERO SCENE
        ========================================================= */

.hero-scene {

    position: relative;

    max-width: 1160px;

    height: 390px;

    margin:
        50px auto 0;
}


/* SHOP CARDS */

.shop {

    position: absolute;

    bottom: 42px;

    width: 250px;

    height: 220px;

    border-radius:
        14px 14px 4px 4px;

    overflow: hidden;

    border:
        1px solid var(--border);

    background:
        var(--surface-2);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .10);

    z-index: 1;
}

.shop.left {
    left: 0;
}

.shop.right {
    right: 0;
}

.shop.gym {
    right: 245px;
}

.shop-title {

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    font-weight: 800;

    color:
        var(--text);

    border-bottom:
        1px solid var(--border);

    background:
        linear-gradient(135deg,
            rgba(255, 106, 0, .15),
            rgba(255, 106, 0, .03));
}

.shop-body {

    height: 162px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;
}

.shop-window {

    width: 150px;
    height: 105px;

    border:
        4px solid rgba(255, 255, 255, .18);

    background:
        linear-gradient(135deg,
            rgba(255, 106, 0, .2),
            rgba(255, 255, 255, .03));

    border-radius:
        10px 10px 0 0;

    position: relative;
}

.shop-window::before {

    content: "";

    position: absolute;

    left: 20px;
    right: 20px;

    top: 35px;

    height: 4px;

    background:
        rgba(255, 255, 255, .35);

    box-shadow:
        0 20px 0 rgba(255, 255, 255, .2);
}

.shop-window::after {

    content: "";

    position: absolute;

    width: 45px;
    height: 45px;

    bottom: -8px;
    left: 52px;

    border-radius: 50% 50% 0 0;

    border:
        3px solid rgba(255, 255, 255, .3);
}


/* =========================================================
           DASHBOARD MOCKUP
        ========================================================= */

.device {

    position: absolute;

    z-index: 5;

    left: 50%;

    transform:
        translateX(-50%);

    bottom: 0;

    width: 620px;
}

.laptop {

    position: relative;

    background:
        #05080d;

    border-radius:
        20px 20px 10px 10px;

    padding: 12px;

    border:
        2px solid #28394b;

    box-shadow:
        0 35px 70px rgba(0, 0, 0, .35);
}

.laptop-screen {

    background:
        #f5f7fa;

    border-radius:
        10px;

    overflow:
        hidden;

    height: 340px;

    color:
        #0b1728;
}

.dashboard {

    display: grid;

    grid-template-columns:
        120px 1fr;

    height: 100%;
}

.sidebar {

    background:
        #0d1825;

    color:
        white;

    padding: 16px 10px;
}

.dash-logo {

    display: flex;

    align-items: center;

    gap: 6px;

    font-size: 10px;

    font-weight: 800;

    margin-bottom: 20px;
}

.dash-logo-icon {

    width: 22px;
    height: 22px;

    border-radius: 6px;

    background:
        var(--orange);

    display: grid;
    place-items: center;
}

.side-item {

    display: flex;

    align-items: center;

    gap: 7px;

    padding:
        8px 7px;

    border-radius: 6px;

    font-size: 8px;

    color:
        #9aa9b8;

    margin-bottom: 3px;
}

.side-item.active {

    color:
        white;

    background:
        rgba(255, 106, 0, .2);
}

.dash-main {

    padding: 17px;

    background:
        #f6f8fa;
}

.dash-top {

    display: flex;

    justify-content:
        space-between;

    align-items:
        center;

    margin-bottom: 15px;
}

.dash-title {

    font-size: 15px;

    font-weight: 800;
}

.dash-sub {

    font-size: 7px;

    color: #7a8795;
}

.new-booking {

    background:
        var(--orange);

    color: white;

    border: 0;

    border-radius: 6px;

    padding:
        7px 10px;

    font-size: 7px;

    font-weight: 700;
}

.stats {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 8px;

    margin-bottom: 10px;
}

.stat {

    background:
        white;

    border:
        1px solid #e7ebef;

    border-radius: 7px;

    padding: 9px;
}

.stat-value {

    font-size: 14px;

    font-weight: 850;

    color:
        #0b1728;
}

.stat:nth-child(2) .stat-value {

    color:
        #16a34a;
}

.stat-label {

    font-size: 6px;

    color:
        #8994a1;
}

.dash-grid {

    display: grid;

    grid-template-columns:
        1.6fr .9fr;

    gap: 10px;
}

.dash-card {

    background:
        white;

    border:
        1px solid #e7ebef;

    border-radius: 8px;

    padding: 11px;
}

.card-heading {

    font-size: 8px;

    font-weight: 800;

    margin-bottom: 9px;
}

.appointment {

    display: grid;

    grid-template-columns:
        50px 1fr 45px;

    align-items:
        center;

    gap: 6px;

    padding:
        7px 0;

    border-bottom:
        1px solid #eef1f4;

    font-size: 6px;
}

.appointment:last-child {
    border: 0;
}

.person {

    display: flex;

    align-items: center;

    gap: 5px;

    font-weight: 700;
}

.avatar {

    width: 16px;
    height: 16px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #ffb27a,
            #ff6a00);
}

.status {

    padding:
        3px 5px;

    border-radius: 20px;

    background:
        #dcfce7;

    color:
        #15803d;

    font-size: 5px;

    text-align: center;
}

.calendar {

    height: 100px;

    background:
        linear-gradient(135deg,
            #fff,
            #f7f8fa);

    border-radius: 6px;

    border:
        1px solid #edf0f2;

    padding: 8px;
}

.calendar-head {

    display: flex;

    justify-content:
        space-between;

    font-size: 7px;

    font-weight: 800;

    margin-bottom: 8px;
}

.calendar-grid {

    display: grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap: 4px;

    text-align: center;

    font-size: 5px;

    color:
        #7b8794;
}

.calendar-grid span.active {

    background:
        var(--orange);

    color:
        white;

    width: 13px;
    height: 13px;

    border-radius: 50%;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin: auto;
}

.laptop-base {

    height: 16px;

    width: 105%;

    margin-left: -2.5%;

    background:
        linear-gradient(#6c7b88,
            #2e3a44);

    border-radius:
        0 0 25px 25px;
}


/* PHONE */

.phone {

    position: absolute;

    z-index: 10;

    right: 80px;

    bottom: -8px;

    width: 130px;

    height: 260px;

    background:
        #05080d;

    border:
        4px solid #202e3d;

    border-radius:
        23px;

    padding: 6px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .35);
}

.phone-screen {

    height: 100%;

    border-radius:
        17px;

    overflow: hidden;

    background:
        #f7f8fa;

    color:
        #0b1728;

    padding: 10px;
}

.phone-notch {

    width: 45px;

    height: 8px;

    background:
        #05080d;

    border-radius:
        0 0 8px 8px;

    margin:
        -10px auto 10px;
}

.phone-brand {

    font-size: 8px;

    font-weight: 850;

    margin-bottom: 12px;
}

.phone-welcome {

    font-size: 12px;

    font-weight: 850;

    line-height: 1.2;

    margin-bottom: 10px;
}

.phone-actions {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 6px;
}

.phone-action {

    min-height: 55px;

    border:
        1px solid #e5e8ec;

    border-radius: 9px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 4px;

    font-size: 7px;

    background:
        white;
}

.phone-action strong {

    font-size: 15px;

    color:
        var(--orange);
}


/* =========================================================
           TRUST BADGES
        ========================================================= */

.trust-row {

    display: flex;

    justify-content:
        center;

    gap: 35px;

    margin-top: 22px;

    position: relative;

    z-index: 10;
}

.trust-item {

    display: flex;

    align-items: center;

    gap: 7px;

    color:
        var(--text-soft);

    font-size: 12px;

    font-weight: 600;
}

.check {

    width: 17px;
    height: 17px;

    border-radius: 50%;

    background:
        var(--green);

    color:
        white;

    display: grid;

    place-items: center;

    font-size: 10px;

    font-weight: 900;
}


/* =========================================================
           SECTION
        ========================================================= */
.img{
    height: auto !important;
    width: 100% !important;
}
.py-60{
    padding: 80px 0px !important;
}
.hero {

    padding: 105px 0px 0px 0px !important;
}

.section-head {

    text-align: center;

    max-width: 720px;

    margin:
        0 auto 55px;

     font-family: Outfit, sans-serif !important;
     font-weight: 600;
}

.section-kicker {

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .12em;

    color:
        var(--orange);

    font-weight: 850;

    margin-bottom: 12px;
}

.section-head h2 {

    font-size:
        clamp(34px, 4vw, 50px);

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 14px;
}

.section-head p {

    color:
        var(--text-soft);

    font-size: 16px;
}


/* =========================================================
           INDUSTRIES
        ========================================================= */

.industries {

    background:
        var(--surface);

    padding: 40px 70px !important;    

        
}

.industry-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.industry-card {

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        var(--surface);

    box-shadow:
        var(--shadow);

    transition:
        transform .3s ease,
        border .3s ease;
}

.industry-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(255, 106, 0, .35);
}

.industry-image {

    height: 230px;

    display: flex;

    align-items:
        flex-end;

    justify-content:
        center;

    overflow: hidden;

    position: relative;
}

.industry-image.salon {

    background:
        linear-gradient(135deg,
            #ffd9ca,
            #fff1eb);
}

.industry-image.gym {

    background:
        linear-gradient(135deg,
            #dbeafe,
            #eef6ff);
}

.industry-image.nail {

    background:
        linear-gradient(135deg,
            #fce7f3,
            #fff1f7);
}

.industry-emoji {

    font-size: 120px;

    line-height: 1;

    margin-bottom: -15px;

    filter:
        drop-shadow(0 15px 15px rgba(0, 0, 0, .12));
}

.industry-content {

    padding:
        25px;
}

.industry-content h3 {

    font-size: 22px;

    margin-bottom: 9px;
}

.industry-content p {

    color:
        var(--text-soft);

    font-size: 14px;

    margin-bottom: 17px;
}

.learn {

    color:
        var(--orange);

    font-weight: 800;

    font-size: 13px;
}


/* =========================================================
           FEATURES
        ========================================================= */
.w-200{
    width: 200px !important;
}
.features-section {

    background:
        var(--surface-2);
}

.features-layout {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 70px;

    align-items:
        center;
}

.feature-copy h2 {
    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.08;

    letter-spacing: -2px;

    margin-bottom: 18px;

    font-family: Outfit, sans-serif !important;
    
}

.feature-copy p {

    color:
        var(--text-soft);

    font-size: 16px;

    margin-bottom: 25px;
}

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}

.feature-card {

    padding:
        24px 17px;

    min-height: 150px;

    border:
        1px solid var(--border);

    border-radius:
        18px;

    background:
        var(--surface);

    text-align:
        center;

    transition:
        transform .3s ease;
}

.feature-card:hover {

    transform:
        translateY(-5px);
}

.feature-icon {

    width: 48px;
    height: 48px;

    margin:
        0 auto 12px;

    border-radius:
        14px;

    display: grid;

    place-items: center;

    font-size: 22px;

    background:
        rgba(255, 106, 0, .1);

    color:
        var(--orange);
}

.feature-card h3 {

    font-size: 13px;

    margin-bottom: 4px;
}

.feature-card p {

    color:
        var(--text-soft);

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
           HOW IT WORKS
        ========================================================= */

.steps {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;

    position: relative;
}

.steps::before {

    content: "";

    position: absolute;

    top: 40px;

    left: 17%;

    right: 17%;

    border-top:
        1px dashed var(--border);
}

.step {

    position: relative;

    text-align: center;
}

.step-number {

    width: 32px;
    height: 32px;

    background:
        var(--orange);

    color:
        white;

    border-radius: 50%;

    display: grid;

    place-items: center;

    margin:
        0 auto 15px;

    position: relative;

    z-index: 2;

    font-size: 13px;

    font-weight: 850;
}

.step-icon {

    width: 75px;
    height: 75px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    margin:
        0 auto 18px;

    background:
        var(--surface-2);

    border:
        1px solid var(--border);

    font-size: 28px;
}

.step h3 {

    font-size: 19px;

    margin-bottom: 8px;
}

.step p {

    color:
        var(--text-soft);

    font-size: 13px;

    max-width: 230px;

    margin: auto;
}


/* =========================================================
           PRICING
        ========================================================= */

.pricing-section {

    background:
        var(--surface-2);
}

.pricing-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    align-items: stretch;
}

.pricing-card {

    position: relative;

    border:
        1px solid var(--border);

    border-radius:
        22px;

    background:
        var(--surface);

    padding:
        32px 28px;

    box-shadow:
        var(--shadow);
}

.pricing-card.popular {

    border:
        2px solid var(--orange);

    transform:
        translateY(-8px);
}

.popular-label {

    position: absolute;

    top: -1px;
    left: 50%;

    transform:
        translateX(-50%);

    background:
        var(--orange);

    color:
        white;

    padding:
        6px 18px;

    border-radius:
        0 0 10px 10px;

    font-size: 10px;

    font-weight: 800;
}

.pricing-card h3 {

    font-size: 21px;

    margin-bottom: 4px;
}

.pricing-sub {

    color:
        var(--text-soft);

    font-size: 13px;

    margin-bottom: 22px;
}

.price {

    font-size: 40px;

    font-weight: 850;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.price span {

    font-size: 12px;

    color:
        var(--text-soft);

    font-weight: 500;

    letter-spacing: 0;
}

.pricing-list {

    list-style: none;

    margin-bottom: 25px;
}

.pricing-list li {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 13px;

    color:
        var(--text-soft);

    margin-bottom: 11px;
}

.pricing-list li::before {

    content: "✓";

    width: 18px;
    height: 18px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(34, 197, 94, .12);

    color:
        var(--green);

    font-size: 10px;

    font-weight: 900;
}

.pricing-card .btn {

    width: 100%;
}


/* =========================================================
           TESTIMONIALS
        ========================================================= */

.testimonial-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.testimonial {

    border:
        1px solid var(--border);

    background:
        var(--surface);

    border-radius:
        20px;

    padding:
        27px;

    box-shadow:
        var(--shadow);
}

.stars {

    color:
        #ffab00;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.testimonial p {

    color:
        var(--text-soft);

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 20px;
}

.person-info {

    display: flex;

    align-items: center;

    gap: 12px;
}

.person-image {

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #ff9b5c,
            #ff5c00);

    display: grid;

    place-items: center;

    color: white;

    font-weight: 800;
}

.person-info strong {

    display: block;

    font-size: 13px;
}

.person-info span {

    display: block;

    color:
        var(--text-soft);

    font-size: 11px;
}


/* =========================================================
           CTA
        ========================================================= */

.cta-section {

    padding-top: 30px;
    padding-bottom: 80px;
}

.cta-box {

    min-height: 280px;

    border-radius:
        30px;

    overflow: hidden;

    position: relative;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    padding:
        50px 60px;

    background:
        linear-gradient(135deg,
            #111f2d,
            #07111d);

    border:
        1px solid rgba(255, 106, 0, .25);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, .18);
}

.cta-box::after {

    content: "";

    position: absolute;

    width: 500px;
    height: 300px;

    right: -100px;
    bottom: -200px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 106, 0, .4);

    box-shadow:
        0 0 0 25px rgba(255, 106, 0, .04),
        0 0 0 50px rgba(255, 106, 0, .03);
}

.cta-copy {

    max-width: 530px;

    position: relative;

    z-index: 2;
}

.cta-copy h2 {

    color:
        white;

    font-size:
        clamp(32px, 4vw, 50px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 13px;
    font-family: Outfit, sans-serif !important;
}

.cta-copy p {

    color:
        #94a3b8;

    font-size: 15px;

    margin-bottom: 25px;
}

.cta-logo {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 300px;
}

.cta-logo img {

    filter:
        brightness(0) invert(1);

    opacity: .95;

    width: 260px;
}


/* =========================================================
           FOOTER
        ========================================================= */

footer {

    border-top:
        1px solid var(--border);

    padding:
        55px 0 25px;

    background:
        var(--surface);
}

.footer-top {

    display: grid;

    grid-template-columns:
        1.6fr repeat(3, 1fr);

    gap: 50px;

    padding-bottom:
        45px;
}

.footer-brand img {

    width: 190px;

    margin-bottom: 16px;
}

.footer-brand p {

    max-width: 290px;

    color:
        var(--text-soft);

    font-size: 13px;
}

.footer-col h4 {

    font-size: 13px;

    margin-bottom: 16px;
}

.footer-col a {

    display: block;

    color:
        var(--text-soft);

    font-size: 13px;

    margin-bottom: 10px;

    transition:
        color .2s ease;
}

.footer-col a:hover {

    color:
        var(--orange);
}

.footer-bottom {

    border-top:
        1px solid var(--border);

    padding-top:
        22px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    color:
        var(--text-soft);

    font-size: 11px;
}

.footer-bottom-links {

    display: flex;

    gap: 20px;
}


/* =========================================================
           RESPONSIVE
        ========================================================= */

@media(max-width:1050px) {

    .nav-links {
        gap: 18px;
    }

    .hero {
        min-height: 820px;
    }

    .shop {
        width: 210px;
    }

    .shop.gym {
        display: none;
    }

    .device {
        width: 560px;
    }

    .phone {
        right: 20px;
    }

    .features-layout {
        gap: 35px;
    }
}


@media(max-width:800px) {

    .container {
        width:
            min(calc(100% - 28px),
                var(--container));
    }

    .nav-links,
    .nav-actions .login-btn,
    .nav-actions .btn-primary {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .navbar {
        height: 70px;
    }

    .logo img {
        width: 170px;
    }

    .hero {

        padding-top: 115px;

        min-height: 770px;
    }

    .hero h1 {

        font-size: 42px;

        letter-spacing:
            -2px;
    }

    .hero-description {

        font-size: 15px;
    }

    .hero-buttons {

        flex-direction:
            column;

        align-items:
            center;
    }

    .hero-buttons .btn {

        width: 230px;
    }

    .hero-scene {

        height: 360px;

        margin-top: 35px;
    }

    .shop {

        width: 130px;

        height: 150px;

        bottom: 45px;
    }

    .shop.left {
        left: -5px;
    }

    .shop.right {
        right: -5px;
    }

    .shop-title {

        height: 40px;

        font-size: 14px;
    }

    .shop-body {
        height: 110px;
    }

    .shop-window {

        width: 80px;
        height: 65px;
    }

    .device {

        width: 390px;
    }

    .laptop-screen {
        height: 220px;
    }

    .dashboard {
        grid-template-columns: 75px 1fr;
    }

    .sidebar {
        padding: 10px 5px;
    }

    .side-item {
        font-size: 5px;
        padding: 6px 4px;
    }

    .dash-main {
        padding: 10px;
    }

    .dash-title {
        font-size: 10px;
    }

    .stat-value {
        font-size: 9px;
    }

    .stat-label {
        font-size: 4px;
    }

    .appointment {
        font-size: 4px;
    }

    .phone {

        width: 90px;
        height: 185px;

        right: 5px;
    }

    .phone-welcome {
        font-size: 8px;
    }

    .phone-action {
        min-height: 37px;
        font-size: 5px;
    }

    .phone-action strong {
        font-size: 10px;
    }

    .trust-row {

        gap: 12px;

        flex-wrap:
            wrap;
    }

    .trust-item {
        font-size: 10px;
    }

    section {
        padding:
            75px 0;
    }

    .industry-grid,
    .pricing-grid,
    .testimonial-grid {

        grid-template-columns:
            1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .features-layout {

        grid-template-columns:
            1fr;
    }

    .feature-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .steps {

        grid-template-columns:
            1fr;

        gap: 40px;
    }

    .steps::before {
        display: none;
    }

    .cta-box {

        padding:
            35px 25px;

        flex-direction:
            column;

        align-items:
            flex-start;

        gap: 30px;
    }

    .cta-logo {

        width: 100%;

        justify-content:
            flex-start;
    }

    .footer-top {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 35px;
    }

    .footer-brand {
        grid-column:
            1 / -1;
    }

    .footer-bottom {

        flex-direction:
            column;

        gap: 12px;

        align-items:
            flex-start;
    }
}


@media(max-width:480px) {
    .hero {
        background: none !important;
    }

    .hero h1 {
        font-size: 35px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-scene {
        height: 310px;
    }

    .device {
        width: 310px;
    }

    .laptop-screen {
        height: 180px;
    }

    .shop {
        width: 105px;
        height: 125px;
    }

    .shop-title {
        font-size: 11px;
    }

    .shop-body {
        height: 85px;
    }

    .phone {
        width: 75px;
        height: 155px;
    }

    .feature-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .footer-top {
        grid-template-columns:
            1fr 1fr;
    }
}