﻿/* =====================================================
           ROOT
        ===================================================== */

        :root {

            --primary: #1fc9b3;
            --primary-hover: #19b7a2;
            --primary-dark: #0d8f82;
            --primary-light: #a6f5ea;

            --accent: #a9dd79;

            --dark: #061d1e;
            --dark-2: #092728;
            --dark-3: #0d3333;

            --text: #152f30;
            --text-soft: #647b7b;

            --white: #ffffff;

            --bg: #f5faf9;
            --bg-soft: #edf7f5;

            --border: rgba(14, 72, 70, .11);

            --shadow:
                0 24px 70px rgba(7, 55, 53, .12);

            --shadow-soft:
                0 12px 35px rgba(7, 55, 53, .08);

            --radius-sm: 14px;
            --radius-md: 20px;
            --radius-lg: 30px;
            --radius-xl: 38px;

            --container: 1314px;
        }


        /* =====================================================
           RESET
        ===================================================== */

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter", sans-serif;
            font-size: 16px;
            line-height: 1.6;

            color: var(--text);
            background: var(--white);

            overflow-x: hidden;

            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        body.menu-open {
            overflow: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        button,
        input,
        textarea,
        select {
            font: inherit;
        }

        button {
            cursor: pointer;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }


        /* =====================================================
           UTILITIES
        ===================================================== */

        .container {
            width: min(
                calc(100% - 48px),
                var(--container)
            );

            margin-inline: auto;
        }

        .section {
            padding: 120px 0;
        }

        .section-soft {
            background: var(--bg);
        }

        .features-section {

            position: relative;

            overflow: hidden;

            background:
                radial-gradient(
                    ellipse 60% 50% at 0% 0%,
                    rgba(31, 201, 179, .1),
                    transparent 55%
                ),
                radial-gradient(
                    ellipse 50% 45% at 100% 20%,
                    rgba(169, 221, 121, .08),
                    transparent 50%
                ),
                var(--bg);
        }

        /* =====================================================
           INNER PAGE HERO
        ===================================================== */

        .page-inner .header.page-header {
            background: rgba(255,255,255,.96);
        }

        .page-hero {

            position: relative;

            padding: 150px 0 70px;

            overflow: hidden;

            color: white;

            background:
                radial-gradient(
                    ellipse 60% 70% at 80% 40%,
                    rgba(31, 201, 179, .28),
                    transparent 60%
                ),
                linear-gradient(
                    115deg,
                    #041416 0%,
                    #061d1e 50%,
                    #082526 100%
                );
        }

        .page-hero-inner {
            max-width: 760px;
        }

        .page-hero-title {

            margin-top: 8px;

            font-family: "Manrope", sans-serif;

            font-size: clamp(36px, 5vw, 58px);

            line-height: 1.1;

            letter-spacing: -2.2px;

            font-weight: 800;
        }

        .page-hero-text {

            max-width: 560px;

            margin-top: 18px;

            color: rgba(231, 245, 244, .68);

            font-size: 17px;

            line-height: 1.75;
        }

        .features-spotlight-body h2 {

            margin-bottom: 14px;

            color: white;

            font-size: 28px;

            font-weight: 800;

            letter-spacing: -.8px;

            line-height: 1.2;
        }

        @media (max-width: 768px) {

            .page-hero {
                padding: 120px 0 50px;
                text-align: center;
            }

            .page-hero-inner {
                max-width: none;
            }

            .page-hero-text {
                margin-inline: auto;
                font-size: 15px;
            }

            .features-spotlight-body h2 {
                font-size: 22px;
            }
        }

        .section-tag {

            display: inline-flex;
            align-items: center;
            gap: 8px;

            padding: 8px 13px;

            border-radius: 100px;

            background: #e5faf6;

            color: #0b887b;

            font-size: 12px;
            font-weight: 800;

            letter-spacing: .06em;
            text-transform: uppercase;

            margin-bottom: 18px;
        }

        .section-tag i {
            font-size: 11px;
        }

        .section-title {

            font-family: "Manrope", sans-serif;

            font-size: clamp(38px, 4vw, 58px);

            line-height: 1.08;

            letter-spacing: -2.5px;

            font-weight: 800;

            color: var(--dark);
        }

        .section-description {

            max-width: 690px;

            margin-top: 20px;

            font-size: 17px;

            line-height: 1.8;

            color: var(--text-soft);
        }

        .section-heading-center {
            max-width: 850px;
            margin: 0 auto 65px;
            text-align: center;
        }

        .section-heading-center .section-description {
            margin-left: auto;
            margin-right: auto;
        }

        .gradient-text {

            background:
                linear-gradient(
                    90deg,
                    #65ead7,
                    #3fd4b2 48%,
                    #a6dc73
                );

            -webkit-background-clip: text;
            background-clip: text;

            color: transparent;
        }


        /* =====================================================
           BUTTONS
        ===================================================== */

        .btn {

            min-height: 52px;

            display: inline-flex;
            align-items: center;
            justify-content: center;

            gap: 9px;

            padding: 0 23px;

            border: 0;
            border-radius: 13px;

            font-size: 15px;
            font-weight: 700;

            transition:
                transform .25s ease,
                background .25s ease,
                color .25s ease,
                border-color .25s ease,
                box-shadow .25s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn-primary {

            color: #06322e;

            background:
                linear-gradient(
                    135deg,
                    #8ef2e4,
                    var(--primary)
                );

            box-shadow:
                0 14px 35px rgba(31, 201, 179, .20);
        }

        .btn-primary:hover {

            box-shadow:
                0 18px 45px rgba(31, 201, 179, .28);
        }

        .btn-white {

            background: white;
            color: var(--dark);

            box-shadow:
                0 12px 30px rgba(0,0,0,.08);
        }

        .btn-dark {

            color: white;
            background: var(--dark);
        }

        .btn-outline {

            color: white;

            background:
                rgba(255,255,255,.055);

            border:
                1px solid rgba(255,255,255,.14);
        }

        .btn-outline:hover {
            background: rgba(255,255,255,.10);
        }


        /* =====================================================
           HEADER
        ===================================================== */

        .header {

            position: fixed;

            top: 0;
            left: 0;
            width: 100%;

            z-index: 1000;

            transition:
                background .3s ease,
                border .3s ease,
                box-shadow .3s ease;
        }

        .header.scrolled {

            background:
                rgba(255,255,255,.92);

            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);

            border-bottom:
                1px solid rgba(5, 61, 60, .08);

            box-shadow:
                0 10px 35px rgba(0,0,0,.025);
        }

        .navbar {

            min-height: 88px;

            display: grid;

            grid-template-columns:
                1fr auto 1fr;

            align-items: center;

            gap: 25px;
        }

        .logo {

            display: inline-flex;
            align-items: center;

            gap: 11px;

            color: white;

            font-family: "Manrope", sans-serif;

            font-size: 25px;

            font-weight: 800;

            letter-spacing: -1.2px;

            flex-shrink: 0;

            justify-self: start;
        }

        .logo-symbol {

            width: 43px;
            height: 43px;

            border-radius: 13px;

            display: grid;
            place-items: center;

            color: #ffffff;

            background: var(--primary);

            box-shadow:
                0 10px 25px rgba(31, 201, 179, .28);

            font-size: 18px;

            flex-shrink: 0;
        }

        .logo span { color: #ffffff; }

        .header.scrolled .logo {
            color: var(--dark);
        }

        .header.scrolled .logo span {
            color: var(--primary-dark);
        }

        .header.scrolled .logo-symbol {

            color: #ffffff;

            background: var(--primary);

            box-shadow:
                0 8px 20px rgba(31, 201, 179, .22);
        }

        .nav {

            display: flex;
            align-items: center;

            gap: 34px;

            justify-self: center;
        }

        .nav a {

            position: relative;

            color: rgba(255,255,255,.78);

            font-size: 15px;

            font-weight: 600;

            transition: .25s ease;
        }

        .nav a::after {

            content: "";

            position: absolute;

            left: 0;
            bottom: -8px;

            width: 0;
            height: 2px;

            border-radius: 5px;

            background: var(--primary);

            transition: .25s ease;
        }

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

        .nav a:hover {
            color: white;
        }

        .header.scrolled .nav a {
            color: #4c6766;
        }

        .header.scrolled .nav a:hover {
            color: var(--primary-dark);
        }

        .nav-actions {

            display: flex;
            align-items: center;

            gap: 10px;

            justify-self: end;
        }

        .header-login {

            min-height: 46px;

            padding: 0 16px;

            font-size: 14px;

            color: white;

            border:
                1px solid rgba(255,255,255,.16);

            border-radius: 12px;
        }

        .header.scrolled .header-login {

            color: var(--dark);

            border-color: var(--border);
        }

        .header-demo {
            min-height: 46px;
        }

        .mobile-menu-btn {

            width: 46px;
            height: 46px;

            border-radius: 12px;

            display: none;
            place-items: center;

            color: white;

            background:
                rgba(255,255,255,.06);

            border:
                1px solid rgba(255,255,255,.13);
        }

        .header.scrolled .mobile-menu-btn {

            color: var(--dark);

            background: #f5faf9;

            border-color: var(--border);
        }


        /* =====================================================
           MOBILE MENU
        ===================================================== */

        .mobile-menu {

            position: fixed;

            inset: 0;

            z-index: 999;

            display: flex;
            align-items: center;
            justify-content: center;

            background:
                rgba(5, 27, 29, .97);

            backdrop-filter: blur(20px);

            visibility: hidden;
            opacity: 0;

            transition: .3s ease;
        }

        .mobile-menu.active {

            visibility: visible;
            opacity: 1;
        }

        .mobile-menu-content {

            width: 100%;

            padding: 100px 30px 40px;

            text-align: center;
        }

        .mobile-menu ul {

            display: grid;

            gap: 12px;
        }

        .mobile-menu a.menu-link {

            display: block;

            padding: 12px;

            color: white;

            font-family: "Manrope", sans-serif;

            font-size: 26px;
            font-weight: 700;

            letter-spacing: -1px;
        }

        .mobile-menu-buttons {

            max-width: 400px;

            margin: 32px auto 0;

            display: grid;

            gap: 10px;
        }


        /* =====================================================
           HERO
        ===================================================== */

        .hero {

            position: relative;

            min-height: 100vh;

            padding: 110px 0 0;

            display: flex;
            flex-direction: column;
            align-items: stretch;

            overflow: hidden;

            background:
                radial-gradient(
                    ellipse 70% 80% at 72% 55%,
                    rgba(31, 201, 179, .32) 0%,
                    rgba(31, 201, 179, .14) 28%,
                    rgba(169, 221, 121, .08) 48%,
                    transparent 72%
                ),
                radial-gradient(
                    circle at 88% 22%,
                    rgba(102, 223, 188, .16),
                    transparent 50%
                ),
                linear-gradient(
                    115deg,
                    #041416 0%,
                    #061d1e 48%,
                    #082526 100%
                );
        }

        .hero::before {

            content: "";

            position: absolute;

            right: -12%;
            top: 5%;

            width: 70%;
            height: 90%;

            border-radius: 50%;

            background:
                radial-gradient(
                    circle,
                    rgba(31, 201, 179, .4) 0%,
                    rgba(31, 201, 179, .18) 35%,
                    rgba(169, 221, 121, .08) 55%,
                    transparent 72%
                );

            filter: blur(60px);

            pointer-events: none;
        }

        .hero > .container {

            display: flex;
            flex: 1 1 auto;
            flex-direction: column;

            width: min(
                calc(100% - 48px),
                var(--container)
            );

            min-height: calc(100vh - 110px);
        }

        .hero-inner {

            position: relative;

            z-index: 2;

            width: 100%;

            flex: 1 1 auto;

            min-height: calc(100vh - 110px);

            display: grid;

            grid-template-columns:
                minmax(0, .88fr) minmax(0, 1.22fr);

            grid-template-rows: 1fr auto 1fr;

            align-items: stretch;

            gap: 0 28px;
        }

        .hero-content {

            grid-column: 1;
            grid-row: 2;

            max-width: 520px;

            display: flex;
            flex-direction: column;
            justify-content: flex-start;

            height: auto;
        }

        .hero h1 {

            max-width: 560px;

            font-family: "Manrope", sans-serif;

            font-size: clamp(42px, 4.6vw, 64px);

            line-height: 1.08;

            letter-spacing: -2.6px;

            font-weight: 800;

            color: white;
        }

        .hero-description {

            max-width: 460px;

            margin-top: 22px;

            color:
                rgba(231, 245, 244, .62);

            font-size: 17px;

            line-height: 1.7;
        }

        .hero-buttons {

            display: flex;
            flex-wrap: wrap;

            gap: 12px;

            margin-top: 32px;
        }

        .hero-buttons .btn {

            min-height: 52px;

            padding-inline: 28px;

            border-radius: 100px;

            font-size: 15px;
        }

        .hero-buttons .btn-primary {

            color: #06322e;

            background: var(--primary);

            box-shadow:
                0 14px 36px rgba(31, 201, 179, .32);
        }

        .hero-buttons .btn-primary:hover {

            background: var(--primary-hover);

            box-shadow:
                0 18px 42px rgba(31, 201, 179, .38);
        }

        .hero-buttons .btn-white {

            color: var(--dark);

            background: #ffffff;

            box-shadow:
                0 10px 28px rgba(0, 0, 0, .12);
        }

        .hero-buttons .btn-white:hover {
            background: #f3fbf9;
        }

        .hero-points {

            display: flex;
            flex-wrap: wrap;

            gap: 18px;

            margin-top: 22px;
        }

        .hero-point {

            display: flex;
            align-items: center;

            gap: 8px;

            color:
                rgba(255,255,255,.55);

            font-size: 13px;

            font-weight: 500;
        }

        .hero-point::before {

            content: "";

            width: 6px;
            height: 6px;

            border-radius: 50%;

            background: rgba(255,255,255,.75);

            flex-shrink: 0;
        }


        /* =====================================================
           HERO VISUAL
        ===================================================== */

        .hero-visual {

            position: relative;

            grid-column: 2;
            grid-row: 1 / -1;

            margin-right: -40px;

            display: grid;

            grid-template-rows: subgrid;

            min-height: 100%;
        }

        .hero-glow {

            position: absolute;

            inset: -12% -14% -8% 0;

            border-radius: 50%;

            background:
                radial-gradient(
                    circle at 60% 45%,
                    rgba(31, 201, 179, .5) 0%,
                    rgba(31, 201, 179, .22) 34%,
                    rgba(169, 221, 121, .1) 55%,
                    transparent 74%
                );

            filter: blur(48px);

            pointer-events: none;

            z-index: 0;
        }

        .hero-stage {

            position: relative;

            grid-row: 2;

            width: min(640px, 94%);

            z-index: 2;
        }

        /* subgrid desteklemeyenler için yedek */
        @supports not (grid-template-rows: subgrid) {

            .hero-visual {

                display: flex;
                align-items: center;
                justify-content: flex-start;
            }

            .hero-stage {
                grid-row: auto;
            }

            .hero-content {

                grid-row: auto;

                height: 100%;

                justify-content: center;
            }

            .hero-inner {
                grid-template-rows: auto;
                align-items: stretch;
            }
        }

        .hero-laptop {

            position: relative;

            width: 100%;

            z-index: 2;

            /* sağda kişi altında laptop görünmesin */
            -webkit-mask-image:
                linear-gradient(
                    90deg,
                    #000 0%,
                    #000 55%,
                    rgba(0, 0, 0, .75) 70%,
                    rgba(0, 0, 0, .25) 82%,
                    transparent 94%
                );

            mask-image:
                linear-gradient(
                    90deg,
                    #000 0%,
                    #000 55%,
                    rgba(0, 0, 0, .75) 70%,
                    rgba(0, 0, 0, .25) 82%,
                    transparent 94%
                );
        }

        .hero-laptop-screen {

            position: relative;

            aspect-ratio: 16 / 10;

            padding: 10px;

            border-radius: 18px 18px 12px 12px;

            overflow: hidden;

            background: #0a1f20;

            border:
                1px solid rgba(255,255,255,.14);

            box-shadow:
                0 28px 70px rgba(0,0,0,.38),
                inset 0 0 0 1px rgba(255,255,255,.04);
        }

        .hero-laptop-screen > img {

            width: 100%;
            height: 100%;

            object-fit: cover;

            object-position: center;

            display: block;

            border-radius: 10px;
        }

        .hero-laptop-base {

            position: relative;

            height: 14px;

            margin: 0 auto;

            width: 108%;
            left: -4%;

            border-radius: 0 0 18px 18px;

            background:
                linear-gradient(
                    180deg,
                    #1a3334 0%,
                    #0d2223 100%
                );

            box-shadow:
                0 18px 40px rgba(0,0,0,.28);
        }

        .hero-laptop-base::before {

            content: "";

            position: absolute;

            left: 50%;
            top: 4px;

            transform: translateX(-50%);

            width: 64px;
            height: 4px;

            border-radius: 99px;

            background: rgba(255,255,255,.12);
        }

        .hero-float-badge {

            position: absolute;

            z-index: 4;

            display: inline-flex;
            align-items: center;

            gap: 8px;

            padding: 8px 14px 8px 8px;

            border-radius: 100px;

            background: rgba(255,255,255,.94);

            backdrop-filter: blur(16px);

            box-shadow:
                0 12px 28px rgba(0,0,0,.16);

            color: var(--dark);

            font-size: 12px;

            font-weight: 700;

            white-space: nowrap;

            animation: heroBadgeFloat 3.4s ease-in-out infinite;
        }

        .hero-float-badge i {

            width: 28px;
            height: 28px;

            display: grid;
            place-items: center;

            border-radius: 50%;

            color: #06322e;

            background: var(--accent);

            font-size: 11px;

            flex-shrink: 0;
        }

        .hero-float-badge--1 {

            left: 14px;
            top: 16%;

            animation-delay: 0s;
        }

        .hero-float-badge--2 {

            right: 14px;
            top: 46%;

            animation-delay: .7s;
            animation-duration: 3.8s;
        }

        .hero-float-badge--2 i {
            background: var(--primary);
        }

        .hero-float-badge--3 {

            left: 18px;
            bottom: 14%;

            animation-delay: 1.3s;
            animation-duration: 4.2s;
        }

        .hero-float-badge--3 i {
            background: #7ed0ff;
        }

        @keyframes heroBadgeFloat {

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

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

        @media (prefers-reduced-motion: reduce) {

            .hero-float-badge,
            .features-spotlight-badge {
                animation: none;
            }
        }

        .hero-person {

            position: absolute;

            right: -6%;
            bottom: 0;

            z-index: 3;

            pointer-events: none;
        }

        /* çok hafif zemin gölgesi */
        .hero-person::before {

            content: "";

            position: absolute;

            left: 22%;
            right: 12%;
            bottom: 4%;

            height: 18%;

            z-index: 0;

            border-radius: 50%;

            background:
                radial-gradient(
                    ellipse at center,
                    rgba(0, 0, 0, .28) 0%,
                    transparent 70%
                );

            filter: blur(22px);

            pointer-events: none;
        }

        /* alt kısım hafif overlay — yumuşak elips, kare görünmez */
        .hero-person::after {

            content: "";

            position: absolute;

            left: 5%;
            right: 5%;
            bottom: -8%;

            height: 42%;

            z-index: 2;

            border-radius: 50%;

            background:
                radial-gradient(
                    ellipse 70% 55% at 50% 70%,
                    rgba(4, 20, 22, .75) 0%,
                    rgba(4, 20, 22, .4) 35%,
                    rgba(4, 20, 22, .12) 60%,
                    transparent 78%
                );

            filter: blur(14px);

            pointer-events: none;
        }

        .hero-person img {

            position: relative;

            z-index: 1;

            width: auto;
            max-width: min(620px, 50vw);
            height: auto;

            display: block;

            object-fit: contain;

            object-position: bottom center;

            mix-blend-mode: screen;
        }


        /* =====================================================
           HERO WAVE
        ===================================================== */

        .hero-wave {

            position: absolute;

            left: 0;
            right: 0;
            bottom: 0;

            width: 100%;
            height: 110px;

            z-index: 6;

            overflow: hidden;

            pointer-events: none;

            line-height: 0;
        }

        .hero-wave-svg {

            position: absolute;

            left: 0;
            bottom: 0;

            width: 200%;
            height: 100%;

            display: block;
        }

        .hero-wave-svg--back {
            animation: heroWaveDrift 14s linear infinite;
        }

        .hero-wave-svg--mid {
            animation: heroWaveDrift 10s linear infinite reverse;
        }

        .hero-wave-svg--front {
            animation: heroWaveDrift 8s linear infinite;
        }

        @keyframes heroWaveDrift {

            0% {
                transform: translateX(0);
            }

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

        @media (prefers-reduced-motion: reduce) {

            .hero-wave-svg {
                animation: none;
            }
        }


        /* =====================================================
           FEATURES
        ===================================================== */

        .features-intro {

            display: grid;

            grid-template-columns:
                minmax(0, 1.25fr) minmax(0, .85fr);

            align-items: end;

            gap: 0 40px;

            margin-bottom: 56px;
        }

        .features-title-accent {
            color: #129b8e;
        }

        .features-intro-text {

            margin-top: 0;
            margin-bottom: 0;

            max-width: none;

            width: 100%;
        }

        .features-layout {

            display: grid;

            gap: 28px;
        }

        .features-spotlight {

            display: grid;

            grid-template-columns:
                minmax(0, 1.25fr) minmax(0, .85fr);

            gap: 0;

            overflow: hidden;

            background: #061d1e;

            box-shadow:
                0 28px 70px rgba(6, 29, 30, .14);
        }

        .features-spotlight-media {

            position: relative;

            min-height: 420px;

            overflow: hidden;
        }

        .features-spotlight-media img {

            width: 100%;
            height: 100%;

            object-fit: cover;

            display: block;
        }

        .features-spotlight-badge {

            position: absolute;

            left: 22px;
            bottom: 22px;

            display: inline-flex;
            align-items: center;

            gap: 10px;

            padding: 10px 16px 10px 10px;

            border-radius: 100px;

            background: rgba(255,255,255,.94);

            color: var(--dark);

            font-size: 13px;
            font-weight: 700;

            box-shadow:
                0 12px 30px rgba(0,0,0,.16);

            animation: heroBadgeFloat 3.6s ease-in-out infinite;
        }

        .features-spotlight-badge i {

            width: 30px;
            height: 30px;

            display: grid;
            place-items: center;

            border-radius: 50%;

            background: var(--primary);

            color: #06322e;

            font-size: 12px;
        }

        .features-spotlight-body {

            display: flex;
            flex-direction: column;
            justify-content: center;

            padding: 42px 40px;

            color: white;
        }

        .features-spotlight-body .feature-icon {

            background: rgba(31, 201, 179, .16);

            color: var(--primary);
        }

        .features-spotlight-body h3 {

            margin-bottom: 14px;

            color: white;

            font-size: 28px;

            font-weight: 800;

            letter-spacing: -.8px;

            line-height: 1.2;
        }

        .features-spotlight-body p {

            color: rgba(255,255,255,.62);

            font-size: 16px;

            line-height: 1.75;
        }

        .features-spotlight-body .feature-link {

            margin-top: 26px;

            color: var(--primary);
        }

        .features-grid {

            display: grid;

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

            gap: 18px;
        }

        .feature-item {

            position: relative;

            padding: 28px 26px;

            border-radius: 22px;

            background: rgba(255,255,255,.72);

            border:
                1px solid rgba(14, 72, 70, .08);

            backdrop-filter: blur(10px);

            transition:
                transform .3s ease,
                box-shadow .3s ease,
                border-color .3s ease,
                background .3s ease;
        }

        .feature-item:hover {

            transform: translateY(-4px);

            background: white;

            border-color: rgba(31, 201, 179, .28);

            box-shadow:
                0 18px 40px rgba(7, 55, 53, .08);
        }

        .feature-item--accent {

            background:
                linear-gradient(
                    145deg,
                    rgba(31, 201, 179, .12),
                    rgba(255,255,255,.8)
                );

            border-color: rgba(31, 201, 179, .2);
        }

        .feature-icon {

            width: 48px;
            height: 48px;

            display: grid;
            place-items: center;

            margin-bottom: 20px;

            border-radius: 14px;

            color: var(--primary-dark);

            background: #e5faf6;

            font-size: 18px;
        }

        .feature-item h3 {

            margin-bottom: 10px;

            color: var(--dark);

            font-size: 18px;

            font-weight: 800;

            letter-spacing: -.4px;
        }

        .feature-item p {

            color: var(--text-soft);

            font-size: 14px;

            line-height: 1.7;
        }

        .feature-link {

            display: inline-flex;
            align-items: center;

            gap: 8px;

            color: var(--primary-dark);

            font-size: 14px;
            font-weight: 700;

            transition: gap .25s ease;
        }

        .feature-link:hover {
            gap: 12px;
        }


        /* =====================================================
           SHOWCASE
        ===================================================== */

        .showcase {

            position: relative;

            overflow: hidden;

            background:
                radial-gradient(
                    ellipse 55% 60% at 85% 40%,
                    rgba(31, 201, 179, .16),
                    transparent 55%
                ),
                var(--dark);

            color: white;
        }

        .showcase-layout {

            display: grid;

            grid-template-columns:
                minmax(0, .92fr) minmax(0, 1.08fr);

            align-items: center;

            gap: 64px;
        }

        .showcase .section-tag--dark {

            background: rgba(31, 201, 179, .12);

            color: #7de8d7;

            border: 1px solid rgba(31, 201, 179, .18);
        }

        .showcase .section-title {
            color: white;
        }

        .showcase .section-description {

            color:
                rgba(255,255,255,.58);
        }

        .process-list {

            margin-top: 35px;

            display: grid;
        }

        .process {

            position: relative;

            display: grid;

            grid-template-columns:
                52px 1fr;

            gap: 18px;

            padding: 23px 0;

            border-bottom:
                1px solid rgba(255,255,255,.07);
        }

        .process:last-child {
            border-bottom: 0;
        }

        .process-number {

            width: 45px;
            height: 45px;

            display: grid;
            place-items: center;

            border-radius: 50%;

            border:
                1px solid rgba(255,255,255,.14);

            color: #79e6d6;

            font-size: 12px;
            font-weight: 800;
        }

        .process h3 {

            margin-bottom: 7px;

            font-size: 18px;

            font-weight: 700;
        }

        .process p {

            max-width: 440px;

            color:
                rgba(255,255,255,.47);

            font-size: 14px;

            line-height: 1.7;
        }


        /* =====================================================
           SHOWCASE VISUAL
        ===================================================== */

        .showcase-visual {

            position: relative;
        }

        .showcase-visual-frame {

            position: relative;

            overflow: hidden;

            aspect-ratio: 4 / 3;

            background: #0a2425;

            box-shadow:
                0 40px 90px rgba(0,0,0,.35);
        }

        .showcase-visual-frame img {

            width: 100%;
            height: 100%;

            object-fit: cover;

            display: block;
        }

        .showcase-float-badge {

            position: absolute;

            z-index: 5;

            left: 22px;
            bottom: 22px;

            display: inline-flex;
            align-items: center;

            gap: 10px;

            padding: 10px 16px 10px 10px;

            border-radius: 100px;

            color: var(--dark);

            background: rgba(255,255,255,.94);

            box-shadow:
                0 12px 30px rgba(0,0,0,.2);

            font-size: 13px;
            font-weight: 700;

            animation: heroBadgeFloat 3.6s ease-in-out infinite;
        }

        .showcase-float-badge i {

            width: 30px;
            height: 30px;

            display: grid;
            place-items: center;

            border-radius: 50%;

            background: var(--primary);

            color: #06322e;

            font-size: 12px;
        }

        @media (prefers-reduced-motion: reduce) {

            .showcase-float-badge {
                animation: none;
            }
        }


        /* =====================================================
           GALLERY
        ===================================================== */

        .gallery-grid {

            display: grid;

            grid-template-columns:
                1.1fr .9fr .9fr;

            grid-template-rows:
                310px 310px;

            gap: 15px;
        }

        .gallery-card {

            position: relative;

            overflow: hidden;

            border-radius: 22px;

            background: #ddd;
        }

        .gallery-card:first-child {
            grid-row: span 2;
        }

        .gallery-card:nth-child(4) {
            grid-column: span 2;
        }

        .gallery-card img {

            width: 100%;
            height: 100%;

            object-fit: cover;

            transition:
                transform .6s ease;
        }

        .gallery-card:hover img {
            transform: scale(1.05);
        }

        .gallery-card::after {

            content: "";

            position: absolute;

            inset: 0;

            background:
                linear-gradient(
                    to top,
                    rgba(3,24,25,.55),
                    transparent 55%
                );
        }

        .gallery-info {

            position: absolute;

            z-index: 3;

            left: 22px;
            right: 22px;
            bottom: 20px;

            display: flex;
            align-items: end;
            justify-content: space-between;

            color: white;
        }

        .gallery-info small {

            display: block;

            margin-bottom: 3px;

            color:
                rgba(255,255,255,.65);

            font-size: 11px;
        }

        .gallery-info strong {

            font-size: 15px;
        }

        .gallery-icon {

            width: 38px;
            height: 38px;

            display: grid;
            place-items: center;

            border-radius: 11px;

            color: white;

            background:
                rgba(255,255,255,.14);

            backdrop-filter: blur(12px);

            border:
                1px solid rgba(255,255,255,.12);
        }


        /* =====================================================
           MANAGEMENT / BUSINESS
        ===================================================== */

        .business-layout {

            display: grid;

            grid-template-columns:
                .9fr 1.1fr;

            align-items: center;

            gap: 85px;
        }

        .check-list {

            display: grid;

            gap: 12px;

            margin-top: 30px;
        }

        .check-list-item {

            display: flex;
            align-items: center;

            gap: 13px;

            padding: 15px;

            border-radius: 13px;

            border:
                1px solid var(--border);

            color: #274645;

            background: white;

            font-size: 15px;

            font-weight: 600;
        }

        .check-icon {

            width: 30px;
            height: 30px;

            flex-shrink: 0;

            display: grid;
            place-items: center;

            border-radius: 9px;

            color: var(--primary-dark);

            background: #e4faf6;

            font-size: 10px;
        }


        /* =====================================================
           DASHBOARD
        ===================================================== */

        .dashboard {

            padding: 25px;

            border-radius: 28px;

            background:
                linear-gradient(
                    145deg,
                    #071e20,
                    #0b3333
                );

            box-shadow:
                var(--shadow);

            min-height: 525px;
        }

        .dashboard-header {

            display: flex;
            align-items: center;
            justify-content: space-between;

            margin-bottom: 22px;

            color: white;
        }

        .dashboard-header strong {
            font-size: 15px;
        }

        .dashboard-header span {

            color:
                rgba(255,255,255,.42);

            font-size: 11px;
        }

        .dashboard-avatar {

            width: 36px;
            height: 36px;

            overflow: hidden;

            border-radius: 50%;

            border:
                2px solid rgba(255,255,255,.15);
        }

        .dashboard-avatar img {

            width: 100%;
            height: 100%;

            object-fit: cover;
        }

        .stats-grid {

            display: grid;

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

            gap: 10px;
        }

        .stat-card {

            min-height: 110px;

            padding: 15px;

            border-radius: 14px;

            background:
                rgba(255,255,255,.045);

            border:
                1px solid rgba(255,255,255,.06);
        }

        .stat-card span {

            color:
                rgba(255,255,255,.39);

            font-size: 9px;

            font-weight: 700;

            letter-spacing: .05em;
        }

        .stat-card strong {

            display: block;

            margin: 14px 0 2px;

            color: white;

            font-size: 25px;
        }

        .stat-card em {

            color: #6fe1d0;

            font-style: normal;

            font-size: 9px;
        }

        .chart-card {

            margin-top: 12px;

            padding: 18px;

            border-radius: 15px;

            background:
                rgba(255,255,255,.035);

            border:
                1px solid rgba(255,255,255,.06);
        }

        .chart-title {

            display: flex;
            justify-content: space-between;

            margin-bottom: 20px;

            color: white;

            font-size: 11px;
            font-weight: 700;
        }

        .chart-bars {

            height: 210px;

            display: flex;
            align-items: flex-end;

            gap: 7px;
        }

        .chart-bar {

            flex: 1;

            border-radius:
                5px 5px 2px 2px;

            background:
                linear-gradient(
                    180deg,
                    #56dbc8,
                    #168276
                );
        }

        .chart-bar:nth-child(1) {height: 35%}
        .chart-bar:nth-child(2) {height: 52%}
        .chart-bar:nth-child(3) {height: 44%}
        .chart-bar:nth-child(4) {height: 68%}
        .chart-bar:nth-child(5) {height: 59%}
        .chart-bar:nth-child(6) {height: 77%}
        .chart-bar:nth-child(7) {height: 65%}
        .chart-bar:nth-child(8) {height: 88%}
        .chart-bar:nth-child(9) {height: 72%}
        .chart-bar:nth-child(10){height: 93%}
        .chart-bar:nth-child(11){height: 83%}
        .chart-bar:nth-child(12){height: 97%}


        /* =====================================================
           PRICING
        ===================================================== */

        .pricing-wrapper {

            max-width: none;

            width: 100%;

            margin: 0;
        }

        .price-card {

            position: relative;

            overflow: hidden;

            width: 100%;

            padding: 48px 52px;

            border-radius: 0;

            color: white;

            background:
                radial-gradient(
                    circle at 90% 15%,
                    rgba(52,221,190,.18),
                    transparent 27%
                ),
                linear-gradient(
                    140deg,
                    #061c1e,
                    #0b3938
                );

            box-shadow:
                0 35px 80px rgba(4,42,42,.20);
        }

        .price-card::before {

            content: "";

            position: absolute;

            right: -140px;
            bottom: -140px;

            width: 340px;
            height: 340px;

            border-radius: 50%;

            border:
                1px solid rgba(255,255,255,.05);

            box-shadow:
                0 0 0 50px rgba(255,255,255,.018),
                0 0 0 100px rgba(255,255,255,.012);
        }

        .price-card-inner {

            position: relative;

            z-index: 2;
        }

        .price-header {

            display: flex;
            align-items: start;
            justify-content: space-between;

            gap: 25px;

            margin-bottom: 35px;
        }

        .price-label {

            display: inline-flex;
            align-items: center;

            gap: 7px;

            padding: 7px 10px;

            margin-bottom: 13px;

            border-radius: 50px;

            color: #7de8d8;

            background:
                rgba(79,223,200,.10);

            border:
                1px solid rgba(79,223,200,.12);

            font-size: 10px;
            font-weight: 800;

            letter-spacing: .05em;
        }

        .price-header h3 {

            font-family: "Manrope", sans-serif;

            font-size: 29px;

            letter-spacing: -1.2px;
        }

        .price-header p {

            max-width: 420px;

            margin-top: 8px;

            color:
                rgba(255,255,255,.50);

            font-size: 14px;

            line-height: 1.7;
        }

        .price-value {

            flex-shrink: 0;

            text-align: right;
        }

        .price-value strong {

            display: block;

            font-family: "Manrope", sans-serif;

            font-size: 48px;

            line-height: 1;

            letter-spacing: -2.5px;
        }

        .price-value span {

            display: block;

            margin-top: 8px;

            color:
                rgba(255,255,255,.42);

            font-size: 12px;
        }

        .price-features {

            display: grid;

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

            gap: 13px;

            margin-bottom: 35px;
        }

        .price-feature {

            display: flex;
            align-items: center;

            gap: 10px;

            color:
                rgba(255,255,255,.72);

            font-size: 14px;
        }

        .price-feature i {

            width: 23px;
            height: 23px;

            flex-shrink: 0;

            display: grid;
            place-items: center;

            border-radius: 50%;

            color: #5ae0cd;

            background:
                rgba(64,216,194,.10);

            font-size: 8px;
        }

        .pricing-actions {

            display: flex;

            gap: 11px;
        }

        .pricing-actions .btn {
            min-height: 55px;
        }

        .pricing-note {

            margin-top: 17px;

            color:
                rgba(255,255,255,.36);

            font-size: 11px;
        }


        /* =====================================================
           TESTIMONIALS
        ===================================================== */

        .testimonials-grid {

            display: grid;

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

            gap: 20px;
        }

        .testimonial {

            padding: 29px;

            border-radius: 22px;

            background: white;

            border:
                1px solid var(--border);
        }

        .stars {

            display: flex;

            gap: 3px;

            margin-bottom: 20px;

            color: #e7aa42;

            font-size: 12px;
        }

        .testimonial-text {

            min-height: 125px;

            color: #425e5d;

            font-size: 15px;

            line-height: 1.8;
        }

        .testimonial-user {

            display: flex;
            align-items: center;

            gap: 12px;

            margin-top: 20px;

            padding-top: 20px;

            border-top:
                1px solid var(--border);
        }

        .testimonial-user img {

            width: 45px;
            height: 45px;

            border-radius: 50%;

            object-fit: cover;
        }

        .testimonial-user strong {

            display: block;

            color: var(--dark);

            font-size: 13px;
        }

        .testimonial-user span {

            display: block;

            margin-top: 2px;

            color: var(--text-soft);

            font-size: 11px;
        }


        /* =====================================================
           FAQ
        ===================================================== */

        .faq-wrapper {

            max-width: none;

            width: 100%;

            margin: 0;
        }

        .faq-item {

            border-bottom:
                1px solid var(--border);
        }

        .faq-question {

            width: 100%;

            display: flex;
            align-items: center;
            justify-content: space-between;

            gap: 20px;

            padding: 23px 0;

            text-align: left;

            background: none;

            border: 0;

            color: var(--dark);

            font-size: 17px;

            font-weight: 700;
        }

        .faq-question i {

            width: 32px;
            height: 32px;

            flex-shrink: 0;

            display: grid;
            place-items: center;

            border-radius: 9px;

            color: var(--primary-dark);

            background: #e8f8f5;

            font-size: 10px;

            transition:
                transform .3s ease;
        }

        .faq-item.active
        .faq-question i {

            transform:
                rotate(45deg);
        }

        .faq-answer {

            max-height: 0;

            overflow: hidden;

            transition:
                max-height .4s ease;
        }

        .faq-answer p {

            max-width: none;

            padding: 0 0 23px;

            color: var(--text-soft);

            font-size: 15px;

            line-height: 1.8;
        }


        /* =====================================================
           BLOG
        ===================================================== */

        .blog-section {

            position: relative;

            overflow: hidden;

            background:
                radial-gradient(
                    ellipse 55% 45% at 100% 0%,
                    rgba(31, 201, 179, .1),
                    transparent 55%
                ),
                var(--bg);
        }

        .blog-intro {

            display: grid;

            grid-template-columns:
                minmax(0, 1.1fr) minmax(0, .9fr);

            align-items: end;

            gap: 32px;

            margin-bottom: 48px;
        }

        .blog-intro-side {

            display: flex;
            flex-direction: column;
            align-items: flex-end;

            gap: 18px;

            text-align: right;
        }

        .blog-intro-text {

            margin-top: 0;
            margin-left: auto;

            max-width: 420px;
        }

        .blog-nav-group {

            display: flex;
            align-items: center;
            justify-content: flex-end;

            gap: 10px;
        }

        .blog-nav-group.is-hidden {
            display: none;
        }

        .blog-all-btn {

            min-height: 52px;

            border-radius: 100px;

            padding-inline: 28px;
        }

        .blog-slider {

            position: relative;
        }

        .blog-viewport {

            position: relative;

            overflow: hidden;

            min-width: 0;
        }

        .blog-track {

            display: flex;

            gap: 22px;

            transition: transform .45s ease;
        }

        .blog-card {

            flex: 0 0 calc((100% - 44px) / 3);

            width: calc((100% - 44px) / 3);

            display: flex;
            flex-direction: column;

            overflow: hidden;

            background: rgba(255,255,255,.78);

            border:
                1px solid rgba(14, 72, 70, .08);

            transition:
                transform .3s ease,
                box-shadow .3s ease,
                border-color .3s ease;
        }

        .blog-card:hover {

            transform: translateY(-4px);

            border-color: rgba(31, 201, 179, .28);

            box-shadow:
                0 18px 40px rgba(7, 55, 53, .08);
        }

        .blog-nav {

            width: 48px;
            height: 48px;

            display: grid;
            place-items: center;

            border-radius: 50%;

            border:
                1px solid rgba(14, 72, 70, .12);

            background: white;

            color: var(--dark);

            font-size: 15px;

            cursor: pointer;

            transition:
                background .25s ease,
                color .25s ease,
                border-color .25s ease,
                box-shadow .25s ease,
                opacity .25s ease;
        }

        .blog-nav:hover:not(:disabled) {

            background: var(--primary);

            color: #06322e;

            border-color: transparent;

            box-shadow:
                0 10px 24px rgba(31, 201, 179, .28);
        }

        .blog-nav:disabled {

            opacity: .35;

            cursor: default;
        }

        .blog-footer {

            display: flex;
            justify-content: center;

            margin-top: 36px;
        }

        .blog-card-media {

            display: block;

            aspect-ratio: 16 / 11;

            overflow: hidden;

            background: #0a2425;
        }

        .blog-card-media img {

            width: 100%;
            height: 100%;

            object-fit: cover;

            display: block;
        }

        .blog-card-body {

            display: flex;
            flex-direction: column;

            flex: 1;

            padding: 24px 22px 26px;
        }

        .blog-card-meta {

            display: block;

            margin-bottom: 12px;

            color: #5f7a79;

            font-size: 12px;
            font-weight: 600;

            letter-spacing: .02em;
        }

        .blog-card-body h3 {

            margin-bottom: 12px;

            font-size: 19px;

            font-weight: 800;

            letter-spacing: -.4px;

            line-height: 1.35;
        }

        .blog-card-body h3 a {
            color: var(--dark);
        }

        .blog-card-body h3 a:hover {
            color: var(--primary-dark);
        }

        .blog-card-body p {

            margin-bottom: 18px;

            color: var(--text-soft);

            font-size: 14px;

            line-height: 1.7;
        }

        .blog-card-body .feature-link {
            margin-top: auto;
        }


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

        .cta-section {

            padding:
                20px 0 110px;
        }

        .cta {

            position: relative;

            overflow: hidden;

            min-height: 460px;

            padding: 70px;

            display: flex;
            align-items: center;

            border-radius: 35px;

            color: white;

            background:
                linear-gradient(
                    90deg,
                    rgba(3,26,28,.95) 0%,
                    rgba(5,42,41,.88) 52%,
                    rgba(5,44,42,.50) 100%
                ),
                url(
                    'https://images.unsplash.com/photo-1556912167-f556f1f39fdf?auto=format&fit=crop&w=1800&q=90'
                )
                center / cover no-repeat;

            box-shadow:
                0 30px 75px rgba(4,48,47,.16);
        }

        .cta::before {

            content: "";

            position: absolute;

            right: -100px;
            top: -100px;

            width: 400px;
            height: 400px;

            border-radius: 50%;

            background:
                rgba(31,201,179,.10);

            filter:
                blur(50px);
        }

        .cta-content {

            position: relative;

            z-index: 2;

            max-width: 690px;
        }

        .cta h2 {

            font-family:
                "Manrope", sans-serif;

            font-size:
                clamp(39px,5vw,60px);

            line-height: 1.06;

            letter-spacing: -3px;
        }

        .cta p {

            max-width: 570px;

            margin:
                20px 0 30px;

            color:
                rgba(255,255,255,.65);

            font-size: 16px;

            line-height: 1.8;
        }

        .cta-buttons {

            display: flex;
            flex-wrap: wrap;

            gap: 10px;
        }


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

        .footer {

            padding:
                72px 0 28px;

            color: white;

            background: #041719;
        }

        .footer-top {

            display: flex;
            align-items: flex-start;
            justify-content: space-between;

            gap: 48px;

            padding-bottom: 42px;
        }

        .footer-brand {
            max-width: 420px;
        }

        .footer .logo {
            color: white;
        }

        .footer-about {

            margin-top: 18px;

            color:
                rgba(255,255,255,.55);

            font-size: 16px;

            line-height: 1.75;
        }

        .footer-nav {

            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-end;

            gap: 10px 28px;

            padding-top: 8px;
        }

        .footer-nav a {

            color:
                rgba(255,255,255,.72);

            font-size: 16px;
            font-weight: 600;

            transition: color .2s ease;
        }

        .footer-nav a:hover {
            color: #75e5d5;
        }

        .social-links {

            display: flex;

            gap: 10px;

            margin-top: 26px;
        }

        .social-links a {

            width: 44px;
            height: 44px;

            display: grid;
            place-items: center;

            border-radius: 12px;

            color:
                rgba(255,255,255,.7);

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

            background:
                rgba(255,255,255,.03);

            font-size: 16px;

            transition: .25s ease;
        }

        .social-links a:hover {

            color: #63ddcc;

            border-color:
                rgba(83,218,200,.25);

            transform:
                translateY(-2px);
        }

        .footer-bottom {

            min-height: 70px;

            display: flex;
            align-items: center;
            justify-content: space-between;

            gap: 20px;

            padding-top: 24px;

            border-top:
                1px solid rgba(255,255,255,.08);
        }

        .footer-copy {

            color:
                rgba(255,255,255,.42);

            font-size: 14px;
        }

        .footer-legal {

            display: flex;
            flex-wrap: wrap;

            gap: 18px 24px;
        }

        .footer-legal a {

            color:
                rgba(255,255,255,.48);

            font-size: 14px;

            transition: color .2s ease;
        }

        .footer-legal a:hover {
            color: #75e5d5;
        }


        /* =====================================================
           BACK TO TOP
        ===================================================== */

        .back-to-top {

            position: fixed;

            right: 24px;
            bottom: 24px;

            z-index: 1200;

            width: 52px;
            height: 52px;

            display: grid;
            place-items: center;

            border-radius: 50%;

            color: #06322e;

            background: var(--primary);

            box-shadow:
                0 14px 32px rgba(31, 201, 179, .35);

            font-size: 18px;

            opacity: 0;
            visibility: hidden;

            transform: translateY(12px);

            transition:
                opacity .3s ease,
                visibility .3s ease,
                transform .3s ease,
                background .25s ease,
                box-shadow .25s ease;
        }

        .back-to-top.visible {

            opacity: 1;
            visibility: visible;

            transform: translateY(0);
        }

        .back-to-top:hover {

            background: var(--primary-hover);

            box-shadow:
                0 18px 40px rgba(31, 201, 179, .42);
        }

        .back-to-top i {

            display: block;

            animation: backToTopFloat 1.6s ease-in-out infinite;
        }

        .back-to-top.visible i {
            animation-play-state: running;
        }

        @keyframes backToTopFloat {

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

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

        @media (prefers-reduced-motion: reduce) {

            .back-to-top i {
                animation: none;
            }
        }

        @media (max-width: 768px) {

            .back-to-top {

                right: 16px;
                bottom: 16px;

                width: 46px;
                height: 46px;

                font-size: 16px;
            }
        }


        /* =====================================================
           REVEAL
        ===================================================== */

        [data-reveal] {

            opacity: 0;

            transform:
                translateY(28px);

            transition:
                opacity .7s ease,
                transform .7s ease;
        }

        [data-reveal].visible {

            opacity: 1;

            transform:
                translateY(0);
        }


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

        @media (max-width: 1100px) {

            .nav {
                display: none;
            }

            .navbar {

                display: flex;

                justify-content: space-between;
            }

            .header-login {
                display: none;
            }

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

            .hero {

                min-height: auto;

                padding: 100px 0 0;

                overflow-x: clip;
            }

            .hero > .container,
            .hero-inner {
                min-height: 0;
            }

            .hero-inner {

                grid-template-columns: 1fr;

                grid-template-rows: auto;

                gap: 28px;

                align-items: stretch;
            }

            .hero-content {

                grid-column: auto;
                grid-row: auto;

                max-width: 640px;

                text-align: center;

                margin: 0 auto;

                justify-content: center;

                height: auto;

                padding: 12px 0 0;
            }

            .hero h1 {

                font-size: clamp(36px, 7vw, 52px);

                letter-spacing: -2.2px;
            }

            .hero-description {

                margin-inline: auto;

                max-width: 480px;

                font-size: 16px;
            }

            .hero-buttons {

                justify-content: center;

                flex-wrap: wrap;
            }

            .hero-points {
                justify-content: center;
            }

            .hero-visual {

                grid-column: auto;
                grid-row: auto;

                display: flex;
                align-items: flex-end;
                justify-content: center;

                width: 100%;

                min-height: 0;

                max-width: 100%;

                margin: 0 auto;

                margin-right: 0;

                padding: 0 0 24px;
            }

            .hero-stage {

                grid-row: auto;

                width: min(520px, 92%);
            }

            .hero-laptop {

                -webkit-mask-image:
                    linear-gradient(
                        90deg,
                        #000 0%,
                        #000 62%,
                        rgba(0, 0, 0, .55) 82%,
                        transparent 100%
                    );

                mask-image:
                    linear-gradient(
                        90deg,
                        #000 0%,
                        #000 62%,
                        rgba(0, 0, 0, .55) 82%,
                        transparent 100%
                    );
            }

            .hero-float-badge {
                font-size: 11px;
                padding: 7px 12px 7px 7px;
            }

            .hero-float-badge i {
                width: 24px;
                height: 24px;
                font-size: 10px;
            }

            .hero-float-badge--3 {
                display: none;
            }

            .hero-person {

                right: -2%;
                bottom: 0;
            }

            .hero-person img {
                max-width: min(420px, 58vw);
            }

            .hero-wave {
                height: 72px;
            }

            .features-intro {

                grid-template-columns: 1fr;

                gap: 16px;

                margin-bottom: 36px;

                text-align: center;
            }

            .features-intro-text {

                max-width: 560px;

                margin-inline: auto;
            }

            .features-spotlight {

                grid-template-columns: 1fr;
            }

            .features-spotlight-media {
                min-height: 280px;
            }

            .features-spotlight-body {
                padding: 28px 24px;
            }

            .features-spotlight-body h3 {
                font-size: 24px;
            }

            .features-grid {

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

                gap: 14px;
            }

            .blog-intro {

                grid-template-columns: 1fr;

                gap: 14px;

                margin-bottom: 36px;

                text-align: center;
            }

            .blog-intro-side {

                align-items: center;

                text-align: center;

                width: 100%;
            }

            .blog-intro-text {
                margin-inline: auto;
            }

            .blog-nav-group {
                justify-content: center;
            }

            .blog-card {

                flex: 0 0 calc((100% - 22px) / 2);

                width: calc((100% - 22px) / 2);
            }

            .showcase-layout,
            .business-layout {

                grid-template-columns:
                    1fr;

                gap: 48px;
            }

            .showcase-layout {

                max-width: 850px;

                margin-inline: auto;
            }

            .showcase-copy {
                text-align: center;
            }

            .showcase-copy .section-description,
            .showcase-copy .process p {
                margin-inline: auto;
            }

            .process {
                text-align: left;
            }

            .gallery-grid {

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

                grid-template-rows:
                    repeat(3,280px);
            }

            .gallery-card:first-child {
                grid-row: span 2;
            }

            .gallery-card:nth-child(4) {
                grid-column: span 1;
            }

            .testimonials-grid {

                grid-template-columns:
                    1fr 1fr;
            }

            .testimonial:last-child {

                grid-column:
                    1 / -1;
            }
        }


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

        @media (max-width: 768px) {

            .container {
                width:
                    min(
                        calc(100% - 30px),
                        var(--container)
                    );
            }

            .section {
                padding: 85px 0;
            }

            .navbar {
                min-height: 74px;
            }

            .logo {

                font-size: 22px;
            }

            .logo-symbol {

                width: 39px;
                height: 39px;
            }

            .header-demo {
                display: none;
            }


            /* Hero */

            .hero {

                padding: 92px 0 0;

                overflow-x: clip;
            }

            .hero > .container,
            .hero-inner {
                min-height: 0;
            }

            .hero-content {
                padding: 8px 0 0;
            }

            .hero h1 {

                font-size:
                    clamp(32px, 9vw, 44px);

                letter-spacing: -2px;

                max-width: none;
            }

            .hero-description {

                font-size: 15px;

                line-height: 1.7;

                max-width: 100%;
            }

            .hero-buttons {

                display: grid;

                grid-template-columns: 1fr;

                width: 100%;

                gap: 10px;
            }

            .hero-buttons .btn {

                width: 100%;

                min-height: 50px;
            }

            .hero-points {

                justify-content: center;

                gap: 10px 14px;
            }

            .hero-visual {

                min-height: 0;

                max-width: 100%;

                margin-right: 0;

                padding: 8px 0 16px;

                overflow: visible;
            }

            .hero-stage {
                width: min(100%, 420px);
            }

            .hero-laptop-screen {
                padding: 8px;
                border-radius: 14px 14px 10px 10px;
            }

            .hero-laptop-base {
                height: 10px;
            }

            .hero-float-badge {

                font-size: 10px;

                padding: 6px 10px 6px 6px;

                gap: 6px;
            }

            .hero-float-badge i {

                width: 20px;
                height: 20px;

                font-size: 9px;
            }

            .hero-float-badge--2,
            .hero-float-badge--3 {
                display: none;
            }

            .hero-person {

                right: -4%;
                bottom: 0;
            }

            .hero-person img {
                max-width: min(300px, 70vw);
            }

            .hero-person::after {
                height: 28%;
                filter: blur(10px);
            }

            .hero-wave {
                height: 56px;
            }

            .hero-glow {
                inset: 0 0 10% 0;
            }


            /* titles */

            .section-title {

                font-size:
                    clamp(30px, 9vw, 42px);

                letter-spacing: -1.8px;
            }

            .section-description {

                font-size: 15px;
            }

            .section-heading-center {

                margin-bottom: 45px;
            }


            /* features */

            .features-section.section {
                padding: 72px 0;
            }

            .features-intro {
                margin-bottom: 28px;
                gap: 12px;
            }

            .features-spotlight-media {
                min-height: 220px;
            }

            .features-spotlight-body {
                padding: 24px 20px;
            }

            .features-spotlight-body h3 {
                font-size: 22px;
            }

            .features-spotlight-badge {
                left: 14px;
                bottom: 14px;
                font-size: 12px;
                padding: 8px 12px 8px 8px;
            }

            .features-grid {

                grid-template-columns: 1fr;

                gap: 12px;
            }

            .feature-item {
                padding: 22px 20px;
            }

            .feature-icon {
                width: 44px;
                height: 44px;
                margin-bottom: 16px;
                font-size: 16px;
            }

            .blog-intro {
                margin-bottom: 28px;
            }

            .blog-card {

                flex: 0 0 100%;

                width: 100%;
            }

            .blog-footer {
                margin-top: 28px;
            }

            .blog-all-btn {
                width: 100%;
                max-width: 320px;
            }

            .blog-card-body {
                padding: 20px 18px 22px;
            }

            .blog-card-body h3 {
                font-size: 18px;
            }


            /* showcase */

            .showcase-visual-frame {
                aspect-ratio: 16 / 11;
            }

            .showcase-float-badge {
                left: 14px;
                bottom: 14px;
                font-size: 12px;
            }


            /* gallery */

            .gallery-grid {

                display: grid;

                grid-template-columns: 1fr;

                grid-template-rows: none;
            }

            .gallery-card,
            .gallery-card:first-child,
            .gallery-card:nth-child(4) {

                grid-column: auto;
                grid-row: auto;

                height: 300px;
            }


            /* business */

            .dashboard {

                padding: 18px;

                min-height: auto;
            }

            .stats-grid {

                grid-template-columns:
                    1fr;
            }

            .stat-card {

                min-height: 90px;
            }


            /* pricing */

            .price-card {

                padding: 35px 25px;
            }

            .price-header {

                display: block;
            }

            .price-value {

                margin-top: 28px;

                text-align: left;
            }

            .price-value strong {
                font-size: 44px;
            }

            .price-features {

                grid-template-columns: 1fr;
            }

            .pricing-actions {

                display: grid;

                grid-template-columns: 1fr;
            }

            .pricing-actions .btn {

                width: 100%;
            }


            /* testimonials */

            .testimonials-grid {

                grid-template-columns: 1fr;
            }

            .testimonial:last-child {

                grid-column: auto;
            }


            /* CTA */

            .cta {

                min-height: 520px;

                padding: 45px 25px;

                border-radius: 25px;

                align-items: end;

                background:
                    linear-gradient(
                        to top,
                        rgba(3,25,26,.98) 0%,
                        rgba(3,29,30,.92) 48%,
                        rgba(4,33,32,.40) 100%
                    ),
                    url(
                        'https://images.unsplash.com/photo-1556912167-f556f1f39fdf?auto=format&fit=crop&w=1200&q=85'
                    )
                    center / cover no-repeat;
            }

            .cta h2 {

                font-size:
                    clamp(38px,10vw,49px);

                letter-spacing: -2.2px;
            }

            .cta p {

                font-size: 15px;
            }

            .cta-buttons {

                display: grid;

                grid-template-columns: 1fr;
            }

            .cta-buttons .btn {

                width: 100%;
            }


            /* FOOTER MOBILE CENTER */

            .footer {

                padding-top: 60px;

                text-align: center;
            }

            .footer-top {

                flex-direction: column;

                align-items: center;

                gap: 32px;

                padding-bottom: 36px;
            }

            .footer-brand {
                max-width: 460px;
            }

            .footer .logo {
                justify-content: center;
            }

            .footer-about {

                margin:
                    18px auto 0;
            }

            .footer-nav {

                justify-content: center;

                gap: 12px 22px;
            }

            .social-links {
                justify-content: center;
            }

            .footer-bottom {

                flex-direction: column;

                justify-content: center;

                text-align: center;

                gap: 14px;

                padding-bottom: 12px;
            }

            .footer-legal {
                justify-content: center;
            }
        }


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

        @media (max-width: 480px) {

            body {
                font-size: 16px;
            }

            .hero h1 {

                font-size: 30px;

                letter-spacing: -1.6px;
            }

            .hero-description {

                font-size: 14px;
            }

            .hero-point {

                font-size: 12px;
            }

            .hero-buttons .btn {
                font-size: 14px;
                padding-inline: 18px;
            }

            .hero-float-badge {
                display: none;
            }

            .hero-visual {
                padding-bottom: 8px;
            }

            .hero-stage {
                width: 100%;
            }

            .hero-person {
                right: -8%;
            }

            .hero-person img {
                max-width: min(240px, 62vw);
            }

            .hero-wave {
                height: 44px;
            }

            .features-section.section {
                padding: 60px 0;
            }

            .features-spotlight-media {
                min-height: 190px;
            }

            .features-spotlight-body {
                padding: 22px 18px;
            }

            .features-spotlight-body h3 {
                font-size: 20px;
            }

            .features-spotlight-body p {
                font-size: 14px;
            }

            .feature-item h3 {
                font-size: 17px;
            }

            .showcase-visual-frame {
                aspect-ratio: 4 / 3;
            }

            .gallery-card,
            .gallery-card:first-child,
            .gallery-card:nth-child(4) {

                height: 270px;
            }

            .chart-bars {
                height: 170px;
            }

            .price-value strong {

                font-size: 40px;
            }

            .price-header h3 {

                font-size: 25px;
            }

        }
