﻿/* ==========================================
   FASADEO LANDING 2026
==========================================*/

:root {
    --gold: #BE9A52;
    --gold-dark: #9c7b3f;
    --gold-light: #efe6d4;
    --text: #2a2a2a;
    --text-light: #6b6b6b;
    --border: #e7e0d5;
    --white: #fff;
    --bg: #f8f6f2;
    --radius: 22px;
    --shadow: 0 15px 45px rgba(0,0,0,.08);
    --transition: .28s;
    font-family: Inter, Segoe UI, sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
}

.landing-page {
    width: 100%;
    min-height: 100vh;
    padding: 70px 40px;
    background: radial-gradient(circle at top left,#faf3e8,transparent 40%), radial-gradient(circle at bottom right,#f2e8d5,transparent 45%), #f8f6f2;
}

.hero {
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: 620px 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--gold-dark);
    width: max-content;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 66px;
    line-height: 1.05;
    font-weight: 800;
    margin: 0;
    letter-spacing: -2px;
}

    .hero-title span {
        color: var(--gold);
        display: block;
    }

.hero-text {
    margin-top: 26px;
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 560px;
}

.hero-benefits {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-bottom: 42px;
}

.benefit {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
    transition: .3s;
}

    .benefit:hover {
        transform: translateY(-5px);
    }

.benefit-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f5efe5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.benefit strong {
    display: block;
    font-size: 16px;
}

.benefit small {
    display: block;
    margin-top: 4px;
    color: #777;
    font-size: 13px;
}

.hero-form {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

    .field label {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 10px;
    }

.input {
    height: 58px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid var(--border);
    font-size: 16px;
    transition: .25s;
    background: #fff;
    width: 100%;
}

    .input:focus {
        outline: none;
        border-color: var(--gold);
        box-shadow: 0 0 0 4px rgba(190,154,82,.15);
    }

.phone-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 14px;
}

.country {
    height: 58px;
    border-radius: 14px;
    padding: 0 12px;
    border: 1px solid var(--border);
    background: #fff;
}

.checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.hero-button {
    margin-top: 30px;
    width: 100%;
    height: 62px;
    border: none;
    border-radius: 16px;
    background: var(--gold);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(190,154,82,.35);
}

    .hero-button:hover {
        background: var(--gold-dark);
        transform: translateY(-2px);
    }

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.house-wrapper {
    position: relative;
    width: 100%;
    max-width: 720px;
}

.house-image {
    width: 100%;
    display: block;
}

.hotspot {
    position: absolute;
    background: #fff;
    padding: 12px 20px;
    border-radius: 999px;
    box-shadow: var(--shadow);
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: .25s;
    cursor: default;
}

    .hotspot:hover {
        transform: scale(1.05);
    }

    .hotspot::before {
        content: "";
        width: 10px;
        height: 10px;
        background: var(--gold);
        border-radius: 50%;
        display: inline-block;
        margin-right: 10px;
    }

.hotspot-top {
    top: 8%;
    left: 8%;
}

.hotspot-facade {
    left: -20px;
    top: 45%;
}

.hotspot-floor {
    bottom: 12%;
    left: 18%;
}

.hotspot-roof {
    top: 18%;
    right: -30px;
}

.hotspot-plinth {
    bottom: 8%;
    right: 8%;
}

@media(max-width:1200px) {

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        order: -1;
    }

    .hero-title {
        font-size: 52px;
    }
}

@media(max-width:768px) {

    .landing-page {
        padding: 30px 20px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .row2 {
        grid-template-columns: 1fr;
    }

    .phone-row {
        grid-template-columns: 1fr;
    }

    .hero-form {
        padding: 25px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hotspot {
        display: none;
    }
}


/* ==========================================
   PREMIUM FORM
==========================================*/

.hero-form {
    position: relative;
    overflow: hidden;
}

    .hero-form::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: linear-gradient( 90deg, #C79B47, #D8B56D, #E5C98E );
    }

.field {
    position: relative;
}

    .field label {
        color: #444;
        font-size: 14px;
        margin-bottom: 8px;
    }

.input,
.country {
    transition: border .25s, box-shadow .25s, transform .25s;
}

    .input:hover,
    .country:hover {
        border-color: #ccb27a;
    }

    .input:focus,
    .country:focus {
        transform: translateY(-1px);
    }

.validation-message {
    margin-top: 6px;
    color: #d64a4a;
    font-size: 13px;
}

.validation-summary {
    margin-bottom: 25px;
    border-radius: 15px;
    padding: 18px;
    background: #fff4f4;
    border: 1px solid #ffcbcb;
}

.alert-danger {
    border-radius: 14px;
    padding: 15px;
}

.checkbox {
    margin-top: 25px;
}

    .checkbox input {
        margin-top: 3px;
        width: 18px;
        height: 18px;
        accent-color: #BE9A52;
    }

    .checkbox span {
        line-height: 1.6;
    }


/* ==========================================
   BUTTON
==========================================*/

.hero-button {
    position: relative;
    overflow: hidden;
}

    .hero-button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -130%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,.35), transparent );
        transition: .6s;
    }

    .hero-button:hover::before {
        left: 130%;
    }

    .hero-button:active {
        transform: scale(.98);
    }


/* ==========================================
   FEATURE ANIMATION
==========================================*/

.benefit {
    animation: fadeUp .6s ease;
}

    .benefit:nth-child(2) {
        animation-delay: .1s;
    }

    .benefit:nth-child(3) {
        animation-delay: .2s;
    }

@keyframes fadeUp {

    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}


/* ==========================================
   HERO DECORATION
==========================================*/

.hero {
    position: relative;
}

    .hero::before {
        content: "";
        position: absolute;
        right: 120px;
        top: -70px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(190,154,82,.06);
        filter: blur(20px);
        pointer-events: none;
    }

    .hero::after {
        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(190,154,82,.05);
        filter: blur(40px);
        pointer-events: none;
    }


/* ==========================================
   HOUSE CARD
==========================================*/

.house-wrapper {
    background: #fff;
    border-radius: 35px;
    padding: 35px;
    box-shadow: 0 30px 60px rgba(0,0,0,.08);
    border: 1px solid #ece3d5;
}


/* ==========================================
   HOUSE IMAGE
==========================================*/

.house-image {
    transition: transform .45s;
}

.house-wrapper:hover .house-image {
    transform: scale(1.02);
}


/* ==========================================
   HOTSPOTS
==========================================*/

.hotspot {
    z-index: 2;
}

    .hotspot::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 12px;
        height: 12px;
        margin-left: -6px;
        margin-top: -6px;
        border-radius: 50%;
        background: #C79B47;
        animation: pulse 2s infinite;
        opacity: .35;
    }

@keyframes pulse {

    0% {
        transform: scale(1);
        opacity: .35;
    }

    70% {
        transform: scale(2.4);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}


/* ==========================================
   SCROLL
==========================================*/

html {
    scroll-behavior: smooth;
}


/* ==========================================
   INPUT PLACEHOLDER
==========================================*/

::placeholder {
    color: #b8b8b8;
}


/* ==========================================
   SELECTION
==========================================*/

::selection {
    background: #C79B47;
    color: white;
}

/* ==========================================
   SECTION SPACING
==========================================*/

.hero-left > * {
    position: relative;
    z-index: 2;
}

.hero-right {
    position: relative;
    z-index: 2;
}


/* ==========================================
   PREMIUM CARD EFFECT
==========================================*/

.hero-form,
.house-wrapper,
.benefit {
    backdrop-filter: blur(10px);
    background: linear-gradient( 180deg, rgba(255,255,255,.98), rgba(255,255,255,.95) );
}


    /* ==========================================
   FORM GRID
==========================================*/

    .hero-form form {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

.field {
    margin: 0;
}

    .field label {
        color: #454545;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .05em;
    }


/* ==========================================
   INPUT ICON SPACE
==========================================*/

.input {
    padding-left: 18px;
    padding-right: 18px;
    font-weight: 500;
}

    .input:focus {
        background: white;
    }


/* ==========================================
   AUTOCOMPLETE
==========================================*/

.autocomplete-wrapper {
    position: relative;
}


/* ==========================================
   CHECKBOX
==========================================*/

.checkbox {
    padding: 14px;
    border-radius: 14px;
    background: #faf8f4;
    border: 1px solid #ece5d8;
}

    .checkbox:hover {
        border-color: #c89a48;
    }


/* ==========================================
   BUTTON
==========================================*/

.hero-button {
    font-size: 19px;
    letter-spacing: .02em;
}

    .hero-button:hover {
        box-shadow: 0 20px 45px rgba(190,154,82,.35);
    }


/* ==========================================
   BENEFIT CARD
==========================================*/

.benefit {
    min-height: 92px;
}

    .benefit strong {
        color: #222;
    }

    .benefit small {
        color: #777;
    }


/* ==========================================
   HOUSE LABELS
==========================================*/

.hotspot {
    box-shadow: 0 10px 25px rgba(0,0,0,.10);
}

    .hotspot:hover {
        background: white;
        border-color: #C79B47;
    }


/* ==========================================
   HOUSE FLOAT
==========================================*/

.house-image {
    animation: houseFloat 5s ease-in-out infinite;
}

@keyframes houseFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* ==========================================
   HERO FADE
==========================================*/

.hero-title,
.hero-text,
.hero-badge {
    animation: fadeIn .8s ease;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}


/* ==========================================
   SCROLLBAR
==========================================*/

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f3efe8;
}

::-webkit-scrollbar-thumb {
    background: #c79b47;
    border-radius: 999px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #ab8338;
    }


/* ==========================================
   RESPONSIVE IMPROVEMENTS
==========================================*/

@media(max-width:1200px) {

    .hero {
        gap: 50px;
    }

    .hero-title {
        font-size: 54px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }
}


@media(max-width:992px) {

    .house-wrapper {
        max-width: 520px;
    }

    .hero-right {
        margin-bottom: 25px;
    }
}


@media(max-width:768px) {

    .hero {
        padding-top: 10px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-form {
        padding: 20px;
    }

    .benefit {
        min-height: auto;
    }
}


@media(max-width:480px) {

    .hero-title {
        font-size: 30px;
    }

    .hero-badge {
        width: 100%;
        justify-content: center;
    }

    .hero-button {
        height: 54px;
        font-size: 17px;
    }

    .form-error {
        padding: 12px 14px;
        border: 1px solid #e9a5a5;
        border-radius: 12px;
        background: #fff3f3;
        color: #a82323;
        font-size: 14px;
        font-weight: 600;
    }
}