/* =====================================================
   NEXORA BUSINESS WEBSITE
   ===================================================== */

:root {
    --bg: #f7f8fa;
    --surface: #ffffff;
    --surface-2: #e6e8eb;

    --text: #111318;
    --text-soft: #626873;
    --text-muted: #9298a3;

    --border: #e5e7eb;

    --primary: #111318;
    --accent: #c8ff3d;
    --accent-dark: #9fda19;

    --dark: #111318;
    --dark-2: #191c22;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;

    --shadow: 0 20px 60px rgba(17, 19, 24, 0.08);

    --container: 1180px;

    --transition: 0.3s ease;
}

body.dark-mode {
    --bg: #0c0e11;
    --surface: #15181d;
    --surface-2: #1c2026;

    --text: #f5f6f7;
    --text-soft: #a9afb9;
    --text-muted: #707681;

    --border: #292e36;

    --primary: #ffffff;

    --shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

body,
button,
input,
textarea {
    font-family: "DM Sans", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}


/* ================= PRELOADER ================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #111318;
    display: grid;
    place-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    color: white;
    font-family: "Manrope", sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -1px;
}

.loader-logo span {
    color: var(--accent);
}

.loader-line {
    position: absolute;
    width: 180px;
    height: 2px;
    background: #2d3138;
    margin-top: 90px;
    overflow: hidden;
}

.loader-line span {
    display: block;
    height: 100%;
    width: 50%;
    background: var(--accent);
    animation: loading 1.3s infinite ease-in-out;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(360%);
    }
}


/* ================= HEADER ================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    transition:
        background var(--transition),
        box-shadow var(--transition),
        backdrop-filter var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 var(--border);
}

body.dark-mode .header.scrolled {
    background: rgba(12, 14, 17, 0.82);
}

.nav-container {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: "Manrope", sans-serif;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.logo span {
    color: var(--accent-dark);
}

.navbar {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-link {
    position: relative;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 600;
    transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--accent-dark);
    transition: width var(--transition);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: grid;
    font-size: 20px;
    place-items: center;
    color: var(--text);
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--surface-2);
    transform: rotate(15deg);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    border-radius: 100px;

    background: var(--primary);
    color: var(--bg);

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mobile-cta {
    display: none;
}

.menu-toggle {
    width: 44px;
    height: 44px;

    display: none;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    border: 1px solid var(--border);
    border-radius: 50%;
}

.menu-toggle span {
    width: 17px;
    height: 1.5px;
    background: var(--text);
    transition: var(--transition);
}


/* ================= HERO ================= */

.hero {
    position: relative;
    min-height: 780px;
    padding-top: 150px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(200, 255, 61, 0.16),
            transparent 25%
        );
}

.hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(17, 19, 24, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(17, 19, 24, 0.045) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 90%
    );

    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 7px 12px;

    background: var(--surface);
    border: 1px solid var(--border);

    border-radius: 100px;

    color: var(--text-soft);

    font-size: 12px;
    font-weight: 600;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

.eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent-dark);

    box-shadow: 0 0 0 4px rgba(159, 218, 25, 0.12);
}

.hero h1 {
    max-width: 700px;

    margin-top: 22px;

    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.98;

    letter-spacing: -4px;
    font-weight: 800;
}

.hero h1 span {
    display: block;
    color: var(--text-soft);
}

.hero-description {
    max-width: 570px;
    margin-top: 28px;

    color: var(--text-soft);

    font-size: 17px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 52px;
    padding: 0 22px;

    border-radius: 100px;

    font-size: 14px;
    font-weight: 700;

    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--bg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
}

.btn-secondary {
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--surface);
    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 29px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 50px;
    height: 50px;
    margin-left: -7px;
    display: grid;
    place-items: center;
    border: 2px solid var(--bg);
    border-radius: 50%;
    background: var(--surface-2);
    font-size: 11px;
    font-weight: 800;
}

.avatar:first-child {
    margin-left: 0;
}

.stars {
    font-size: 17px;
    letter-spacing: 2px;
    color: var(--accent-dark);
    /* margin-top: -5px; */
    margin-bottom: 15px;
}

.hero-trust span {
    color: var(--text-muted);
    font-size: 13px;
}


/* HERO DASHBOARD */

.hero-visual {
    position: relative;
    min-height: 520px;

    display: grid;
    place-items: center;
}

.visual-glow {
    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background: var(--accent);

    opacity: 0.16;

    filter: blur(80px);
}

.dashboard-card {
    position: relative;
    z-index: 2;

    width: min(100%, 500px);

    padding: 25px;

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 25px;

    background: rgba(255, 255, 255, 0.72);

    backdrop-filter: blur(25px);

    box-shadow:
        0 35px 80px rgba(17, 19, 24, 0.12);

    transform: rotate(2deg);

    transition: transform 0.5s ease;
}

.dashboard-card:hover {
    transform: rotate(0deg) translateY(-8px);
}

body.dark-mode .dashboard-card {
    background: rgba(25, 28, 34, 0.82);
    border-color: rgba(255, 255, 255, 0.08);
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 12px;
    font-weight: 700;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: #58c768;
    border-radius: 50%;
}

.more-btn {
    color: var(--text-muted);
}

.growth-number {
    margin-top: 35px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.growth-number small {
    display: block;
    margin-bottom: 5px;

    color: var(--text-muted);
    font-size: 11px;
}

.growth-number h3 {
    font-family: "Manrope", sans-serif;
    font-size: 36px;
    letter-spacing: -2px;
}

.growth-positive {
    padding: 6px 9px;

    border-radius: 8px;

    background: rgba(159, 218, 25, 0.13);
    color: #70a900;

    font-size: 11px;
    font-weight: 700;
}

.chart {
    position: relative;

    height: 190px;

    margin-top: 15px;
}

.chart-grid {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-grid span {
    display: block;
    width: 100%;
    border-top: 1px dashed var(--border);
}

.chart svg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}

.chart-area {
    fill: url(#chartGradient);
}

.chart-line {
    fill: none;
    stroke: var(--accent-dark);
    stroke-width: 4;
    vector-effect: non-scaling-stroke;
}

.chart-labels {
    display: flex;
    justify-content: space-between;

    color: var(--text-muted);
    font-size: 9px;
}

.floating-card {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px;

    border: 1px solid var(--border);
    border-radius: 14px;

    background: var(--surface);

    box-shadow: 0 20px 45px rgba(17, 19, 24, 0.12);
}

.clients-card {
    left: -5px;
    bottom: 65px;
}

.project-card {
    right: -5px;
    top: 90px;
}

.floating-icon {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: var(--surface-2);
    color: var(--text);

    font-size: 12px;
}

.floating-card strong {
    display: block;
    font-size: 12px;
}

.floating-card span {
    display: block;
    color: var(--text-muted);
    font-size: 9px;
}

.mini-growth {
    margin-left: 10px;

    color: #72a90d;
    font-size: 9px;
    font-weight: 700;
}

.project-check {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--accent);
    color: #111;

    font-size: 10px;
}

.decoration-one,
.decoration-two {
    position: absolute;

    border: 1px solid var(--border);
    border-radius: 50%;
}

.decoration-one {
    width: 100px;
    height: 100px;
    top: 10px;
    right: 15px;
}

.decoration-two {
    width: 45px;
    height: 45px;
    left: 25px;
    top: 35px;
    background: var(--accent);
    border: none;
    opacity: 0.8;
}


/* ================= HERO BRANDS ================= */

.hero-bottom {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;

    padding: 25px 0;

    border-top: 1px solid var(--border);
}

.hero-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero-bottom p {
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-list {
    flex: 1;

    display: flex;
    justify-content: space-between;
    align-items: center;

    max-width: 700px;
}

.brand-list span {
    color: var(--text-muted);
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.5px;
}


/* ================= GENERAL SECTION ================= */

.section {
    padding: 120px 0;
}

.section-heading {
    max-width: 760px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--text-muted);

    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-tag span {
    width: 22px;
    height: 2px;
    background: var(--accent-dark);
}

.section-heading h2 {
    margin-top: 18px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;

    letter-spacing: -3px;
}

.section-heading h2 span {
    color: var(--text-soft);
}

.section-heading > p {
    max-width: 600px;
    margin-top: 22px;

    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.8;
}


/* ================= ABOUT ================= */

.about-section {
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;

    margin-top: 75px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-main-card {
    position: relative;

    min-height: 440px;

    padding: 35px;

    border-radius: var(--radius-xl);

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(200, 255, 61, 0.28),
            transparent 30%
        ),
        var(--dark);

    color: white;
}

.about-card-top {
    display: flex;
    justify-content: space-between;

    color: #969ba4;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-card-top i {
    color: var(--accent);
}

.philosophy-mark {
    margin-top: 65px;

    font-family: "Manrope", sans-serif;
    font-size: 130px;
    line-height: 0.8;
    font-weight: 800;

    color: var(--accent);
    opacity: 0.9;
}

.about-main-card h3 {
    margin-top: 25px;

    font-family: "Manrope", sans-serif;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.philosophy-line {
    width: 60px;
    height: 2px;

    margin: 25px 0 15px;

    background: var(--accent);
}

.about-main-card p {
    max-width: 380px;

    color: #a2a6ad;
    font-size: 12px;
}

.experience-card {
    position: absolute;

    right: -30px;
    bottom: 40px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px 22px;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: var(--surface);

    box-shadow: var(--shadow);
}

.experience-card strong {
    font-family: "Manrope", sans-serif;
    font-size: 32px;
}

.experience-card span {
    color: var(--text-soft);
    font-size: 11px;
    line-height: 1.4;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
}

.about-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 13px;

    background: var(--surface-2);

    font-size: 15px;
}

.about-item h3 {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
}

.about-item p {
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    margin-top: 10px;

    font-size: 13px;
    font-weight: 700;

    border-bottom: 1px solid var(--border);
    padding-bottom: 5px;

    transition: var(--transition);
}

.text-link:hover {
    gap: 15px;
    border-color: var(--text);
}


/* ================= STATS ================= */

.stats-section {
    padding: 70px 0;
    background: var(--dark);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 10px 35px;
    border-right: 1px solid #2b2f35;
}

.stat:first-child {
    padding-left: 0;
}

.stat:last-child {
    border: none;
}

.stat strong {
    font-family: "Manrope", sans-serif;
    font-size: 48px;
    letter-spacing: -2px;
}

.stat > span {
    color: var(--accent);
    font-size: 26px;
    font-weight: 800;
}

.stat p {
    margin-top: 5px;
    color: #8c929b;
    font-size: 15px;
}


/* ================= SERVICES ================= */

.services-section {
    background: var(--bg);
}

.split-heading {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 70px;
    align-items: end;
    max-width: none;
}

.split-heading > p {
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;

    margin-top: 65px;
}

.service-card {
    position: relative;

    padding: 35px;

    min-height: 380px;

    border: 1px solid var(--border);
    border-radius: 22px;

    background: var(--surface);

    overflow: hidden;

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: #d3d6dc;
}

.service-card.featured {
    background: var(--dark);
    color: white;
}

.service-number {
    position: absolute;
    top: 30px;
    right: 30px;

    color: var(--text-muted);
    font-size: 15px;
}

.featured .service-number {
    color: #6c7179;
}

.service-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    margin-top: 45px;

    border-radius: 15px;

    background: var(--surface-2);

    font-size: 18px;
}

.featured .service-icon {
    background: var(--accent);
    color: #111;
}

.service-card h3 {
    margin-top: 25px;

    font-family: "Manrope", sans-serif;
    font-size: 24px;
    letter-spacing: -0.8px;
}

.service-card > p {
    max-width: 450px;
    margin-top: 12px;

    color: var(--text-soft);
    font-size: 14px;
}

.featured > p {
    color: #9297a0;
}

.service-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 25px;

    list-style: none;
}

.service-card li {
    padding: 6px 10px;

    border-radius: 100px;

    background: var(--surface-2);

    color: var(--text-soft);

    font-size: 11.4px;
}

.featured li {
    background: #22262d;
    color: #9da3ad;
}

.service-link {
    position: absolute;
    bottom: 30px;

    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 12px;
    font-weight: 700;

    transition: var(--transition);
}

.service-link:hover {
    gap: 14px;
}

.featured .service-link {
    color: var(--accent);
}


/* ================= DARK WHY ================= */

.dark-section {
    background: var(--dark);
    color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 120px;
    align-items: center;
}

.light-tag {
    color: #757b84;
}

.why-content h2 {
    margin-top: 18px;

    font-family: "Manrope", sans-serif;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -3px;
}

.why-content h2 span {
    display: block;
    color: #757b84;
}

.why-content > p {
    max-width: 480px;
    margin-top: 25px;

    color: #969ca5;
    font-size: 14px;
    line-height: 1.8;
}

.btn-light {
    margin-top: 30px;
    background: white;
    color: #111;
}

.btn-light:hover {
    transform: translateY(-3px);
    background: var(--accent);
}

.benefits {
    border-top: 1px solid #2b2f36;
}

.benefit {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid #2b2f36;
}

.benefit > span {
    color: #666c75;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
}

.benefit h3 {
    font-size: 18px;
}

.benefit p {
    margin-top: 7px;

    color: #8c929b;
    font-size: 15px;
}


/* ================= PROCESS ================= */

.process-section {
    background: var(--surface);
}

.center-heading {
    margin-inline: auto;
    text-align: center;
}

.center-heading > p {
    margin-inline: auto;
}

.process-grid {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

    margin-top: 80px;
}

.process-line {
    position: absolute;

    left: 12%;
    right: 12%;
    top: 31px;

    height: 1px;

    background: var(--border);
}

.process-step {
    position: relative;
    z-index: 2;

    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;

    display: grid;
    place-items: center;

    margin-inline: auto;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--surface);

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;

    transition: var(--transition);
}

.process-step:hover .step-number {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.08);
}

.process-step h3 {
    margin-top: 25px;
    font-family: "Manrope", sans-serif;
}

.process-step p {
    margin-top: 10px;

    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}


/* ================= TESTIMONIALS ================= */

.testimonials-section {
    background: var(--bg);
}

.testimonial-controls {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.testimonial-controls button {
    width: 45px;
    height: 45px;

    border: 1px solid var(--border);
    border-radius: 50%;

    color: var(--text);

    transition: var(--transition);
}

.testimonial-controls button:hover {
    background: var(--primary);
    color: var(--bg);
}

.testimonial-slider {
    overflow: hidden;
    margin-top: 55px;
}

.testimonial-track {
    display: flex;
    gap: 18px;

    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(50% - 9px);

    min-height: 320px;

    padding: 35px;

    border: 1px solid var(--border);
    border-radius: 22px;

    background: var(--surface);
}

.quote-icon {
    font-family: Georgia, serif;
    font-size: 60px;
    line-height: 0.6;
    color: var(--accent-dark);
}

.testimonial-text {
    margin-top: 30px;

    font-family: "Manrope", sans-serif;
    font-size: 19px;
    line-height: 1.55;
    letter-spacing: -0.5px;
}

.client {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 35px;
}

.client-avatar {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--surface-2);

    font-size: 10px;
    font-weight: 800;
}

.client strong {
    display: block;
    font-size: 15px;
}

.client span {
    display: block;
    margin-top: 2px;

    color: var(--text-muted);
    font-size: 13px;
}


/* ================= TEAM ================= */

.team-section {
    background: var(--surface);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;

    margin-top: 60px;
}

.team-image {
    position: relative;

    aspect-ratio: 0.9;

    display: grid;
    place-items: center;

    border-radius: 18px;

    overflow: hidden;

    background: var(--surface-2);
}

.team-one {
    background:
        radial-gradient(
            circle at 50% 35%,
            #ddd,
            #92969c
        );
}

.team-two {
    background:
        radial-gradient(
            circle at 50% 35%,
            #d8d8d8,
            #8c8c8c
        );
}

.team-three {
    background:
        radial-gradient(
            circle at 50% 35%,
            #d1d1d1,
            #85898f
        );
}

.team-four {
    background:
        radial-gradient(
            circle at 50% 35%,
            #dedede,
            #91959b
        );
}

.team-initials {
    font-family: "Manrope", sans-serif;
    font-size: 70px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    position: absolute;

    right: 15px;
    bottom: 15px;

    display: flex;
    gap: 6px;

    transform: translateY(10px);
    opacity: 0;

    transition: var(--transition);
}

.team-image:hover .social-links {
    opacity: 1;
    transform: translateY(0);
}

.social-links a {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: white;
    color: #111;

    font-size: 11px;
}

.team-card h3 {
    margin-top: 17px;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
}

.team-card > span {
    color: var(--text-muted);
    font-size: 13px;
}


/* ================= PRICING ================= */

.pricing-section {
    background: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    margin-top: 60px;
}

.pricing-card {
    position: relative;

    padding: 35px;

    border: 1px solid var(--border);
    border-radius: 22px;

    background: var(--surface);
}

.pricing-card.popular {
    border: 2px solid var(--accent-dark);
    box-shadow: 0 20px 50px rgba(159, 218, 25, 0.08);
}

.popular-badge {
    position: absolute;

    top: 20px;
    right: 20px;

    padding: 6px 9px;

    border-radius: 100px;

    background: var(--accent);
    color: #111;

    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.pricing-label {
    color: var(--text-muted);
    font-size: 11.4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    margin-top: 8px;

    font-family: "Manrope", sans-serif;
    font-size: 24px;
}

.pricing-card > p {
    min-height: 70px;

    margin-top: 12px;

    color: var(--text-soft);
    font-size: 13px;
}

.price {
    margin-top: 25px;

    font-family: "Manrope", sans-serif;
    font-size: 42px;
    font-weight: 800;

    letter-spacing: -2px;
}

.price > span {
    font-size: 20px;
    vertical-align: top;
}

.custom-price {
    font-size: 28px;
    letter-spacing: -1px;
}

.price-note {
    display: block;

    color: var(--text-muted);
    font-size: 11.4px;
}

.pricing-btn {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 48px;

    margin-top: 25px;

    border: 1px solid var(--border);
    border-radius: 100px;

    font-size: 12px;
    font-weight: 700;

    transition: var(--transition);
}

.pricing-btn:hover,
.pricing-btn.filled {
    background: var(--primary);
    color: var(--bg);
}

.pricing-card ul {
    display: flex;
    flex-direction: column;
    gap: 13px;

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid var(--border);

    list-style: none;
}

.pricing-card li {
    color: var(--text-soft);
    font-size: 12.4px;
}

.pricing-card li i {
    margin-right: 9px;
    color: var(--accent-dark);
}


/* ================= FAQ ================= */

.faq-section {
    background: var(--surface);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 120px;
}

.faq-intro h2 {
    margin-top: 18px;

    font-family: "Manrope", sans-serif;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.faq-intro h2 span {
    display: block;
    color: var(--text-soft);
}

.faq-intro > p {
    max-width: 390px;

    margin-top: 22px;

    color: var(--text-soft);
    font-size: 13px;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 22px 0;

    text-align: left;

    color: var(--text);
    font-size: 16px;
    font-weight: 700;
}

.faq-question i {
    font-size: 13px;
    transition: transform var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;

    transition: grid-template-rows 0.3s ease;
}

.faq-answer p {
    overflow: hidden;

    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding-bottom: 22px;
}


/* ================= CTA ================= */

.cta-section {
    position: relative;

    padding: 120px 0;

    background: var(--accent);

    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;

    opacity: 0.1;

    background-image:
        linear-gradient(#111 1px, transparent 1px),
        linear-gradient(90deg, #111 1px, transparent 1px);

    background-size: 40px 40px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent
    );
}

.cta-content {
    position: relative;

    text-align: center;
}

.cta-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-content h2 {
    max-width: 800px;

    margin: 18px auto 0;

    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
    letter-spacing: -4px;
}

.cta-content h2 span {
    display: block;
    opacity: 0.5;
}

.cta-content p {
    max-width: 500px;

    margin: 25px auto 0;

    font-size: 14px;
}

.btn-dark {
    margin-top: 30px;

    background: #111318;
    color: white;
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(17, 19, 24, 0.2);
}


/* ================= CONTACT ================= */

.contact-section {
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 110px;
    align-items: start;
}

.contact-info h2 {
    margin-top: 18px;

    font-family: "Manrope", sans-serif;
    font-size: clamp(40px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -3px;
}

.contact-info h2 span {
    display: block;
    color: var(--text-soft);
}

.contact-info > p {
    max-width: 480px;

    margin-top: 25px;

    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;

    margin-top: 45px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-detail-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: var(--surface);

    font-size: 14px;
}

.contact-detail span {
    display: block;

    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail a,
.contact-detail p {
    display: block;

    margin-top: 3px;

    color: var(--text);
    font-size: 12.4px;
}

.contact-socials {
    display: flex;
    gap: 7px;

    margin-top: 35px;
}

.contact-socials a {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    font-size: 11px;

    transition: var(--transition);
}

.contact-socials a:hover {
    background: var(--primary);
    color: var(--bg);
}


/* FORM */

.contact-form-wrapper {
    padding: 35px;

    border: 1px solid var(--border);
    border-radius: 24px;

    background: var(--surface);

    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid var(--border);
    border-radius: 10px;

    outline: none;

    background: var(--bg);
    color: var(--text);

    font-size: 12px;

    transition: var(--transition);

    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.option-btn {
    padding: 8px 12px;

    border: 1px solid var(--border);
    border-radius: 100px;

    color: var(--text-soft);

    font-size: 11.4px;

    transition: var(--transition);
}

.option-btn:hover,
.option-btn.selected {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--bg);
}

.form-submit {
    width: 100%;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 8px 0 18px;

    border-radius: 100px;

    background: var(--primary);
    color: var(--bg);

    font-size: 12px;
    font-weight: 700;

    transition: var(--transition);
}

.form-submit:hover {
    transform: translateY(-2px);
}

.form-submit span {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--accent);
    color: #111;
}

.form-note {
    margin-top: 14px;

    text-align: center;

    color: var(--text-muted);
    font-size: 11px;
}

.form-note i {
    margin-right: 4px;
}

.form-success {
    display: none;

    margin-top: 15px;
    padding: 12px;

    border-radius: 10px;

    background: rgba(159, 218, 25, 0.12);
    color: #6b980e;

    font-size: 11px;
    text-align: center;
}

.form-success.show {
    display: block;
}


/* ================= FOOTER ================= */

.footer {
    padding: 65px 0 25px;

    background: var(--dark);
    color: white;
}

.footer-top {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 100px;
}

.footer-brand p {
    max-width: 250px;

    margin-top: 15px;

    color: #858b94;
    font-size: 13px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links h4 {
    margin-bottom: 18px;

    color: white;
    font-size: 14px;
}

.footer-links a {
    display: block;

    margin-bottom: 10px;

    color: #858b94;
    font-size: 13px;

    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    margin-top: 60px;
    padding-top: 22px;

    border-top: 1px solid #2a2e35;

    color: #656b74;
    font-size: 12px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}


/* ================= BACK TOP ================= */

.back-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 500;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--primary);
    color: var(--bg);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);
}

.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* ================= REVEAL ================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1050px) {

    .navbar {
        gap: 20px;
    }

    .hero-container {
        gap: 40px;
    }

    .about-grid,
    .why-grid,
    .contact-grid {
        gap: 60px;
    }

    .faq-grid {
        gap: 70px;
    }

}


@media (max-width: 850px) {

    .container {
        width: min(var(--container), calc(100% - 32px));
    }

    .navbar {
        position: fixed;

        top: 82px;
        left: 16px;
        right: 16px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        padding: 20px;

        border: 1px solid var(--border);
        border-radius: 20px;

        background: var(--surface);

        box-shadow: var(--shadow);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition: var(--transition);
    }

    .navbar.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        padding: 8px 4px;
    }

    .nav-link::after {
        display: none;
    }

    .mobile-cta {
        display: flex;
        justify-content: center;

        margin-top: 8px;
    }

    .nav-actions > .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }


    .hero {
        min-height: auto;
        padding: 125px 0 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .eyebrow {
        margin-inline: auto;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-bottom {
        position: relative;
        margin-top: 20px;
    }

    .hero-bottom .container {
        flex-direction: column;
    }

    .brand-list {
        width: 100%;
        max-width: none;
    }


    .about-grid,
    .why-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        margin-top: 50px;
    }

    .about-content {
        max-width: 700px;
    }


    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }

    .stat:nth-child(2) {
        border: none;
    }


    .split-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .services-grid {
        grid-template-columns: 1fr;
    }


    .why-grid {
        gap: 60px;
    }


    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 55px;
    }

    .process-line {
        display: none;
    }


    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin-inline: auto;
    }


    .faq-grid {
        gap: 50px;
    }


    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}


@media (max-width: 600px) {

    .section {
        padding: 80px 0;
    }

    .nav-container {
        height: 72px;
    }

    .navbar {
        top: 72px;
    }

    .hero {
        padding-top: 110px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -2.8px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-trust {
        margin-bottom: 10px;
    }

    .hero-visual {
        min-height: 420px;
    }

    .dashboard-card {
        padding: 18px;
        transform: none;
    }

    .growth-number h3 {
        font-size: 28px;
    }

    .chart {
        height: 145px;
    }

    .clients-card {
        left: -2px;
        bottom: 20px;
    }

    .project-card {
        right: -2px;
        top: 30px;
    }

    .floating-card {
        transform: scale(0.85);
    }

    .brand-list {
        gap: 15px;
        overflow: hidden;
    }

    .brand-list span {
        font-size: 12px;
    }


    .section-heading h2,
    .why-content h2,
    .contact-info h2 {
        letter-spacing: -2px;
    }


    .about-main-card {
        min-height: 400px;
        padding: 25px;
    }

    .experience-card {
        right: 10px;
        bottom: 20px;
    }


    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        padding: 10px 15px;
    }

    .stat:first-child {
        padding-left: 15px;
    }

    .stat strong {
        font-size: 34px;
    }


    .service-card {
        min-height: 400px;
        padding: 25px;
    }


    .process-grid {
        grid-template-columns: 1fr;
    }


    .testimonial-card {
        flex-basis: 100%;
    }

    .testimonial-text {
        font-size: 16px;
    }


    .team-grid {
        gap: 12px;
    }

    .team-card h3 {
        font-size: 13px;
    }


    .pricing-card {
        padding: 28px;
    }


    .faq-intro h2 {
        font-size: 40px;
    }


    .cta-section {
        padding: 90px 0;
    }

    .cta-content h2 {
        letter-spacing: -2.5px;
    }


    .contact-form-wrapper {
        padding: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

}


@media (max-width: 400px) {

    .container {
        width: calc(100% - 24px);
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-trust {
        flex-direction: column;
    }

    .floating-card {
        transform: scale(0.72);
    }

    .clients-card {
        left: -35px;
    }

    .project-card {
        right: -35px;
    }

}