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

:root {
    --bg-main: #050819;
    --bg-surface: #101529;
    --bg-surface-soft: #181f3a;
    --bg-accent: #f6b347;
    --bg-accent-soft: #ffe2b3;
    --bg-muted: #f4f1ff;
    --text-main: #f8f7ff;
    --text-muted: #b8bcff;
    --text-dark: #12121f;
    --border-soft: rgba(255,255,255,0.08);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-soft: 0 18px 45px rgba(0,0,0,0.35);
    --shadow-light: 0 10px 28px rgba(3,7,18,0.3);
    --container-max: 1120px;
}

body {
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at top left, #18213f 0, #050819 52%, #02030a 100%);
    color: var(--text-main);
    line-height: 1.7;
}

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

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

main {
    min-height: 60vh;
}

/* Layout */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4.5rem 0;
}

.bg-dark {
    background: linear-gradient(135deg, #060818 0, #101529 60%, #050819 100%);
}

.bg-light {
    background-color: #f8f6ff;
    color: var(--text-dark);
}

.bg-muted {
    background: linear-gradient(135deg, #f4f1ff 0, #e8f3ff 100%);
    color: var(--text-dark);
}

.bg-accent {
    background: radial-gradient(circle at top right, #ffdf95 0, #f6b347 40%, #101529 100%);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 8, 25, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.9rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: conic-gradient(from 160deg, #f6b347, #ff7a5c, #9d8bff, #f6b347);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.18);
}

.logo-text {
    font-size: 0.98rem;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.nav-link {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    color: var(--text-muted);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
    background: rgba(255,255,255,0.06);
    color: var(--text-main);
    transform: translateY(-1px);
}

.nav-link.is-active {
    background: rgba(246,179,71,0.16);
    color: var(--bg-accent-soft);
}

.header-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.header-phone i {
    color: var(--bg-accent);
    margin-right: 0.3rem;
}

/* Hero */

.hero {
    padding: 4.5rem 0 4rem;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 10% 0, rgba(168, 140, 255, 0.18) 0, transparent 60%), radial-gradient(circle at 90% 20%, rgba(246, 179, 71, 0.12) 0, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.75rem;
    align-items: center;
    z-index: 1;
}

.hero-text {
    max-width: 620px;
}

.eyebrow {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bg-accent-soft);
    margin-bottom: 0.8rem;
}

.hero-text h1 {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 1.1rem;
}

.hero-lead {
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.5rem 0 1.3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
    background: linear-gradient(135deg, #f6b347, #ff7b5c);
    color: #180f07;
    box-shadow: var(--shadow-light);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.45);
}

.btn.ghost {
    background: rgba(16,21,41,0.6);
    border-color: rgba(255,255,255,0.12);
    color: var(--text-main);
}

.btn.ghost:hover {
    background: rgba(16,21,41,0.9);
    transform: translateY(-1px);
}

.btn.full-width {
    width: 100%;
}

.hero-note {
    margin-top: 1.5rem;
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(10, 13, 33, 0.95);
    border: 1px solid rgba(255,255,255,0.07);
    display: flex;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-note-marker {
    width: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f6b347, #ff7b5c);
}

.hero-media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #000;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 0.9rem;
    left: 0.9rem;
    right: 0.9rem;
    border-radius: var(--radius-md);
    padding: 0.6rem 0.8rem;
    background: rgba(5, 8, 25, 0.85);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    backdrop-filter: blur(12px);
}

.hero-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, #ffe6b6 0, #f6b347 45%, #ff7b5c 100%);
    color: #1b1020;
    font-size: 1.1rem;
}

.hero-badge-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    color: var(--text-muted);
}

.hero-badge-value {
    font-size: 0.86rem;
}

.hero-stat-card {
    margin-left: auto;
    margin-right: 0.3rem;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(4,7,24,0.96), rgba(17,25,52,0.96));
    border: 1px solid rgba(255,255,255,0.08);
    display: grid;
    gap: 0.2rem;
}

.hero-stat-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.hero-stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bg-accent-soft);
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Sections */

.section-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.section-header {
    max-width: 700px;
}

.section-eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #f6b347;
    margin-bottom: 0.6rem;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.7rem;
    color: inherit;
}

.section-intro {
    font-size: 0.98rem;
    color: var(--text-muted);
}

.cards-grid.three {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.info-card {
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.3rem;
    background: rgba(10,16,35,0.96);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

.info-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

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

.info-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    background: radial-gradient(circle at 30% 0, #ffe9c5 0, #f6b347 45%, #ff7b5c 100%);
    color: #1e1220;
}

/* Split sections */

.section-split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
    gap: 2.1rem;
    align-items: center;
}

.section-split.reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
}

.section-text p {
    margin-bottom: 1rem;
    font-size: 0.96rem;
}

.section-text p:last-child {
    margin-bottom: 0;
}

.section-media {
    display: flex;
    justify-content: center;
}

.media-card {
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 14px 32px rgba(18, 23, 56, 0.25);
    overflow: hidden;
    color: var(--text-dark);
}

.media-card img {
    width: 100%;
    height: auto;
}

.media-note {
    padding: 0.9rem 1.1rem;
    font-size: 0.9rem;
    background: #f4f1ff;
}

.media-card-stack {
    position: relative;
    overflow: visible;
}

.media-card-stack img {
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 40px rgba(5, 8, 25, 0.55);
}

.media-overlay {
    position: absolute;
    inset: auto 0 -1.2rem 0;
    margin: 0 auto;
    width: 88%;
    border-radius: var(--radius-lg);
    background: #ffffff;
    padding: 0.9rem 1rem;
    box-shadow: 0 14px 30px rgba(14, 18, 50, 0.35);
    font-size: 0.86rem;
    color: var(--text-dark);
}

.media-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    background: #101529;
    color: #f7f7ff;
    margin-bottom: 0.4rem;
}

/* Steps */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.step-card {
    border-radius: var(--radius-lg);
    padding: 1.3rem 1.2rem;
    background: rgba(9, 12, 32, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.94rem;
    color: var(--text-muted);
}

.step-card h3 {
    font-size: 1.02rem;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.step-number {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(246, 179, 71, 0.18);
    color: var(--bg-accent-soft);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Additional / location */

.section-additional {
    color: var(--text-dark);
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 1.5rem;
}

.location-card {
    border-radius: var(--radius-lg);
    background: #ffffff;
    padding: 1.3rem 1.25rem;
    box-shadow: 0 14px 32px rgba(16, 24, 40, 0.12);
    font-size: 0.95rem;
}

.location-card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
    color: #1c1b2f;
}

.location-aside {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.location-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: #101529;
    color: var(--text-main);
    font-size: 0.82rem;
}

.location-pill i {
    color: var(--bg-accent);
}

.location-note {
    font-size: 0.9rem;
}

.location-image {
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.28);
}

/* CTA and form */

.section-cta {
    background: radial-gradient(circle at top, #18213f 0, #050819 45%, #02030a 100%);
}

.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: flex-start;
}

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

.cta-form-wrapper {
    border-radius: 20px;
    background: rgba(7, 11, 32, 0.95);
    border: 1px solid rgba(246,179,71,0.2);
    padding: 1.4rem 1.35rem;
    box-shadow: 0 20px 46px rgba(0,0,0,0.6);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-row-inline {
    align-items: flex-start;
}

label {
    font-size: 0.86rem;
    color: var(--text-muted);
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(5, 8, 25, 0.85);
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
    color: var(--text-main);
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

textarea {
    border-radius: 18px;
    resize: vertical;
    min-height: 140px;
}

input:focus,
textarea:focus {
    border-color: var(--bg-accent-soft);
    box-shadow: 0 0 0 1px rgba(246,179,71,0.4);
    background: rgba(5, 8, 25, 0.96);
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.84rem;
    color: var(--text-muted);
}

.checkbox-wrapper input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.5);
    appearance: none;
    background: transparent;
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #f6b347, #ff7b5c);
    border-color: transparent;
}

.form-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* Page hero */

.page-hero {
    padding: 3rem 0 2.3rem;
    background: linear-gradient(135deg, #050819 0, #141a35 60%, #050819 100%);
}

.page-hero-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.page-hero-lead {
    font-size: 0.96rem;
    color: var(--text-muted);
}

.page-hero-aside {
    display: flex;
    align-items: flex-start;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(5,8,25,0.9);
    border: 1px solid rgba(246,179,71,0.25);
    font-size: 0.8rem;
    color: var(--bg-accent-soft);
}

.badge-pill i {
    color: var(--bg-accent);
}

/* About page */

.rounded-image {
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.35);
}

.two-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: flex-start;
}

.values-intro p {
    font-size: 0.96rem;
    color: var(--text-muted);
}

.values-list {
    display: grid;
    gap: 1rem;
}

.value-card {
    border-radius: var(--radius-md);
    padding: 1.1rem 1rem;
    background: rgba(4,8,30,0.9);
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 0.94rem;
    color: var(--text-muted);
}

.value-card h3 {
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

/* Legal pages */

.privacy-hero,
.cookies-hero {
    background: linear-gradient(135deg, #050819 0, #131932 60%, #050819 100%);
}

.legal-text {
    max-width: 780px;
}

.legal-text h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #18172c;
}

.legal-text p {
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
    color: #26253a;
}

/* Thank you */

.thankyou-body {
    background: radial-gradient(circle at top, #f4f1ff 0, #050819 40%, #02020b 100%);
    color: var(--text-main);
}

.thankyou-main {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.thankyou-card {
    max-width: 520px;
    width: 100%;
    border-radius: 24px;
    padding: 2.1rem 2rem;
    background: rgba(5,8,25,0.96);
    border: 1px solid rgba(246,179,71,0.26);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.thankyou-card h1 {
    font-size: 1.7rem;
    margin-bottom: 0.6rem;
}

.thankyou-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.thankyou-icon {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, #ffe9c5 0, #f6b347 40%, #ff7b5c 100%);
    color: #23131f;
    font-size: 1.8rem;
}

.thankyou-btn {
    margin-top: 0.6rem;
}

/* Footer */

.site-footer {
    background: #050714;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.simple-footer {
    background: #050714;
}

.footer-inner {
    padding: 1.7rem 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-mark {
    width: 24px;
    height: 24px;
}

.footer-name {
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-cols {
    display: flex;
    gap: 2.5rem;
    font-size: 0.85rem;
}

.footer-col h3 {
    font-size: 0.9rem;
    margin-bottom: 0.45rem;
    color: var(--text-main);
}

.footer-link {
    display: block;
    margin-bottom: 0.25rem;
}

.footer-link:hover {
    color: var(--bg-accent-soft);
}

.footer-bottom {
    font-size: 0.78rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 0.7rem;
}

.footer-extra {
    margin-top: 0.2rem;
}

/* Responsive */

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-media {
        max-width: 420px;
        margin: 0 auto;
    }
    .section-split,
    .section-split.reverse {
        grid-template-columns: minmax(0, 1fr);
    }
    .steps-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .cards-grid.three {
        grid-template-columns: minmax(0, 1fr);
    }
    .location-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .cta-inner {
        grid-template-columns: minmax(0, 1fr);
    }
    .two-cols,
    .values-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .footer-main {
        flex-direction: column;
    }
    .footer-cols {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .main-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .hero-text h1 {
        font-size: 2.05rem;
    }
    .section {
        padding: 3.2rem 0;
    }
    .page-hero-inner {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-text h1 {
        font-size: 1.85rem;
    }
    .hero-note {
        flex-direction: row;
    }
    .footer-inner {
        padding-inline: 1.2rem;
    }
}

.hero{

    overflow: hidden;
}