:root {
    --color-bg: #050816;
    --color-bg-alt: #0b1020;
    --color-card: #12162a;
    --color-accent: #f5d06f;
    --color-accent-soft: rgba(245, 208, 111, 0.16);
    --color-text: #f7f7ff;
    --color-text-muted: #b9bed8;
    --color-border-soft: rgba(255, 255, 255, 0.06);
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.7);
    --radius-lg: 20px;
    --radius-xl: 26px;
    --transition-fast: 0.2s ease;
    --transition-med: 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #141c3b 0, #050816 45%, #02030a 100%);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4 {
    margin: 0 0 0.75rem;
    letter-spacing: 0.04em;
}

p {
    margin: 0 0 0.75rem;
    line-height: 1.6;
}

ul,
ol {
    margin: 0;
    padding-left: 1.3rem;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: radial-gradient(circle at top, #141c3b 0, #050816 55%, #02030a 100%);
}

.section-narrow {
    max-width: 720px;
}

.section h2 {
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 1.75rem;
}

.section > .container > p,
.section-narrow > p {
    color: var(--color-text-muted);
    font-size: 0.98rem;
}

/* Header */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    background: linear-gradient(to bottom, rgba(5, 8, 22, 0.96), rgba(5, 8, 22, 0.75), transparent);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.site-header.scrolled {
    background: rgba(5, 8, 22, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0.2rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(245, 208, 111, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, #2e3250, #050816);
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.logo-text {
    font-weight: 500;
    font-size: 0.98rem;
    color: var(--color-text-muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.nav-link {
    position: relative;
    padding: 0.2rem 0;
    color: var(--color-text-muted);
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f5d06f, #f7f0c9);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-text);
    transform: translateY(-1px);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 208, 111, 0.6);
    background: radial-gradient(circle at 0 0, rgba(245, 208, 111, 0.22), transparent);
}

.nav-cta:hover {
    background: rgba(245, 208, 111, 0.16);
    transform: translateY(-1px);
}

/* Hero */

.hero {
    padding-top: 6.5rem;
    padding-bottom: 4.75rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 540px;
}

.hero-cta-group {
    margin-top: 1.7rem;
}

.hero-note {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    max-width: 420px;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-orbit {
    position: relative;
    width: 300px;
    height: 300px;
}

.orbit-circle {
    position: absolute;
    border-radius: 999px;
    border: 1px dashed rgba(245, 208, 111, 0.23);
    box-shadow: 0 0 40px rgba(245, 208, 111, 0.05);
}

.orbit-1 {
    inset: 20px;
    border-style: solid;
    border-color: rgba(245, 208, 111, 0.14);
}

.orbit-2 {
    inset: 0;
    border-color: rgba(185, 190, 216, 0.25);
}

.orbit-3 {
    inset: 60px;
    border-color: rgba(91, 97, 150, 0.65);
}

.hero-card {
    position: absolute;
    inset: auto 12px 18px 12px;
    border-radius: var(--radius-xl);
    padding: 1.3rem 1.4rem 1.1rem;
    background: radial-gradient(circle at top left, #323457, #11152a);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card h2 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.hero-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.9rem;
}

.hero-price-highlight {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-accent);
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(5, 8, 22, 0.85);
    border: 1px solid rgba(245, 208, 111, 0.42);
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background var(--transition-med), transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.cta-main {
    background: linear-gradient(120deg, #f5d06f, #f7f0c9);
    color: #1a1320;
    box-shadow: 0 16px 40px rgba(245, 208, 111, 0.3);
}

.cta-main:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 55px rgba(245, 208, 111, 0.38);
}

.cta-main:active {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(245, 208, 111, 0.3);
    opacity: 0.95;
}

.cta-secondary {
    background: rgba(245, 208, 111, 0.16);
    color: var(--color-text);
    border: 1px solid rgba(245, 208, 111, 0.55);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
}

.cta-secondary:hover {
    background: rgba(245, 208, 111, 0.22);
    transform: translateY(-1px);
}

.cta-large {
    width: 100%;
    margin-top: 0.75rem;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
}

/* Cards */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.02), rgba(5, 8, 22, 0.98));
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.3rem 1.4rem;
    border: 1px solid var(--color-border-soft);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: -60%;
    background: radial-gradient(circle at top right, rgba(245, 208, 111, 0.16), transparent 55%);
    opacity: 0;
    transition: opacity var(--transition-med);
    pointer-events: none;
}

.card:hover::before {
    opacity: 1;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.card-intro {
    font-size: 0.93rem;
    color: var(--color-text-muted);
    margin-bottom: 0.7rem;
}

.card-list {
    list-style: none;
    padding-left: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.card-list li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.4rem;
}

.card-list li::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--color-accent);
}

/* Pricing */

.pricing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
    margin-top: 2.2rem;
}

.pricing-card,
.steps-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.02), rgba(5, 8, 22, 0.98));
    border-radius: var(--radius-lg);
    padding: 1.7rem 1.6rem 1.5rem;
    border: 1px solid var(--color-border-soft);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.pricing-card h3,
.steps-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.9rem;
}

.pricing-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 0.3rem;
}

.pricing-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-left: 0.4rem;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.7rem;
}

.pricing-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.pricing-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
}

.pricing-list li::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0.48rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--color-accent-soft);
    border: 1px solid rgba(245, 208, 111, 0.7);
}

.steps-list {
    list-style: none;
    padding-left: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.steps-list li {
    margin-bottom: 0.9rem;
    padding-left: 0.1rem;
}

.step-title {
    display: block;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.1rem;
}

.legal-mention {
    font-size: 0.78rem;
    color: rgba(185, 190, 216, 0.85);
    margin-top: 1.7rem;
    text-align: center;
}

/* Reassurance */

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 1.8rem;
}

.reassurance-item {
    padding: 1.3rem 1.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-soft);
    background: rgba(10, 13, 31, 0.96);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65);
}

.reassurance-item h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.reassurance-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Contact */

.section-contact {
    position: relative;
    overflow: hidden;
}

.section-contact::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top, rgba(245, 208, 111, 0.14), transparent 60%);
    opacity: 0.4;
    pointer-events: none;
}

.section-contact > .container {
    position: relative;
    z-index: 1;
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 1.8rem;
    margin-top: 1.8rem;
    padding: 1.7rem 1.6rem 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(10, 13, 31, 0.97);
    border: 1px solid rgba(245, 208, 111, 0.28);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85);
}

.contact-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-price {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.contact-text {
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

.contact-list {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.contact-list li {
    margin-bottom: 0.3rem;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
}

.contact-highlight {
    font-size: 0.93rem;
    color: var(--color-text-muted);
}

.contact-small {
    font-size: 0.8rem;
    color: rgba(185, 190, 216, 0.9);
}

/* Footer */

.site-footer {
    padding: 2.3rem 0 2.1rem;
    background: #050816;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 2rem;
}

.footer-inner {
    max-width: 840px;
    text-align: center;
}

.footer-brand {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.6rem;
}

.footer-legal {
    font-size: 0.75rem;
    color: rgba(185, 190, 216, 0.9);
}

/* Responsive */

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.2fr);
    }

    .hero-visual {
        order: -1;
        margin-bottom: 1.5rem;
    }

    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-card {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 780px) {
    .main-nav {
        display: none;
    }

    .site-header {
        padding-bottom: 0.2rem;
    }

    .hero {
        padding-bottom: 4rem;
    }

    .cards-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .reassurance-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-card {
        padding: 1.5rem 1.3rem;
    }

    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.1rem;
    }

    .hero-card {
        inset: auto 6px 10px 6px;
    }

    .cta-main {
        width: 100%;
    }

    .pricing-card,
    .steps-card {
        padding: 1.4rem 1.3rem 1.3rem;
    }
}

.pulse {
    transform: translateY(-2px);
    box-shadow: 0 22px 60px rgba(245, 208, 111, 0.45);
}

.marbella-photo-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

.marbella-photo {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 22px rgba(0,0,0,0.20);
}

