/* ========== NEW DESIGN SYSTEM - GREEN MINIMALIST ========== */
:root {
    --green-dark: #065f46;
    --green-mint: #10b981;
    --green-emerald: #059669;
    --coral: #f97316;
    --white: #ffffff;
    --bg-light: #f9fafb;
    --text-gray: #6b7280;
    --text-dark: #111827;
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    animation: navSlide 0.5s ease-out;
}

@keyframes navSlide {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--green-dark);
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--text-gray);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-mint);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-links a:hover {
    color: var(--green-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--green-dark);
    color: var(--white) !important;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--green-emerald);
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none !important;
}

/* ========== BURGER MENU ========== */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: none;
    border: none;
}

.burger-menu span {
    width: 26px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7.5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7.5px);
}

/* ========== HERO SECTION ========== */
.hero-minimal {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    text-align: center;
}

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

.hero-badge {
    display: inline-block;
    background: #dcfce7;
    color: var(--green-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.7s ease-out;
}

.highlight-green {
    color: var(--green-mint);
    position: relative;
}

.highlight-green::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(16, 185, 129, 0.15);
    z-index: -1;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-cta {
    animation: fadeInUp 0.9s ease-out;
}

.btn-coral-large {
    display: inline-block;
    background: var(--coral);
    color: white;
    padding: 1.1rem 2.8rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
    font-family: 'Inter', sans-serif;
}

.btn-coral-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.hero-note {
    display: block;
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== STATS BAR ========== */
.stats-bar {
    background: var(--white);
    padding: 40px 20px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green-mint);
    margin-bottom: 0.3rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ========== HOW IT WORKS ========== */
.how-it-works-new {
    padding: 80px 20px;
    background: var(--bg-light);
}

.section-title-center {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.steps-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.step-item-new {
    flex: 1;
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-item-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.step-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-mint), var(--green-emerald));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 1.2rem;
    font-family: 'Manrope', sans-serif;
}

.step-item-new h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.step-item-new p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-arrow-new {
    font-size: 1.8rem;
    color: var(--green-mint);
    flex-shrink: 0;
    opacity: 0.6;
}

/* ========== SERVICES GRID ========== */
.services-new {
    padding: 80px 20px;
    background: var(--white);
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-new {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.service-card-new:hover {
    border-color: var(--green-mint);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.service-icon-new {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.service-card-new h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-card-new p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.card-link {
    color: var(--green-mint);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========== WHY CHOOSE US ========== */
.why-us {
    padding: 80px 20px;
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.why-icon {
    width: 56px;
    height: 56px;
    background: #dcfce7;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.2rem;
}

.why-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.why-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.btn-green-large {
    display: inline-block;
    background: var(--green-dark);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 95, 70, 0.2);
    font-family: 'Inter', sans-serif;
}

.btn-green-large:hover {
    background: var(--green-emerald);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 95, 70, 0.3);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 80px 20px;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.testimonial-role {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* ========== FAQ ========== */
.faq-new {
    padding: 80px 20px;
    background: var(--white);
}

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

.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.accordion-item:hover,
.accordion-item.open {
    border-color: var(--green-mint);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: background 0.2s ease;
}

.accordion-header:hover {
    background: var(--bg-light);
}

.accordion-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1;
}

.accordion-title {
    flex: 1;
}

.accordion-arrow {
    font-size: 1.4rem;
    color: var(--text-gray);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.accordion-item.open .accordion-arrow {
    transform: rotate(90deg);
    color: var(--green-mint);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.accordion-item.open .accordion-body {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.accordion-body p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.accordion-cta {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--green-mint);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.accordion-cta:hover {
    color: var(--green-dark);
}

/* ========== FINAL CTA ========== */
.final-cta-new {
    padding: 80px 20px;
    background: var(--green-dark);
    text-align: center;
}

.final-cta-new h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta-new > .container-narrow > p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-coral-cta {
    display: inline-block;
    background: var(--coral);
    color: white;
    padding: 1.1rem 3rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
    font-family: 'Inter', sans-serif;
}

.btn-coral-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.final-cta-note {
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.final-cta-note a {
    color: var(--green-mint);
    text-decoration: none;
    font-weight: 600;
}

/* ========== FOOTER ========== */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 2rem 2rem;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo-main {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-col h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--green-mint);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--green-mint);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ========== SCROLL REVEAL ========== */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== CONTACT PAGE ========== */
.contact-page {
    padding: 120px 2rem 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding-left: 0;
}

.contact-item h3 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
}

/* ========== FORM PAGE ========== */
.form-page {
    padding: 120px 2rem 80px;
    max-width: 900px;
    margin: 0 auto;
}

.form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
}

.page-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    text-align: center;
}

.page-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green-mint);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.submit-button {
    width: 100%;
    padding: 1.1rem;
    background: var(--green-dark);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.submit-button:hover {
    background: var(--green-emerald);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 95, 70, 0.2);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.back-button {
    flex: 1;
    padding: 1.1rem;
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: block;
    font-family: 'Inter', sans-serif;
}

.back-button:hover {
    background: var(--border-light);
}

.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* ========== MULTI STEP FORM ========== */
.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    position: relative;
    padding: 0 20px;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-light);
    z-index: 0;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 0;
    height: 2px;
    background: var(--green-mint);
    transition: width 0.3s ease;
    z-index: 1;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-indicator .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 0.4rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.step-indicator.active .step-number {
    background: var(--green-mint);
    border-color: var(--green-mint);
    color: var(--white);
}

.step-indicator.completed .step-number {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
}

.step-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 100px;
}

.step-indicator.active .step-label {
    color: var(--green-dark);
    font-weight: 600;
}

.form-container .step-content,
.form-page .step-content {
    display: none;
}

.form-container .step-content.active,
.form-page .step-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--green-mint);
}

.info-box {
    background: #f0fdf4;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    border-left: 4px solid var(--green-mint);
    margin: 1.2rem 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.preview-section {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    border-left: 4px solid var(--green-mint);
}

.preview-section h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.preview-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border-light);
}

.preview-item:last-child {
    border-bottom: none;
}

.preview-label {
    font-weight: 600;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.preview-value {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.text-editor {
    width: 100%;
    min-height: 300px;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    background: var(--white);
    resize: vertical;
    color: var(--text-dark);
}

.text-editor:focus {
    outline: none;
    border-color: var(--green-mint);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* ========== PDF PREVIEW ========== */
.pdf-preview-container {
    margin-top: 1.5rem;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.pdf-header {
    background: var(--green-dark);
    padding: 1.5rem 2rem;
    border-radius: 16px 16px 0 0;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-header-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.pdf-icon {
    width: 46px;
    height: 46px;
    background: var(--green-mint);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--white);
}

.pdf-title-section h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    margin: 0 0 0.2rem 0;
    color: var(--white);
    font-weight: 600;
}

.pdf-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.pdf-viewer-wrapper {
    background: var(--bg-light);
    border-radius: 0 0 16px 16px;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    border-top: none;
}

.pdf-frame {
    width: 100%;
    height: 80vh;
    border: none;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--green-emerald);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

/* ========== LOADING OVERLAY ========== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.loading-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    max-width: 360px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-light);
    border-top-color: var(--green-mint);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.2rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.loading-subtext {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* ========== AGREEMENT SECTION ========== */
.agreement-section {
    margin-top: 1.5rem;
    padding: 0 1.5rem;
}

.agreement-box {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--green-mint);
}

.agreement-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
}

.agreement-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--green-mint);
}

.agreement-checkbox span {
    color: var(--text-dark);
}

.agreement-checkbox a {
    color: var(--green-mint);
    text-decoration: underline;
    font-weight: 600;
}

.agreement-checkbox a:hover {
    color: var(--green-dark);
}

.agreement-box.error {
    border-left-color: #ef4444;
    background: #fef2f2;
    animation: shake 0.5s;
}

.agreement-checkbox.error {
    color: #ef4444;
}

.agreement-checkbox.error input[type="checkbox"] {
    outline: 2px solid #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 600;
    display: none;
    animation: fadeIn 0.3s ease;
}

.error-message.show {
    display: block;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* ========== STEP 5 ACTION BUTTONS ========== */
.step5-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 1.5rem;
    justify-content: center;
}

.step5-btn {
    flex: 1;
    padding: 1.1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.step5-btn-back {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.step5-btn-back:hover {
    background: var(--border-light);
    transform: translateY(-2px);
}

.step5-btn-pay {
    background: var(--coral);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.step5-btn-pay:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.step5-btn-pay:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========== TOAST NOTIFICATION ========== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--green-mint), var(--green-emerald));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* ========== DOWNLOAD BUTTONS ========== */
.download-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.download-btn.print-btn {
    background: var(--green-dark);
    color: var(--white);
}

.download-btn.print-btn:hover {
    background: var(--green-emerald);
    transform: translateY(-1px);
}

.download-btn.docx-btn {
    background: var(--coral);
    color: white;
}

.download-btn.docx-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* ========== MENU OVERLAY ========== */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ========== CATEGORY LANDING PAGES ========== */
.breadcrumbs {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a {
    color: var(--green-mint);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.category-hero {
    padding: 130px 2rem 70px;
    background: var(--green-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(16, 185, 129, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.category-hero .cat-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.category-hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.category-hero .lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 400;
}

.category-hero .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.2rem;
    background: var(--coral);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.2rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cat-section {
    padding: 60px 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.cat-section--gray {
    background: var(--bg-light);
}

.cat-section--gray .cat-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cat-section h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.cat-section h2 + p.cat-sub {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-light);
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.info-item .check-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--green-mint), var(--green-emerald));
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.info-item h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

.reasons-list {
    list-style: none;
    max-width: 700px;
    margin: 2rem auto 0;
}

.reasons-list li {
    position: relative;
    padding: 0.7rem 0 0.7rem 2.5rem;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-light);
}

.reasons-list li:last-child {
    border-bottom: none;
}

.reasons-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 22px;
    height: 22px;
    background: var(--green-mint);
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    text-align: center;
    line-height: 22px;
    font-weight: 700;
}

.cat-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.cat-step {
    text-align: center;
    padding: 1.5rem 1rem;
}

.cat-step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-mint), var(--green-emerald));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 0.8rem;
    font-family: 'Manrope', sans-serif;
}

.timeline-badge {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--green-mint), var(--green-emerald));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.cat-step:hover .timeline-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.badge-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
}

.badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-top: 0.2rem;
    font-family: 'Manrope', sans-serif;
}

.cat-step h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.cat-step p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

.price-card {
    max-width: 420px;
    margin: 2rem auto 0;
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--green-mint);
}

.price-card .price-val {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.price-card .price-note {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0.3rem 0 1.5rem;
}

.price-card .included {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.price-card .included li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
}

.price-card .included li:last-child {
    border-bottom: none;
}

.price-card .btn-order {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--coral);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    font-family: 'Inter', sans-serif;
}

.price-card .btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.final-cta {
    padding: 60px 2rem;
    background: var(--green-dark);
    text-align: center;
}

.final-cta h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.final-cta > .cat-inner > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.final-cta .cta-button {
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
}

.final-cta .contact-line {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.final-cta .contact-line a {
    color: var(--green-mint);
    text-decoration: none;
    font-weight: 600;
}

/* Error styles */
input.error,
textarea.error {
    border-color: #ef4444;
}

/* ========== ORG DETAILS TOGGLE ========== */
.org-details-section {
    margin-bottom: 1.5rem;
}

.org-details-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.org-details-toggle:hover {
    background: rgba(16, 185, 129, 0.12);
}

.org-details-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #10b981;
    cursor: pointer;
    flex-shrink: 0;
}

.org-details-toggle .toggle-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.4;
}

.org-details-fields {
    transition: all 0.4s ease;
    max-height: 500px;
    overflow: hidden;
}

.org-details-disabled {
    opacity: 0.35;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    transition: all 0.4s ease;
}

/* ========== FIELD HINT ========== */
.field-hint {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 4px;
    font-style: italic;
}

/* ========== TEXTAREA HINT ========== */
.textarea-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 14px;
    background: rgba(59, 130, 246, 0.06);
    border-left: 3px solid rgba(59, 130, 246, 0.4);
    border-radius: 0 6px 6px 0;
}

.textarea-hint svg {
    color: #60a5fa;
    flex-shrink: 0;
    margin-top: 1px;
}

.textarea-hint span {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ========== SUBMIT REQUEST BUTTON ========== */
.btn-submit-request {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-mint);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    font-family: 'Inter', sans-serif;
}

.btn-submit-request:hover:not(:disabled) {
    background: var(--green-emerald);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-submit-request:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-submit-request svg {
    flex-shrink: 0;
}

.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.preview-info-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 600px;
    margin: 16px auto 0;
    padding: 12px 16px;
    background: rgba(59, 130, 246, 0.06);
    border-left: 3px solid rgba(59, 130, 246, 0.3);
    border-radius: 0 6px 6px 0;
}

.preview-info-note svg {
    color: #60a5fa;
    flex-shrink: 0;
    margin-top: 2px;
}

.preview-info-note span {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ========== SUCCESS PAGE ========== */
.success-section {
    padding: 140px 2rem 80px;
    text-align: center;
    min-height: 70vh;
}

.success-container {
    max-width: 640px;
    margin: 0 auto;
}

.success-icon-wrapper {
    margin-bottom: 24px;
}

.success-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
}

.success-checkmark {
    animation: drawCheck 0.6s ease-out 0.3s both;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes drawCheck {
    0% { stroke-dasharray: 100; stroke-dashoffset: 100; opacity: 0; }
    100% { stroke-dasharray: 100; stroke-dashoffset: 0; opacity: 1; }
}

.order-number-block {
    margin-bottom: 12px;
}

.order-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--green-mint);
    font-size: 15px;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.success-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.success-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

/* Next steps card */
.next-steps-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.next-steps-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-step-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.next-step-item:last-child {
    margin-bottom: 0;
}

.next-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: var(--green-mint);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.next-step-content strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.next-step-content p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.order-ref {
    color: var(--green-mint);
    font-weight: 600;
}

/* Contact card */
.success-contact-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.success-contact-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-card-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1.2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-method-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.2rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.contact-method-link:hover {
    border-color: var(--green-mint);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.contact-method-link svg {
    color: var(--green-mint);
    flex-shrink: 0;
}

.contact-telegram-link {
    border-color: rgba(16, 185, 129, 0.2);
}

.contact-telegram-link:hover {
    border-color: var(--green-mint);
    background: rgba(16, 185, 129, 0.04);
}

.contact-telegram-link svg {
    color: var(--green-mint);
}

/* Telegram bot promo */
.telegram-promo {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
}

.telegram-promo-icon {
    flex-shrink: 0;
}

.telegram-promo-text {
    flex: 1;
}

.telegram-promo-text strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.telegram-promo-text p {
    color: var(--text-gray);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

.telegram-promo-btn {
    flex-shrink: 0;
    background: var(--green-mint);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.telegram-promo-btn:hover {
    background: var(--green-emerald);
    transform: translateY(-1px);
}

/* Footer links */
.success-footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.success-footer-links a {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.success-footer-links a:hover {
    color: var(--green-mint);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 100px 2rem 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-cta {
        margin-top: 0.5rem;
        text-align: center;
    }

    .burger-menu {
        display: flex;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .steps-horizontal {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .step-arrow-new {
        display: none;
    }

    .step-item-new {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .button-group {
        flex-direction: column;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
        font-size: 0.9rem;
    }

    .progress-bar {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .step-indicator {
        flex: 0 0 calc(20% - 0.5rem);
    }

    .step-label {
        font-size: 0.6rem;
    }

    .preview-item {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .pdf-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.2rem;
    }

    .pdf-header-left {
        flex-direction: column;
        gap: 0.8rem;
    }

    .pdf-frame {
        height: 55vh;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0.8rem 1.5rem;
    }

    .logo-main {
        font-size: 1rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .hero-minimal {
        padding: 110px 1.5rem 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title-center {
        font-size: 1.8rem;
    }

    .step-item-new {
        flex: 0 0 100%;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
    }

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

    .how-it-works-new,
    .services-new,
    .why-us,
    .testimonials,
    .faq-new {
        padding: 60px 1.5rem;
    }

    .form-page {
        padding: 100px 1.5rem 50px;
    }

    .form-container,
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .step-title {
        font-size: 1.4rem;
    }

    .category-hero {
        padding: 110px 1.5rem 50px;
    }

    .category-hero h1 {
        font-size: 1.7rem;
    }

    .category-hero .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

    .cat-process-grid {
        grid-template-columns: 1fr;
    }

    .timeline-badge {
        width: 85px;
        height: 85px;
    }

    .badge-label {
        font-size: 0.6rem;
    }

    .badge-number {
        font-size: 1.4rem;
    }

    .cat-section {
        padding: 40px 1.5rem;
    }

    .cat-section h2 {
        font-size: 1.6rem;
    }

    .final-cta,
    .final-cta-new {
        padding: 50px 1.5rem;
    }

    .final-cta h2,
    .final-cta-new h2 {
        font-size: 1.6rem;
    }

    .contact-page {
        padding: 100px 1.5rem 50px;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 0.8rem;
    }

    .text-editor {
        min-height: 200px;
        font-size: 0.95rem;
    }

    .step5-actions {
        flex-direction: column;
        padding: 0 0.5rem;
    }

    .step5-btn {
        width: 100%;
    }

    .btn-submit-request {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .success-section {
        padding: 110px 1.5rem 50px;
    }

    .success-title {
        font-size: 1.6rem;
    }

    .success-subtitle {
        font-size: 1rem;
    }

    .success-circle {
        width: 80px;
        height: 80px;
    }

    .success-circle svg {
        width: 48px;
        height: 48px;
    }

    .next-steps-card,
    .success-contact-card {
        padding: 1.5rem;
    }

    .telegram-promo {
        flex-direction: column;
        text-align: center;
    }

    .pdf-viewer-wrapper {
        padding: 0.8rem;
    }

    .pdf-frame {
        height: 50vh;
    }

    .step-indicator .step-number {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }

    .step-label {
        font-size: 0.6rem;
        max-width: 70px;
    }
}

@media (max-width: 480px) {
    .logo-main {
        font-size: 0.9rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .nav-links {
        width: 100%;
        right: -100%;
    }

    .pdf-header {
        padding: 1rem;
    }

    .pdf-frame {
        height: 45vh;
        border-radius: 6px;
    }
}

@media (max-width: 375px) {
    .pdf-frame {
        height: 40vh;
    }
}

/* ========== HERO INLINE FORM ========== */
.hero-form-inline {
    max-width: 600px;
    margin: 0 auto;
}

.form-group-inline {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.phone-input-hero {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    color: var(--text-dark);
    background: var(--white);
}

.phone-input-hero:focus {
    outline: none;
    border-color: var(--green-mint);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.btn-consultation {
    padding: 1.2rem 2rem;
    background: var(--green-mint);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.btn-consultation:hover {
    background: var(--green-emerald);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.form-note {
    display: block;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.hero-cta-secondary {
    margin-top: 1.5rem;
    text-align: center;
}

.btn-secondary-hero {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--green-mint);
    border: 2px solid var(--green-mint);
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background: var(--green-mint);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

/* ========== VERTICAL STEPS (HOW IT WORKS) ========== */
.steps-vertical-detailed {
    max-width: 800px;
    margin: 3rem auto 0;
}

.step-detailed {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step-detailed.highlight {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid var(--green-mint);
}

.step-number-large {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-mint), var(--green-emerald));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
}

.step-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.step-connector {
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, var(--green-mint), #d1fae5);
    margin: 0 auto 0 calc(2rem + 28px);
}

/* ========== SVG SERVICE ICONS ========== */
.service-icon-new svg,
.service-icon-new .icon-svg-green {
    width: 100%;
    height: 100%;
}

.service-icon-new.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    line-height: 1;
}

/* ===== PRICING SECTION — FULL WIDTH ===== */

.pricing-section {
    padding: 0;
    margin: 0;
}

.pricing-bg {
    width: 100%;
    padding: 70px 0;
    text-align: center;
}

.pricing-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 32px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
}

.pricing-number {
    font-size: 72px;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    letter-spacing: -3px;
}

.pricing-currency {
    font-size: 28px;
    font-weight: 500;
    color: #6b7280;
}

.pricing-per {
    font-size: 16px;
    color: #9ca3af;
    margin-bottom: 40px;
}

.pricing-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #d1d5db;
    white-space: nowrap;
}

.pricing-feature svg {
    flex-shrink: 0;
}

.pricing-cta {
    display: inline-block;
    padding: 16px 48px;
    background: #10b981;
    color: white;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.pricing-cta:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.pricing-note {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-bg {
        padding: 50px 20px;
    }

    .pricing-title {
        font-size: 26px;
    }

    .pricing-number {
        font-size: 56px;
    }

    .pricing-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .pricing-cta {
        display: block;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16px;
    }
}


/* ========== SEO INFO BLOCK ========== */
.info-block-seo {
    padding: 80px 20px;
    background: var(--white);
}

.content-two-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.text-content h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.text-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.text-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

.advantages-list-text {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.advantages-list-text li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    color: #374151;
    line-height: 1.6;
}

.advantages-list-text li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--green-mint);
    font-weight: bold;
    font-size: 1.2rem;
}

.benefits-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-box {
    background: var(--bg-light);
    border-left: 4px solid var(--green-mint);
    padding: 1.5rem;
    border-radius: 12px;
}

.benefit-box h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cta-box {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-color: var(--green-mint);
}

.btn-phone {
    display: block;
    margin-top: 1rem;
    padding: 0.8rem;
    background: var(--green-mint);
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-phone:hover {
    background: var(--green-emerald);
}

/* ========== DROPDOWN NAV ========== */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.arrow-down {
    transition: transform 0.3s ease;
}

.has-dropdown:hover .arrow-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    margin-top: 0.5rem;
    z-index: 1001;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: #ecfdf5;
    color: var(--green-mint);
    padding-left: 2rem;
}

.dropdown-menu a::after {
    display: none !important;
}

/* ========== CATEGORY PAGE EXPANDED CONTENT ========== */
.category-benefits-quick {
    padding: 40px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.benefits-grid-quick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.benefit-item {
    padding: 1.5rem;
}

.benefit-item .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.benefit-item h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.benefit-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.detailed-info-list {
    padding: 60px 20px;
    background: var(--bg-light);
}

.detailed-info-list .container,
.real-cases-section .container,
.legal-basis-detailed .container {
    max-width: 1100px;
    margin: 0 auto;
}

.detailed-info-list h2,
.real-cases-section h2,
.legal-basis-detailed h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.info-grid-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-item-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease;
}

.info-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.info-item-card h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.info-item-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.real-cases-section {
    padding: 60px 20px;
    background: var(--white);
}

.cases-list {
    max-width: 900px;
    margin: 0 auto;
}

.case-story {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--green-mint);
}

.case-number {
    display: inline-block;
    background: var(--green-mint);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.case-story h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.case-story p {
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-basis-detailed {
    padding: 60px 20px;
    background: var(--bg-light);
}

.law-articles {
    max-width: 900px;
    margin: 0 auto;
}

.law-block {
    background: var(--white);
    padding: 2rem;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
}

.law-block h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.law-block blockquote {
    background: #f0fdf4;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--green-mint);
    border-radius: 8px;
    color: #374151;
    font-style: italic;
    line-height: 1.7;
}

.law-block p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========== NEW PAGES: PROCESS, FAQ, BLOG ========== */
.page-hero-simple {
    padding: 130px 2rem 60px;
    background: var(--green-dark);
    text-align: center;
}

.page-hero-simple h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero-simple p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.detailed-process-page {
    padding: 60px 20px;
}

.detailed-process-page .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-page {
    padding: 60px 20px;
}

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

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq-category h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--green-mint);
}

.blog-page {
    padding: 60px 20px;
}

.blog-page .container {
    max-width: 1100px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.blog-card:hover {
    border-color: var(--green-mint);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(16,185,129,0.1);
}

.blog-card .blog-date {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card .read-more {
    color: var(--green-mint);
    font-weight: 600;
    font-size: 0.9rem;
}

.article-page {
    padding: 60px 20px;
}

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

.article-page h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.article-content h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.article-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 0.8rem;
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-content li {
    padding: 0.3rem 0;
    color: #374151;
    line-height: 1.7;
}

.article-content blockquote {
    background: #f0fdf4;
    padding: 1.5rem;
    border-left: 4px solid var(--green-mint);
    border-radius: 8px;
    margin: 1.5rem 0;
    font-style: italic;
    color: #374151;
}

.article-cta-box {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 2rem 0;
}

.article-cta-box h3 {
    margin-top: 0;
}

.article-cta-box .btn-green-large {
    margin-top: 1rem;
}

/* ========== NAV CTA OUTLINE BUTTON ========== */
.nav-cta-outline {
    background: transparent !important;
    color: var(--green-mint) !important;
    border: 2px solid var(--green-mint);
}

.nav-cta-outline:hover {
    background: var(--green-mint) !important;
    color: var(--white) !important;
}

/* ========== CONTACT PAGE ========== */
.contact-info-section {
    padding: 60px 20px;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--green-mint);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.contact-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-contact {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-value {
    display: block;
    font-size: 1.2rem;
    color: var(--green-mint);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

a.contact-value:hover {
    color: var(--green-emerald);
}

.contact-note {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.quick-contact-form {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.form-container-contact {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-container-contact h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-subtitle-contact {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-form-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: left;
}

.form-row-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-input-contact,
.form-textarea-contact {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    color: var(--text-dark);
    background: var(--white);
}

.form-input-contact:focus,
.form-textarea-contact:focus {
    outline: none;
    border-color: var(--green-mint);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-textarea-contact {
    resize: vertical;
}

.btn-submit-contact {
    width: 100%;
    padding: 1.3rem;
    background: var(--green-mint);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-top: 0.5rem;
}

.btn-submit-contact:hover {
    background: var(--green-emerald);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.contact-faq-section {
    padding: 80px 20px;
    background: var(--white);
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.faq-preview-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--green-mint);
}

.faq-preview-item h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.faq-preview-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========== RESPONSIVE ADDITIONS ========== */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .faq-preview-grid {
        grid-template-columns: 1fr;
    }
    .form-row-contact {
        grid-template-columns: 1fr;
    }
    .contact-form-box {
        padding: 1.5rem;
    }
}

@media (max-width: 968px) {
    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: auto;
        margin: 0;
        padding-left: 1rem;
        border-radius: 0;
        border-left: 2px solid var(--green-mint);
        display: none;
    }
    .has-dropdown.open .dropdown-menu {
        display: block;
    }
    .dropdown-menu a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    .benefits-grid-quick {
        grid-template-columns: 1fr;
    }
    .info-grid-detailed {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .content-two-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .form-group-inline {
        flex-direction: column;
    }
    .step-detailed {
        flex-direction: column;
        text-align: center;
    }
    .step-connector {
        margin: 0 auto;
    }
}

/* ========== CITY GRID SECTION (Homepage) ========== */
.city-grid-section {
    background: var(--green-dark);
    padding: 60px 2rem;
    position: relative;
}
.city-grid-section .container {
    max-width: 1200px;
    margin: 0 auto;
}
.city-grid-section h2 {
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.city-grid-section .section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}
.city-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 2rem;
}
.city-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.city-card:hover {
    border-color: var(--green-mint);
    transform: translateY(-4px);
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}
.city-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}
.city-card span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}
.city-card:hover span {
    color: rgba(255,255,255,0.75);
}
.city-card::after {
    content: '→';
    font-size: 1rem;
    color: var(--green-mint);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-4px);
    margin-top: 4px;
}
.city-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}
.city-grid-note {
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    font-style: italic;
}

/* ========== FOOTER CITIES ========== */
.footer-cities {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.8;
}
.footer-cities-label {
    color: rgba(255,255,255,0.45);
    margin-right: 8px;
}
.footer-cities a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-cities a:hover {
    color: var(--white);
}
.footer-cities-sep {
    color: rgba(255,255,255,0.25);
    margin: 0 6px;
}

/* City grid responsive */
@media (max-width: 968px) {
    .city-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .city-grid-section h2 {
        font-size: 1.7rem;
    }
}
@media (max-width: 640px) {
    .city-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .city-grid-section {
        padding: 40px 1rem;
    }
    .city-card {
        padding: 16px 12px;
    }
    .city-card h3 {
        font-size: 1rem;
    }
    .city-card span {
        font-size: 0.8rem;
    }
    .city-grid-section h2 {
        font-size: 1.5rem;
    }
    .footer-cities {
        line-height: 2.2;
    }
}
