/* ===================== HERO ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 80px;
    position: relative;
    z-index: 1;
}

.hero-inner {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-card {
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(126, 200, 154, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.08;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-card > p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(30, 61, 42, 0.1);
}

.stat { text-align: center; }

.stat-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(30, 61, 42, 0.15);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
    min-width: 200px;
    animation: float 6s ease-in-out infinite;
}

.fc-1 { top: 20px; left: 0; animation-delay: 0s; }
.fc-2 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 2s; }
.fc-3 { bottom: 20px; left: 20px; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.fc-2 { animation: float2 6s ease-in-out infinite; }

@keyframes float2 {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 12px)); }
}

.fc-icon { font-size: 1.6rem; }
.fc-title { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 600; }
.fc-val { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-top: 2px; }

/* ===================== SERVICES ===================== */
.services {
    padding: 120px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
}

@media (max-width: 900px) {
    .service-card { flex: 0 0 calc(50% - 12px); min-width: calc(50% - 12px); }
}
@media (max-width: 600px) {
    .service-card { flex: 0 0 100%; min-width: 100%; }
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); background: var(--glass-hover); box-shadow: var(--shadow-lg); }

.service-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.5;
    font-style: italic;
    line-height: 1;
    margin-bottom: 12px;
}

.service-icon { font-size: 2rem; margin-bottom: 16px; }

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px; }

.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.service-list li {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    padding-left: 16px;
    position: relative;
}

.service-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 0.75rem; }

/* ===================== PROCESS ===================== */
.process {
    padding: 120px 5%;
    background: rgba(30, 61, 42, 0.03);
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.process-step {
    display: grid;
    grid-template-columns: auto 80px 1fr;
    align-items: start;
    gap: 24px;
    padding-bottom: 40px;
}

.step-line {
    width: 2px;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(126, 200, 154, 0.1) 100%);
    align-self: stretch;
    margin-left: 39px;
    margin-top: 40px;
}

.step-line.last { background: transparent; }

.step-num {
    width: 80px; height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    font-style: italic;
    flex-shrink: 0;
    border-radius: 50% !important;
}

.step-content { padding-top: 16px; padding-bottom: 24px; }
.step-content h3 { font-size: 1.15rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.step-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ===================== WHY US ===================== */
.why-us {
    padding: 120px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.why-card {
    padding: 36px 32px;
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
}

@media (max-width: 900px) {
    .why-card { flex: 0 0 calc(50% - 12px); min-width: calc(50% - 12px); }
}
@media (max-width: 600px) {
    .why-card { flex: 0 0 100%; min-width: 100%; }
}

.why-card:hover { transform: translateY(-6px); background: var(--glass-hover); }
.why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ===================== FAQ ===================== */
.faq {
    padding: 120px 5%;
    background: rgba(30, 61, 42, 0.03);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item { border-radius: 16px !important; overflow: hidden; transition: all 0.3s ease; }

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    gap: 16px;
    transition: all 0.2s ease;
}

.faq-q:hover { color: var(--primary-light); }

.faq-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--accent);
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.open .faq-a { max-height: 200px; padding: 0 28px 24px; }
.faq-a p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; }

/* ===================== CTA STRIP ===================== */
.cta-strip {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px 56px;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-strip-inner h2 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.cta-strip-inner p { color: var(--text-muted); font-size: 0.95rem; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-card { padding: 40px 32px; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .process-step { grid-template-columns: auto 1fr; }
    .step-line { display: none; }
    .cta-strip-inner { flex-direction: column; text-align: center; }
}
