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

:root {
    --bg: #050505;
    --card: #0d0d0d;
    --border: rgba(255,255,255,.08);
    --text: #ffffff;
    --muted: #9a9a9a;
    --accent: oklch(68.1% 0.162 75.834);
}

body{
    font-family:'Inter',sans-serif;
    background:#0b0b0b;
    color:white;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    background:rgba(0,0,0,.85);
    backdrop-filter:blur(10px);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}
.logo{
    display:flex;
    flex-direction:row;
    align-items:center;
}
.logo_img{
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.logo_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.logo_text{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.logo h2{
    letter-spacing:4px;
}

.logo span{
    color:var(--accent);
    font-size:12px;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
}

.hero{
    min-height:100vh;
    background:url("https://images.unsplash.com/photo-1580541832626-2a7131ee809f?auto=format&fit=crop&w=1600&q=80");
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.75);
}

.hero-content{
    position:relative;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.subtitle{
    color:var(--accent);
    letter-spacing:4px;
    margin-bottom:20px;
}

.hero h1{
    font-size:72px;
    margin-bottom:15px;
}

.hero h3{
    margin-bottom:20px;
}

.hero-text{
    color:#cfcfcf;
    line-height:1.7;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.btn-primary{
    background:var(--accent);
    color:black;
    border:none;
    padding:16px 28px;
    border-radius:12px;
    cursor:pointer;
    font-weight:700;
}

.btn-primary:hover{
    color:var(--accent);
    background-color: black;
}

.btn-secondary{
    background:transparent;
    color:white;
    border:1px solid rgba(255,255,255,.4);
    padding:16px 28px;
    border-radius:12px;
    cursor:pointer;
    text-decoration: none;
}
.btn-secondary:hover{
    text-decoration: none;
    background-color: white;
    color: #222;
}

.hero-right{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.stat-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
    padding:30px;
    border-radius:20px;
    font-size: 1.125rem;
}

.section{
    padding:120px 0;
}

.section h2{
    font-size:48px;
    margin-bottom:50px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:#151515;
    border:1px solid #262626;
    border-radius:20px;
    padding:30px;
}

.card h3{
    font-size: 1.5rem;
    margin-bottom:15px;
}

.card p{
    color:#bfbfbf;
    margin-bottom:20px;
}

.card span{
    color:var(--accent);
    display:block;
    margin-bottom:20px;
}

.dark{
    background:#111;
}

.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}
.about img{
    width:100%;
    border-radius:20px;
}
.about-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-title{
    color: var(--accent);
    letter-spacing: 4.2px;
    font-size: 1.125rem;
    margin-bottom: 20px;
}
.about ol{
    margin-top:30px;
}

.about li{
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom:20px;
}

.cta{
    text-align:center;
    padding:140px 0;
}
.cta h2{
    font-size:56px;
    margin-bottom:20px;
}

.cta p{
    color:#bfbfbf;
    margin-bottom:40px;
}
p.cta-title{
    color: var(--accent);
    letter-spacing: 4.2px;
    font-size: 1.125rem;
    margin-bottom: 20px;
}

footer{
    border-top:1px solid #222;
    padding:40px 0;
}

.footer{
    display:flex;
    justify-content:space-between;
}

.container.footer a {
    color: var(--accent);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease;
}

.social-link:hover,
.social-link:focus-visible {
    color: var(--text);
    opacity: .9;
}

.social-link img {
    width: 20px;
    height: 20px;
}

@media(max-width:768px){
    .hero-content,
    .about,
    .cards{
        grid-template-columns:1fr;
    }
    .hero h1{
        font-size:48px;
    }
    .hero-right{
        grid-template-columns:1fr;
    }
    nav{
        display:none;
    }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9999;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    overflow: auto;
}

.modal {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: auto;
    background: rgba(10,10,10,.95);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 48px;
    box-shadow:
        0 20px 60px rgba(0,0,0,.6),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.modal-close {
    position: absolute;
    right: 24px;
    top: 24px;
    background: transparent;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

.modal-subtitle {
    color: var(--accent);
    letter-spacing: 5px;
    font-size: 12px;
    margin-bottom: 16px;
}

.modal-title {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 20px;
}

.modal-description {
    color: var(--muted);
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 36px;
}

.contact-tabs {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 32px;
}

.tab {
    flex: 1;
    background: transparent;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: white;
    border: none;
    padding: 18px;
    cursor: pointer;
    font-size: 18px;
    transition: .3s;
}

.tab.active {
    background: rgb(13 13 13);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 16px;
}
.tab>svg {
    stroke: #ffffff;
    width: 40px;
    background-color: transparent;
    fill: transparent;
    border-radius: 50%;
    border: 0px;
    margin-right: 20px;
}
.tab.active>svg{
    background-color: #131313;
    stroke: var(--accent);
    fill: transparent;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.contact-card {
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    display: flex;
    gap: 32px;
    align-items: center;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,.02),
        rgba(255,255,255,.01)
    );
}

.contact-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-info h3 {
    font-size: 36px;
    margin-bottom: 12px;
}

.contact-info p {
    color: var(--muted);
    margin-bottom: 24px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: black;
    background: var(--accent);
    border-radius: 14px;
    padding: 18px 34px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}
.email-block{
    margin: auto;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
}

.email-form input {
    height: 60px;
    background: #121212;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 18px;
    color: white;
}

.consent-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: .8125rem;
    line-height: 1.45;
    text-align: left;
}

.consent-field input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--accent);
    flex: 0 0 auto;
}

.consent-field a,
.policy-link {
    color: var(--accent);
}

.policy-link-wrap {
    margin-top: 20px;
}

.policy-link {
    font-size: .875rem;
}

.modal-footer {
    margin-top: 28px;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 768px) {

    .modal {
        padding: 28px;
    }

    .modal-title {
        font-size: 38px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-info h3 {
        font-size: 28px;
    }
}

/* Mobile layout and navigation */
body.modal-open { overflow: hidden; }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--text);
    transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 768px) {
    .container { width: min(92%, 680px); }

    .nav { min-height: 72px; padding: 12px 0; }
    .logo h2 { font-size: 1rem; letter-spacing: 2px; }
    .logo span { display: block; max-width: 150px; font-size: 9px; }

    .menu-toggle { display: block; margin-left: auto; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 8px 4%;
        background: rgba(5,5,5,.98);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    nav.is-open { display: flex; }
    nav a { padding: 14px 0; font-size: 1rem; }
    .nav > .btn-primary { margin-left: 8px; padding: 12px 14px; border-radius: 10px; font-size: .875rem; }

    .hero { min-height: auto; padding: 115px 0 72px; background-position: 62% center; }
    .hero-content { gap: 40px; }
    .hero h1 { font-size: clamp(2.4rem, 11vw, 3.5rem); line-height: 1.05; }
    .subtitle, .about-title, p.cta-title { font-size: .75rem; letter-spacing: 2px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-primary, .hero-buttons .btn-secondary, .card-btn .btn-primary { width: 100%; text-align: center; }
    .hero-right { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-card { padding: 20px; font-size: 1rem; }

    .section { padding: 72px 0; }
    .section h2, .cta h2 { font-size: clamp(2rem, 9vw, 2.75rem); line-height: 1.1; margin-bottom: 32px; }
    .cards { gap: 16px; }
    .card { min-height: 0; padding: 24px; }
    .about { gap: 32px; }
    .about li { font-size: 1.0625rem; line-height: 1.45; }
    .cta { padding: 88px 0; }
    .footer { flex-direction: column; gap: 24px; }
    footer a { display: inline-block; margin: 4px 0; }

    .modal-overlay { padding: 16px; overflow-y: auto; }
    .modal { margin: auto; padding: 28px 20px; border-radius: 20px; }
    .modal-title { font-size: clamp(2rem, 10vw, 2.4rem); }
    .modal-description { font-size: 1rem; line-height: 1.5; }
    .contact-tabs { flex-direction: row; }
    .tab { justify-content: center; padding: 14px; }
    .tab > svg { width: 24px; margin-right: 0; }
    .tab-label { display: none; }
    .contact-card { padding: 24px 18px; flex-direction: column; text-align: center; }
    .contact-icon { width: 86px; height: 86px; }
    .contact-btn { width: 100%; padding: 16px; }
    .modal-footer { line-height: 1.4; }
}

@media (max-width: 420px) {
    .nav > .btn-primary { padding: 11px 10px; font-size: .75rem; }
    .hero-right { grid-template-columns: 1fr; }
    .modal-overlay { padding: 10px; }
}

/* Reviews carousel */
.reviews-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.reviews-heading h2 { margin-bottom: 50px; }

.review-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
}

.review-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--card);
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.review-arrow:hover,
.review-arrow:focus-visible {
    border-color: var(--accent);
    color: var(--accent);
    outline: none;
    transform: translateY(-2px);
}

.review-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding-bottom: 4px;
}

.review-track::-webkit-scrollbar { display: none; }

.review-card {
    display: flex;
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    min-height: 230px;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    scroll-snap-align: start;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card);
}

.review-card h3 {
    margin: 0 0 16px;
    font-size: 24px;
}

.review-type {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.review-card > .result-text {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.45;
}

.review-open {
    margin-top: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--accent);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.review-open:hover,
.review-open:focus-visible {
    color: var(--text);
    outline: none;
}

.review-modal { max-width: 680px; }

.modal-subtitle {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.review-modal-title {
    margin: 0 0 24px;
    font-size: 40px;
}

.review-modal-content {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.review-modal-content p { margin: 0; }

@media (max-width: 768px) {
    .reviews-heading h2,
    .review-controls { margin-bottom: 32px; }

    .review-card {
        flex-basis: 84%;
        min-height: 210px;
        padding: 24px;
    }

    .review-modal-title { font-size: clamp(2rem, 10vw, 2.4rem); }
}
