:root{
    --gold:#c99a54;
    --gold-dark:#a9782f;
    --text:#4c3b2d;
    --light:#fffdf9;
    --border:#eadcc8;
    --muted:#6b6258;
}

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

body{
    font-family:'Inter',sans-serif;
    background:linear-gradient(180deg,#fffdfb 0%,#f9f4ee 100%);
    color:var(--text);
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

section{
    padding:20px 0;
}

h1,h2,h3{
    font-family:'Cormorant Garamond',serif;
    font-weight:600;
}

h2{
    text-align:center;
    font-size:52px;
    margin-bottom:20px;
    color:#5a4127;
}


/* TOPICS DIVIDER */

.topics-divider{
    display:flex;
    align-items:center;
    gap:20px;
    margin:40px 0 25px;
}

.td-line{
    flex:1;
    height:1px;
    background:var(--border);
}

.td-text{
    font-size:14px;
    color:var(--muted);
    white-space:nowrap;
    text-align:center;
}

/* HEADER */

header{
    position:fixed;
    top:0;
    width:100%;
    z-index:100;
    backdrop-filter:blur(10px);
    background:rgba(255,255,255,.85);
    border-bottom:1px solid rgba(201,154,84,.15);
}

.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 20px;
}

.logo{
    font-family:'Cormorant Garamond',serif;
    font-size:42px;
    color:var(--gold-dark);
    font-weight:700;
}

.menu{
    display:flex;
    gap:20px;
    list-style:none;
}

.menu a{
    text-decoration:none;
    color:#6a5543;
    font-size:14px;
    letter-spacing:.05em;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    border-radius:999px;
    background:linear-gradient(135deg,var(--gold),#d9b071);
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    box-shadow:0 10px 25px rgba(201,154,84,.25);
}

.btn:hover{
    transform:translateY(-3px);
}

/* HERO */

.hero{
    padding-top:100px;
    /* min-height:50vh; */
    display:flex;
    align-items:center;
    overflow:hidden;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle,var(--gold) 0%,transparent 70%);
    opacity:.08;
    right:-150px;
    top:50px;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    justify-content: center;
}

.hero-text h1{
    font-size:92px;
    line-height:.95;
    margin-bottom:20px;
    color:#5a3c21;
}

.hero-text .club{
    display:block;
    font-size:30px;
    margin-top:15px;
}

.hero-text p{
    max-width:500px;
    margin:40px 0;
    font-size: 18px;
    line-height: 1.7;
    color: #6d5a49;
}

.hero-image img{
    width:100%;
    border-radius:20px;
    object-fit:cover;
}

.card{
    background:white;
    border:1px solid var(--border);
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.05);
}

.icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#f7e7cf,#fff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:var(--gold-dark);
    margin-bottom:20px;
}

.card h3{
    font-size:28px;
    margin-bottom:12px;
}

.card p{
    font-size:14px;
    color:#6d5a49;
    text-align: start;
}

/* TARGET */

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

/* DIRECTIONS GRID */

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

.direction-card{
    display:flex;
    align-items:center;
    gap:12px;
    background:white;
    border:1px solid var(--border);
    border-radius:16px;
    padding:18px 20px;
    font-size:15px;
    color:var(--text);
    transition:transform .3s, box-shadow .3s;
}

.direction-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.direction-icon{
    font-size:24px;
    flex-shrink:0;
}

/* FOUNDER */

.founder-grid{
    display:grid;
    grid-template-columns:1fr 1.5fr;
    gap:50px;
    align-items:start;
    margin:30px 0;
}

.founder-image img{
    width:100%;
    border-radius:20px;
    object-fit:cover;
}

.founder-intro{
    font-size:15px;
    line-height:1.7;
    color:var(--text);
}

/* FOUNDER SOCIAL */

.founder-social{
    margin-top:30px;
}

.founder-social-label{
    font-size:15px;
    color:var(--muted);
    margin-bottom:14px;
}

.founder-social-links{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.social-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 20px;
    border:1px solid var(--border);
    border-radius:14px;
    background:var(--light);
    color:var(--text);
    text-decoration:none;
    font-size:15px;
    transition:transform .3s, box-shadow .3s;
}

.social-link:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.social-link svg{
    width:22px;
    height:22px;
    flex-shrink:0;
}

.founder-social-disclaimer{
    font-size:12px;
    color:var(--muted);
    margin-top:12px;
}

/* FACTORS */

.factors-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin:30px 0;
}

.factor-card{
    background:white;
    border:1px solid var(--border);
    border-radius:20px;
    padding:30px;
    transition:transform .3s, box-shadow .3s;
}

.factor-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.factor-number{
    font-family:'Cormorant Garamond',serif;
    font-size:28px;
    color:var(--gold);
    margin-bottom:10px;
}

.factor-card h3{
    font-size:26px;
    margin-bottom:12px;
    text-align:left;
    color:#5a3c21;
}

.factor-card p{
    font-size:15px;
    line-height:1.7;
    color:#6d5a49;
}

.goals{
    background:linear-gradient(135deg,#f8ead7,#fffdf9);
    border:1px solid #eddcc5;
    border-radius:24px;
    padding:20px;
    margin:30px 0;
}

.goals-note{
    text-align:center;
    font-size:14px;
    color:var(--muted);
    margin-left:auto;
    margin-right:auto;
}

/* CTA */

.cta-box{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    background:linear-gradient(135deg,#f8ead7,#fffdf9);
    border-radius:40px;
    padding:40px 40px;
    text-align:center;
    border:1px solid #eddcc5;
}

.cta-box h2{
    margin-bottom:24px;
}

.muted{
    color:var(--muted);
}

/* SECONDARY CTA */

.cta-secondary{
    text-align:center;
    margin:30px 0 0;
}

.cta-secondary a{
    display:inline-block;
    color:var(--gold-dark);
    font-weight:600;
    font-size:15px;
    text-decoration:none;
    padding:10px 24px;
    border:1px solid var(--gold);
    border-radius:30px;
    transition:background .3s, color .3s;
}

.cta-secondary a:hover{
    background:var(--gold);
    color:white;
}

/* TARIFF — Премиум */

.tariff{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align:center;
    max-width:420px;
    margin:0 auto;
    background:white;
    border-radius:24px;
    padding:36px 32px 32px;
    box-shadow:0 4px 20px rgba(0,0,0,.06);
}

.tariff .badge{
    display:inline-block;
    background:linear-gradient(135deg,var(--gold),#d9b071);
    color:white;
    font-size:12px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    padding:6px 18px;
    border-radius:999px;
}

.tariff .price{
    /* font-family:'Cormorant Garamond',serif; */
    /* font-size:56px; */
    font-size: 36px;
    font-weight:700;
    background:linear-gradient(135deg,#c99a54,#8b6a35);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    line-height:1;
    margin-top:4px;
}

.tariff .period{
    font-size:15px;
    color:var(--muted);
    margin-top:-8px;
}

.price-divider{
    width:60px;
    height:2px;
    background:var(--gold);
    opacity:.3;
    border-radius:2px;
    margin:4px 0;
}

.tariff-desc{
    font-size:14px;
    color:#6d5a49;
    line-height:1.6;
    max-width:320px;
}

.tariff .btn{
    width:100%;
    padding:16px 24px;
    font-size:17px;
    border-radius:14px;
    box-shadow:0 8px 24px rgba(201,154,84,.3);
    margin-top:4px;
}

.small{
    font-size:14px;
    color:var(--muted);
}

/* PRICING EXTRAS */

.pricing-extras{
    display:flex;
    flex-direction: column;
    align-items: center;
    gap:12px;
    max-width:420px;
    margin:0 auto;
}

.pricing-extra{
    width:100%;
    display:flex;
    gap:14px;
    align-items:flex-start;
    background:rgba(255,255,255,.55);
    border:1px solid var(--border);
    border-radius:14px;
    padding:16px 20px;
    text-align:left;
}

.pricing-extra-icon{
    font-size:20px;
    line-height:1.4;
    flex-shrink:0;
}

.pricing-extra-text strong{
    display:block;
    font-size:14px;
    font-weight:600;
    color:var(--text);
}

.pricing-extra-text span{
    font-size:13px;
    color:var(--muted);
    line-height:1.4;
}

/* FAQ */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.faq-item {
    background:white;
    border:1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Убираем стандартный маркер у summary в Chrome/Firefox */
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question {
    list-style: none; /* Для Safari */
}

.faq-question {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #5a4127;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--gold);
}

/* Иконка стрелочки */
.faq-icon {
    width: 14px;
    height: 14px;
    border-right: 2px solid #5a4127;
    border-bottom: 2px solid #5a4127;
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.2s ease;
    margin-right: 5px;
}

.faq-icon:hover {
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

/* Поворот стрелки при открытии */
.faq-item[open] .faq-icon {
    transform: rotate(225deg);
    border-color: var(--gold);
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    animation: fadeIn 0.4s ease-out;
}

/* Плавное появление текста */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* FOOTER */

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

/* FOOTER LEGAL */

.footer-legal{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    font-size:13px;
    color:var(--muted);
}

.footer-ip{
    display:flex;
    flex-direction: column;
    gap:5px;
}

.footer-docs{
    display:flex;
    flex-direction: column;
    gap:5px;
    flex-wrap:wrap;
}

.footer-docs a{
    color:var(--muted);
    text-decoration:underline;
    transition:color .3s;
}

.footer-docs a:hover{
    color:var(--gold-dark);
}

/* MOBILE */

@media(max-width:1024px){

    .nav {
        justify-content: center;
    }

    .hero {
        padding-top:160px;
    }

    .hero-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-text p{
        margin-inline:auto;
    }

    .directions-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .menu{
        display:none;
    }

    .hero-text h1{
        font-size:64px;
    }

    .grid-3{
        grid-template-columns:1fr;
    }

    h2{
        font-size:42px;
    }

    .directions-grid{
        grid-template-columns:1fr;
    }

    .topics-divider{
        gap:12px;
    }

    .td-text{
        white-space:normal;
        font-size:13px;
    }

    .founder-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .founder-image{
        max-width:400px;
        margin:0 auto;
    }

    .factors-grid{
        grid-template-columns:1fr;
    }

    .goals{
        padding:30px 20px;
    }

    .cta-box {
        flex-direction: column;
    }
    
    .footer-legal{
        flex-direction:column;
        text-align:center;
    }

    .footer-docs{
        justify-content:center;
    }

    .pricing-extras{
        flex-direction:column;
    }
}

/* LEGAL PAGES */

.legal-page{
    max-width:800px;
    margin:60px auto;
    padding:0 20px;
}

.legal-page h1{
    font-size:36px;
    margin-bottom:30px;
    color:#5a3c21;
}

.legal-page h2{
    font-size:24px;
    margin:30px 0 15px;
    text-align:left;
    color:#5a3c21;
}

.legal-page p{
    font-size:16px;
    line-height:1.7;
    color:#4c3b2d;
    margin-bottom:15px;
}

.legal-page ul{
    margin:10px 0 20px;
    padding-left:25px;
}

.legal-page ul li{
    font-size:16px;
    line-height:1.7;
    color:#4c3b2d;
    margin-bottom:5px;
}

.legal-back{
    display:inline-block;
    margin:30px 0;
    color:var(--gold-dark);
    text-decoration:none;
    font-weight:600;
    font-size:16px;
    transition:color .3s;
}

.legal-back:hover{
    color:var(--gold);
}

.legal-rekv{
    background:#f8ead7;
    border-radius:16px;
    padding:25px;
    margin:20px 0;
}

.legal-rekv p{
    margin-bottom:6px;
    font-size:15px;
}
