/* =========================================================
   QYVANO — PREMIUM LUXURY DESIGN
   Noir • Or Champagne • Minimal • Prestige
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --bg: #070707;
    --bg-soft: #0b0b0b;
    --bg-card: #101010;

    --gold: #c8a96b;
    --gold-light: #e4ca91;
    --gold-dark: #9f8149;

    --white: #f5f2eb;
    --text: #b7b2a8;
    --muted: #77736c;

    --border: rgba(200,169,107,0.16);
    --border-strong: rgba(200,169,107,0.34);
    --white-border: rgba(255,255,255,0.075);

    --radius: 18px;

    --shadow:
        0 25px 70px rgba(0,0,0,0.35);

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}


body {

    background: var(--bg);

    color: var(--white);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;

    line-height: 1.7;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

}


body::selection {

    background: var(--gold);

    color: #050505;

}


::selection {

    background: var(--gold);

    color: #050505;

}


img {

    max-width: 100%;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea,
select {

    font: inherit;

}


/* =========================================================
   GLOBAL
========================================================= */

strong {

    color: var(--white);

    font-weight: 700;

}


section {

    position: relative;

}


.tag {

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    line-height: 1.4;

}


/* =========================================================
   HEADER
========================================================= */

header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        rgba(7,7,7,0.78);

    border-bottom:
        1px solid rgba(255,255,255,0.045);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    transition:
        background 0.35s ease,
        border-color 0.35s ease;

}


.navbar {

    max-width: 1320px;

    min-height: 88px;

    margin: auto;

    padding:
        0 38px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;

}


.logo-mark {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(200,169,107,0.6);

    border-radius: 50%;

    color: var(--gold-light);

    font-family:
        Georgia,
        serif;

    font-size: 16px;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;

}


.logo:hover .logo-mark {

    transform:
        rotate(-8deg)
        scale(1.06);

    border-color:
        var(--gold-light);

    box-shadow:
        0 0 25px
        rgba(200,169,107,0.12);

}


.logo-text {

    color: var(--white);

    font-size: 18px;

    font-weight: 600;

    letter-spacing: 2.5px;

}


/* =========================================================
   NAVIGATION
========================================================= */

.nav-links {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

}


.nav-links a {

    position: relative;

    color:
        rgba(245,242,235,0.72);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.7px;

    transition:
        color 0.25s ease;

}


.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;

    height: 1px;

    background: var(--gold);

    transition:
        width 0.3s ease;

}


.nav-links a:hover {

    color: var(--gold-light);

}


.nav-links a:hover::after {

    width: 100%;

}


.menu-dot {

    color:
        rgba(200,169,107,0.32);

    font-size: 10px;

}


/* =========================================================
   NAV BUTTON
========================================================= */

.nav-button {

    padding:
        12px 19px;

    border:
        1px solid
        rgba(200,169,107,0.38);

    border-radius: 50px;

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    white-space: nowrap;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.nav-button:hover {

    background:
        rgba(200,169,107,0.08);

    border-color:
        rgba(200,169,107,0.7);

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 25px
        rgba(200,169,107,0.08);

}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    border:
        1px solid
        rgba(200,169,107,0.25);

    border-radius: 50%;

    background:
        rgba(255,255,255,0.02);

    color: var(--gold-light);

    cursor: pointer;

    font-size: 20px;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        165px 30px
        115px;

    text-align: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 50% 35%,
            rgba(200,169,107,0.105),
            transparent 32%
        ),

        radial-gradient(
            circle at 15% 75%,
            rgba(255,255,255,0.025),
            transparent 28%
        ),

        var(--bg);

}


.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:

        linear-gradient(
            180deg,
            rgba(255,255,255,0.018),
            transparent 35%,
            rgba(0,0,0,0.15)
        );

}


.hero::after {

    content: "";

    position: absolute;

    width: 520px;

    height: 520px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    border:
        1px solid
        rgba(200,169,107,0.035);

    border-radius: 50%;

    pointer-events: none;

}


.hero-content {

    position: relative;

    z-index: 2;

    max-width: 950px;

    margin: auto;

    animation:
        heroAppear 0.9s ease both;

}


@keyframes heroAppear {

    from {

        opacity: 0;

        transform:
            translateY(18px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


.hero .tag {

    margin-bottom: 24px;

}


.hero h1 {

    max-width: 900px;

    margin: auto;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(46px, 6vw, 82px);

    font-weight: 400;

    line-height: 1.04;

    letter-spacing: -2.8px;

}


.hero h1 span {

    display: block;

    margin-top: 10px;

    color: var(--gold-light);

}


.hero-text {

    max-width: 670px;

    margin:
        32px auto 0;

    color: var(--text);

    font-size: 16px;

    line-height: 1.9;

}


.hero-text strong {

    color: var(--white);

}


.hero-buttons {

    margin-top: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

}


.hero-note {

    margin-top: 21px;

    color: var(--muted);

    font-size: 12px;

    letter-spacing: 0.7px;

}


.hero-note strong {

    color: var(--gold-light);

}


/* =========================================================
   BUTTONS
========================================================= */

.button {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        0 28px;

    border-radius: 50px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}


.button:hover {

    transform:
        translateY(-3px);

}


.button.primary {

    background:
        linear-gradient(
            135deg,
            #ead39a,
            #c8a96b
        );

    border:
        1px solid #e5c987;

    color: #090909;

    box-shadow:
        0 10px 35px
        rgba(200,169,107,0.13);

}


.button.primary:hover {

    box-shadow:
        0 15px 45px
        rgba(200,169,107,0.23);

}


.button.secondary {

    background:
        rgba(255,255,255,0.018);

    border:
        1px solid
        rgba(200,169,107,0.3);

    color: var(--gold-light);

}


.button.secondary:hover {

    background:
        rgba(200,169,107,0.07);

    border-color:
        rgba(200,169,107,0.6);

}


/* =========================================================
   SECTIONS
========================================================= */

.section {

    max-width: 1260px;

    margin: auto;

    padding:
        135px 40px;

}


.section-title {

    max-width: 760px;

    margin: auto;

    text-align: center;

}


.section-title .tag {

    margin-bottom: 20px;

}


.section-title h2 {

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(34px, 4.3vw, 55px);

    font-weight: 400;

    line-height: 1.12;

    letter-spacing: -1.5px;

}


.section-title h2 span {

    color: var(--gold-light);

}


.section-title > p:last-child {

    max-width: 650px;

    margin:
        24px auto 0;

    color: var(--text);

    font-size: 15px;

    line-height: 1.9;

}


/* =========================================================
   SERVICES
========================================================= */

.services {

    max-width: 1120px;

    margin:
        65px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.service-card {

    position: relative;

    min-height: 285px;

    padding:
        40px 32px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.038),
            rgba(255,255,255,0.012)
        );

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;

}


.service-card::before {

    content: "";

    position: absolute;

    width: 140px;

    height: 140px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    background:
        rgba(200,169,107,0.06);

    transition:
        transform 0.5s ease;

}


.service-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(200,169,107,0.38);

    box-shadow:
        var(--shadow);

}


.service-card:hover::before {

    transform:
        scale(1.5);

}


.service-card .icon {

    position: relative;

    display: block;

    margin-bottom: 38px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

}


.service-card h3 {

    position: relative;

    margin-bottom: 15px;

    color: var(--white);

    font-size: 19px;

    font-weight: 600;

    letter-spacing: -0.2px;

}


.service-card p {

    position: relative;

    color: var(--text);

    font-size: 14px;

    line-height: 1.85;

}


/* =========================================================
   ABOUT
========================================================= */

.about {

    padding:
        155px 35px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 70% 40%,
            rgba(200,169,107,0.065),
            transparent 32%
        ),

        var(--bg-soft);

    border-top:
        1px solid rgba(255,255,255,0.035);

    border-bottom:
        1px solid rgba(255,255,255,0.035);

}


.about-content {

    max-width: 850px;

    margin: auto;

    text-align: center;

}


.about-content .tag {

    margin-bottom: 20px;

}


.about-content h2 {

    margin-bottom: 28px;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(36px, 5vw, 62px);

    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -2px;

}


.about-content h2 span {

    color: var(--gold-light);

}


.about-content > p:not(.tag) {

    max-width: 680px;

    margin:
        0 auto 18px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.9;

}


.about-content .button {

    margin-top: 25px;

}


/* =========================================================
   WHY
========================================================= */

.why {

    max-width: 1260px;

    margin: auto;

    padding:
        135px 40px;

}


.advantages {

    max-width: 1120px;

    margin:
        65px auto 0;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;

}


.advantage-card {

    padding:
        32px 26px;

    background:
        rgba(255,255,255,0.018);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;

}


.advantage-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(200,169,107,0.32);

}


.advantage-number {

    margin-bottom: 27px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.advantage-card h3 {

    margin-bottom: 14px;

    color: var(--white);

    font-size: 14px;

    font-weight: 700;

}


.advantage-card p {

    color: var(--text);

    font-size: 13px;

    line-height: 1.85;

}


.why-cta {

    max-width: 700px;

    margin:
        60px auto 0;

    text-align: center;

}


.why-cta p {

    margin-bottom: 25px;

    color: var(--text);

    font-size: 15px;

}


/* =========================================================
   PROJECTS
========================================================= */

.projects-grid {

    max-width: 1120px;

    margin:
        65px auto 0;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

}


.project-card {

    overflow: hidden;

    background:
        rgba(255,255,255,0.018);

    border:
        1px solid var(--border);

    border-radius:
        20px;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;

}


.project-card:first-child {

    grid-column:
        span 2;

}


.project-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(200,169,107,0.38);

    box-shadow:
        var(--shadow);

}


.project-visual {

    position: relative;

    height: 380px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}


.project-aurea {

    background:

        radial-gradient(
            circle at 50% 45%,
            rgba(200,169,107,0.18),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #151515,
            #070707 65%,
            #171208
        );

}


.project-velora {

    background:

        radial-gradient(
            circle at 70% 30%,
            rgba(255,255,255,0.08),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #151515,
            #080808
        );

}


.project-nexora {

    background:

        radial-gradient(
            circle at 30% 50%,
            rgba(200,169,107,0.09),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #090909,
            #151515
        );

}


.project-overlay {

    position: absolute;

    top: 25px;

    left: 25px;

    right: 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.project-number {

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.project-category {

    color:
        rgba(245,242,235,0.52);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1.8px;

}


.project-logo {

    color: var(--white);

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(31px, 5vw, 50px);

    font-weight: 400;

    letter-spacing: 8px;

    transition:
        color 0.5s ease,
        letter-spacing 0.5s ease,
        transform 0.5s ease;

}


.project-card:hover .project-logo {

    color: var(--gold-light);

    letter-spacing: 10px;

    transform:
        scale(1.035);

}


.project-info {

    padding:
        25px 27px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid var(--white-border);

}


.project-type {

    margin-bottom: 6px;

    color: var(--gold);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

}


.project-info h3 {

    color: var(--white);

    font-size: 18px;

    font-weight: 600;

}


.project-arrow {

    width: 40px;

    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(200,169,107,0.25);

    border-radius: 50%;

    color: var(--gold-light);

    transition:
        transform 0.3s ease,
        background 0.3s ease;

}


.project-card:hover .project-arrow {

    transform:
        translate(3px,-3px);

    background:
        rgba(200,169,107,0.08);

}


.projects-note {

    margin:
        55px auto 0;

    text-align: center;

}


.projects-note p {

    margin-bottom: 23px;

    color: var(--text);

    font-size: 15px;

}


/* =========================================================
   PROCESS
========================================================= */

.process-grid {

    max-width: 1120px;

    margin:
        65px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.process-card {

    padding:
        38px 30px;

    background:
        rgba(255,255,255,0.018);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;

}


.process-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(200,169,107,0.35);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,0.25);

}


.process-number {

    margin-bottom: 28px;

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.process-card h3 {

    margin-bottom: 15px;

    color: var(--white);

    font-size: 15px;

    font-weight: 700;

}


.process-card p {

    color: var(--text);

    font-size: 13px;

    line-height: 1.85;

}


.process-cta {

    margin:
        55px auto 0;

    text-align: center;

}


.process-cta p {

    margin-bottom: 23px;

    color: var(--text);

}


/* =========================================================
   PRICING
========================================================= */

.pricing-section {

    max-width: 1280px;

}


.pricing-grid {

    max-width: 1140px;

    margin:
        65px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    align-items: stretch;

}


.pricing-card {

    position: relative;

    padding:
        40px 32px 34px;

    display: flex;

    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.038),
            rgba(255,255,255,0.012)
        );

    border:
        1px solid var(--border);

    border-radius:
        20px;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;

}


.pricing-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(200,169,107,0.4);

    box-shadow:
        0 28px 70px
        rgba(0,0,0,0.34);

}


.pricing-card.featured {

    border-color:
        rgba(200,169,107,0.5);

    background:

        linear-gradient(
            145deg,
            rgba(200,169,107,0.075),
            rgba(255,255,255,0.018)
        );

    box-shadow:
        0 18px 65px
        rgba(200,169,107,0.055);

}


.pricing-card.featured::before {

    content: "";

    position: absolute;

    top: 0;
    left: 12%;
    right: 12%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );

}


.pricing-label {

    margin-bottom: 16px;

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.8px;

}


.pricing-badge {

    align-self: flex-start;

    margin-bottom: 18px;

    padding:
        6px 11px;

    border:
        1px solid
        rgba(200,169,107,0.35);

    border-radius: 50px;

    color: var(--gold-light);

    background:
        rgba(200,169,107,0.035);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.6px;

}


.pricing-card h3 {

    margin-bottom: 16px;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 48px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;

}


.pricing-card h3 .decimal {

    font-size: 27px;

    letter-spacing: -1px;

}


.pricing-card h3 .currency {

    margin-left: 4px;

    color: var(--gold-light);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 17px;

    font-weight: 600;

    letter-spacing: 0;

}


.pricing-price-line {

    width: 100%;

    height: 1px;

    margin-bottom: 24px;

    background:
        linear-gradient(
            90deg,
            rgba(200,169,107,0.35),
            transparent
        );

}


.pricing-description {

    min-height: 78px;

    margin-bottom: 28px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.8;

}


.pricing-card ul {

    flex: 1;

    margin:
        0 0 32px;

    padding: 0;

    list-style: none;

}


.pricing-card li {

    position: relative;

    margin-bottom: 14px;

    padding-left: 23px;

    color: #aaa69d;

    font-size: 12.5px;

    line-height: 1.6;

}


.pricing-card li::before {

    content: "✓";

    position: absolute;

    left: 0;

    top: 0;

    color: var(--gold);

    font-size: 12px;

    font-weight: 700;

}


.pricing-card li strong {

    color: var(--white);

}


.pricing-card .button {

    width: 100%;

}


/* =========================================================
   PRICING TRUST
========================================================= */

.pricing-trust {

    max-width: 1140px;

    margin:
        45px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border:
        1px solid var(--border);

    border-radius:
        16px;

    overflow: hidden;

}


.trust-item {

    min-height: 120px;

    padding:
        25px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        rgba(255,255,255,0.012);

}


.trust-item + .trust-item {

    border-left:
        1px solid var(--border);

}


.trust-item strong {

    margin-bottom: 8px;

    color: var(--gold-light);

    font-size: 10px;

    letter-spacing: 1.8px;

}


.trust-item span {

    color: var(--muted);

    font-size: 12px;

    line-height: 1.65;

}


/* =========================================================
   QUOTE BANNER
========================================================= */

.quote-banner {

    max-width: 1140px;

    margin:
        30px auto 0;

    padding:
        34px 38px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    background:

        radial-gradient(
            circle at 20% 50%,
            rgba(200,169,107,0.09),
            transparent 35%
        ),

        rgba(255,255,255,0.018);

    border:
        1px solid
        rgba(200,169,107,0.2);

    border-radius:
        18px;

}


.quote-banner-title {

    margin-bottom: 8px;

    color: var(--white);

    font-family:
        Georgia,
        serif;

    font-size: 22px;

}


.quote-banner-title span {

    color: var(--gold-light);

}


.quote-banner-text {

    max-width: 650px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   PAYMENT INFO
========================================================= */

.payment-info {

    max-width: 900px;

    margin:
        38px auto 0;

    padding:
        28px 30px;

    text-align: center;

    background:
        rgba(200,169,107,0.025);

    border:
        1px solid
        rgba(200,169,107,0.13);

    border-radius:
        14px;

}


.payment-info p:first-child {

    margin-bottom: 12px;

    color: var(--gold-light);

    font-size: 13px;

}


.payment-info p:not(:first-child) {

    color: var(--text);

    font-size: 12.5px;

    line-height: 1.85;

}


.payment-info strong {

    color: var(--white);

}


.payment-note {

    display: block;

    margin-top: 13px;

    color: var(--muted);

    font-size: 10px;

}


/* =========================================================
   PRICING NOTE
========================================================= */

.pricing-note {

    margin:
        32px auto 0;

    text-align: center;

}


.pricing-note p {

    color: var(--text);

    font-size: 13px;

}


.pricing-note strong {

    color: var(--gold-light);

}


/* =========================================================
   CONTACT
========================================================= */

.contact {

    padding:
        145px 30px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 50% 15%,
            rgba(200,169,107,0.085),
            transparent 31%
        ),

        var(--bg-soft);

    border-top:
        1px solid rgba(255,255,255,0.04);

}


.contact-content {

    max-width: 900px;

    margin: auto;

    text-align: center;

}


.contact-content .tag {

    margin-bottom: 20px;

}


.contact-content h2 {

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(38px, 5vw, 64px);

    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -2px;

}


.contact-content h2 span {

    display: block;

    color: var(--gold-light);

}


.contact-content > p:not(.tag) {

    max-width: 650px;

    margin:
        25px auto 48px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.85;

}


/* =========================================================
   FORM
========================================================= */

.contact-form {

    max-width: 760px;

    margin: auto;

    text-align: left;

}


.form-row {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

}


.form-group {

    margin-bottom: 21px;

}


.form-group label {

    display: block;

    margin-bottom: 9px;

    color: var(--gold);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    padding:
        16px 17px;

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid
        rgba(255,255,255,0.09);

    border-radius:
        10px;

    outline: none;

    color: var(--white);

    font-size: 13px;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color:
        rgba(183,178,168,0.45);

}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color:
        rgba(200,169,107,0.58);

    background:
        rgba(200,169,107,0.025);

    box-shadow:
        0 0 0 3px
        rgba(200,169,107,0.045);

}


.form-group select {

    appearance: none;

    cursor: pointer;

}


.form-group select option {

    background: #101010;

    color: var(--white);

}


.form-group textarea {

    min-height: 165px;

    resize: vertical;

}


.form-footer {

    margin-top: 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


.form-footer p {

    color: var(--muted);

    font-size: 11px;

}


.form-footer strong {

    color: var(--gold-light);

}


/* =========================================================
   FOOTER
========================================================= */

footer {

    padding:
        50px 35px;

    background:
        #050505;

    border-top:
        1px solid
        rgba(255,255,255,0.05);

}


.footer-content {

    max-width: 1260px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.footer-content strong {

    color: var(--white);

    font-size: 17px;

    letter-spacing: 2px;

}


.footer-content p {

    color: var(--muted);

    font-size: 11px;

}


.footer-links {

    display: flex;

    align-items: center;

    gap: 22px;

    flex-wrap: wrap;

}


.footer-links a {

    color: var(--muted);

    font-size: 10px;

    transition:
        color 0.25s ease;

}


.footer-links a:hover {

    color: var(--gold-light);

}


/* =========================================================
   LOGO ANIMATION
========================================================= */

.logo-click {

    animation:
        logoPremium 0.55s ease;

}


@keyframes logoPremium {

    0% {

        transform:
            scale(1);

    }

    45% {

        transform:
            scale(1.07);

    }

    100% {

        transform:
            scale(1);

    }

}


/* =========================================================
   MOBILE — 900PX
========================================================= */

@media (max-width: 900px) {


    .navbar {

        min-height: 78px;

        padding:
            0 20px;

    }


    .nav-links {

        display: none;

        position: absolute;

        top: 78px;

        left: 15px;
        right: 15px;

        padding:
            25px;

        flex-direction: column;

        gap: 18px;

        background:
            rgba(10,10,10,0.98);

        border:
            1px solid var(--border);

        border-radius:
            16px;

        box-shadow:
            0 25px 60px
            rgba(0,0,0,0.5);
z-index: 1001;
    }


    .nav-links.mobile-open {

        display: flex;

    }


    .nav-links a {

        font-size: 12px;

    }


    .menu-dot {

        display: none;

    }


    .nav-button {

        display: none;

    }


    .menu-toggle {

        display: flex;

        align-items: center;

        justify-content: center;

    }


    .services {

        grid-template-columns:
            1fr;

    }


    .advantages {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .pricing-grid {

        grid-template-columns:
            1fr;

        max-width: 600px;

    }


    .pricing-card {

        min-height: auto;

    }


    .pricing-description {

        min-height: auto;

    }


    .pricing-trust {

        grid-template-columns:
            1fr;

        max-width: 600px;

    }


    .trust-item + .trust-item {

        border-left: none;

        border-top:
            1px solid var(--border);

    }


    .quote-banner {

        max-width: 600px;

        flex-direction: column;

        align-items: flex-start;

    }


    .quote-banner .button {

        width: 100%;

    }


    .process-grid {

        grid-template-columns:
            1fr;

    }


    .project-card:first-child {

        grid-column:
            span 1;

    }


    .footer-content {

        flex-direction: column;

        text-align: center;

    }


    .footer-links {

        justify-content: center;

    }

}


/* =========================================================
   MOBILE — 600PX
========================================================= */

@media (max-width: 600px) {


    .section {

        padding:
            95px 20px;

    }


    .hero {

        min-height: 100svh;

        padding:
            130px 20px
            85px;

    }


    .hero h1 {

        font-size: 41px;

        letter-spacing: -1.7px;

    }


    .hero-text {

        font-size: 14px;

        line-height: 1.8;

    }


    .hero-buttons {

        flex-direction: column;

        width: 100%;

    }


    .hero-buttons .button {

        width: 100%;

    }


    .section-title h2 {

        font-size: 35px;

    }


    .section-title > p:last-child {

        font-size: 13.5px;

    }


    .about {

        padding:
            105px 20px;

    }


    .about-content h2 {

        font-size: 40px;

    }


    .why {

        padding:
            95px 20px;

    }


    .advantages {

        grid-template-columns:
            1fr;

    }


    .projects-grid {

        grid-template-columns:
            1fr;

    }


    .project-visual {

        height: 275px;

    }


    .project-logo {

        font-size: 29px;

        letter-spacing: 5px;

    }


    .project-card:hover .project-logo {

        letter-spacing: 7px;

    }


    .project-info {

        padding:
            22px;

    }


    .form-row {

        grid-template-columns:
            1fr;

        gap: 0;

    }


    .form-footer {

        flex-direction: column;

        align-items: stretch;

        text-align: center;

    }


    .form-footer .button {

        width: 100%;

    }


    .contact {

        padding:
            105px 20px;

    }


    .contact-content h2 {

        font-size: 42px;

    }


    .pricing-card {

        padding:
            34px 26px 29px;

    }


    .pricing-card h3 {

        font-size: 44px;

    }


    .quote-banner {

        padding:
            28px 24px;

    }


    .quote-banner-title {

        font-size: 20px;

    }


    .payment-info {

        padding:
            24px 20px;

    }


    footer {

        padding:
            40px 20px;

    }

}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            0.01ms !important;

    }

}.contact-form button[type="submit"] {
    cursor: pointer;
}

.contact-form button[type="submit"]:disabled {
    cursor: not-allowed;
}