/* ==========================================================
   LEGAL CONSULTATION CONVERSION SYSTEM
   VERSION 1.0
   Clone Template
========================================================== */

/* ==========================================================
   CLIENT VARIABLES
========================================================== */

:root{

    --primary:#0F3D6E;
    --primary-dark:#082746;

    --accent:#D4AF37;

    --text:#1D1D1D;

    --light:#F7F8FA;

    --white:#FFFFFF;

    --border:#E6E6E6;

    --container:1140px;

    --radius:18px;

    --shadow:0 18px 45px rgba(0,0,0,.08);

}

/* ==========================================================
   RESET
========================================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:#ffffff;

    color:var(--text);

    font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

    line-height:1.65;

    font-size:18px;

}

/* ==========================================================
   LAYOUT
========================================================== */

.container{

    width:min(92%,var(--container));

    margin:auto;

}

section{

    padding:60px 0;

}

/* ==========================================================
   LOGO
========================================================== */

header{

    padding:30px 0;

}

.logo{

    max-width:220px;

    display:block;

}

/* ==========================================================
   HERO
========================================================== */

.hero{

    text-align:center;

    padding:40px 0 60px;

}

.eyebrow{

    display:inline-block;

    background:#eef5fb;

    color:var(--primary);

    padding:8px 18px;

    border-radius:999px;

    font-size:14px;

    font-weight:700;

    letter-spacing:.08em;

    text-transform:uppercase;

    margin-bottom:24px;

}

.hero h1{
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.2;
    max-width: 900px;
    margin: auto;
    font-weight: 800;
}

.subheadline{
    max-width: 720px;
    margin: 24px auto 32px;
    font-size: 21px;
    color: #555;
}

/* Universal compact spacing for all pages */
.compact-hero {
    padding: 20px 0 20px !important;
}

.compact-hero .subheadline {
    margin: 15px auto 20px auto !important;
    font-size: 19px;
}

header {
    padding: 30px 0;
}

/* Specific styling only for the calendar embed section on the schedule page */
#schedule {
    padding-top: 0 !important;
}

#schedule .embed-placeholder {
    padding: 30px 20px;
}

#schedule .embed-placeholder h2 {
    margin-bottom: 24px;
}



/* ==========================================================
   BUTTON
========================================================== */

.btn{

    display:inline-block;

    background:var(--primary);

    color:white;

    text-decoration:none;

    padding:18px 42px;

    border-radius:999px;

    font-size:20px;

    font-weight:700;

    transition:.25s;

    box-shadow:var(--shadow);

}

.btn:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);

}

/* ==========================================================
   TRUST BOXES
========================================================== */

.trust{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.trust-box{
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid var(--border);
}

/* ==========================================================
   BENEFITS
========================================================== */

.benefits h2,
.faq h2{
    text-align: center;
    font-size: 38px;
    margin-bottom: 45px;
}

.steps{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.step{

    background:white;

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:40px;

    box-shadow:var(--shadow);

}

.number{

    width:52px;

    height:52px;

    border-radius:50%;

    background:var(--primary);

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    margin-bottom:24px;

}

.step h3{

    margin-bottom:14px;

    font-size:24px;

}

.step p{

    color:#666;

}

/* ==========================================================
   EVALUATION
========================================================== */

#evaluation{

    background:var(--light);

    border-radius:24px;

    padding:70px;

    margin:80px 0;

}

#evaluation h2{

    text-align:center;

    font-size:42px;

    margin-bottom:20px;

}

.evaluation-copy{

    text-align:center;

    color:#666;

    margin-bottom:50px;

}

/* ==========================================================
   EMBED PLACEHOLDER
========================================================== */

.embed-placeholder{

    border:3px dashed #cccccc;

    background:white;

    border-radius:20px;

    padding:90px 40px;

    text-align:center;

}

.embed-placeholder h2 {
    margin-bottom: 24px;
}

.embed-placeholder h3{

    margin-bottom:18px;

}

/* ==========================================================
   CALENDAR
========================================================== */

.calendar{

    margin-top:40px;

}

.calendar h2{

    text-align:center;

    font-size:40px;

    margin-bottom:20px;

}

.calendar p{

    text-align:center;

    margin-bottom:40px;

    color:#666;

}

/* ==========================================================
   FAQ
========================================================== */

.faq h2{

	text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.faq-item{
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-item h3{

    margin-bottom:12px;

    font-size:22px;

}

.faq-item p{

    color:#666;

}

/* ==========================================================
   FOOTER
========================================================== */

footer{
    padding: 40px 0 30px;
    text-align: center;
    color: #777;
    font-size: 15px;
}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:900px){

.trust{

grid-template-columns:1fr;

}

.steps{

grid-template-columns:1fr;

}

#evaluation{

padding:40px 24px;

}

.hero{

padding:40px 0;

}

.hero h1{

font-size:42px;

}

.subheadline{

font-size:20px;

}

.btn{

display:block;

width:100%;

text-align:center;

}

}

/* ==========================================================
   QUIZ
========================================================== */

.quiz-wrapper{

    display:flex;

    justify-content:center;

    padding:20px;

    padding-bottom:60px;

}

.quiz-card{

    width:100%;

    max-width:760px;

    background:white;

    border:1px solid var(--border);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    padding:48px;

}

.progress{

    width:100%;

    height:10px;

    background:#ececec;

    border-radius:999px;

    overflow:hidden;

    margin-bottom:42px;

}

.progress-bar{

    width:0%;

    height:100%;

    background:var(--primary);

    transition:width .35s ease;

}

.quiz-question{

    font-size:34px;

    font-weight:700;

    line-height:1.25;

    margin-bottom:36px;

}

.quiz-options{

    display:grid;

    gap:18px;

}

.quiz-option{

    width:100%;

    padding:22px 24px;

    font-size:20px;

    text-align:left;

    background:white;

    border:2px solid var(--border);

    border-radius:14px;

    cursor:pointer;

    transition:.18s;

}

.quiz-option:hover{

    border-color:var(--primary);

    transform:translateY(-1px);

}

.quiz-option.selected{

    background:#eef5fb;

    border-color:var(--primary);

    font-weight:700;

}

.quiz-input{

    width:100%;

    padding:22px;

    font-size:20px;

    border:2px solid var(--border);

    border-radius:14px;

    outline:none;

    transition:.2s;

}

.quiz-input:focus{

    border-color:var(--primary);

}

.quiz-buttons{

    display:flex;

    justify-content:space-between;

    gap:20px;

    margin-top:42px;

}

.btn-secondary{

    padding:18px 34px;

    border-radius:999px;

    border:2px solid var(--border);

    background:white;

    cursor:pointer;

    font-size:18px;

    font-weight:700;

    transition:.2s;

}

.btn-secondary:hover:not(:disabled){

    border-color:var(--primary);

}

.btn-secondary:disabled{

    opacity:.45;

    cursor:not-allowed;

}

@media(max-width:900px){

.quiz-card{

padding:28px;

}

.quiz-question{

font-size:28px;

}

.quiz-option{

font-size:18px;

padding:18px;

}

.quiz-buttons{

flex-direction:column-reverse;

}

.btn-secondary,
.btn{

width:100%;

text-align:center;

}

}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.shake {
    animation: shake 0.4s ease;
}