:root {
    --bg: #fefcf9;
    --white: #fff;
    --cream: #f8f4ee;
    --cream-2: #f2ece3;
    --text: #2d2a26;
    --text-2: #5c5650;
    --text-3: #8a827a;
    --text-light: #b5ada5;
    --primary: #1b4d3e;
    --primary-l: #2a6b56;
    --primary-ll: #e8f0ec;
    --primary-d: #143b2f;
    --accent: #c47b3a;
    --accent-l: #d4944f;
    --accent-ll: #fbf3ea;
    --border: #e6ded4;
    --border-l: #f0eae1;
    --serif: "Lora", Georgia, serif;
    --sans: "DM Sans", -apple-system, sans-serif;
    --radius: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --shadow: 0 2px 12px rgba(45, 42, 38, 0.06);
    --shadow-lg: 0 8px 32px rgba(45, 42, 38, 0.08);
    --shadow-xl: 0 16px 48px rgba(45, 42, 38, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max: 1120px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

::selection {
    background: var(--primary);
    color: #fff;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.topbar {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    padding: 8px 0;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar a {
    color: #fff;
    font-weight: 600;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-left svg {
    width: 13px;
    height: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.topbar-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 10px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.03em;
}

.nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-l);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow);
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo span {
    color: var(--accent);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-2);
}

.nav-phone svg {
    width: 15px;
    height: 15px;
    color: var(--primary);
}

.btn-nav {
    padding: 9px 22px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(196, 123, 58, 0.2);
}

.btn-nav:hover {
    background: var(--accent-l);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(196, 123, 58, 0.3);
}

.hero {
    padding: 64px 0 72px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient( circle, rgba(196, 123, 58, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: start;
}

.hero-content {
    padding-top: 12px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-ll);
    border: 1px solid rgba(27, 77, 62, 0.12);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}

.hero-badge svg {
    width: 12px;
    height: 12px;
}

.hero h1 {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.hero h1 em {
    color: var(--primary);
    font-style: normal;
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 480px;
}

.hero-checks {
    list-style: none;
    margin-bottom: 28px;
}

.hero-checks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--text-2);
}

.hero-checks li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-primary {
    padding: 13px 28px;
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 14px rgba(27, 77, 62, 0.2);
}

.btn-primary:hover {
    background: var(--primary-l);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(27, 77, 62, 0.25);
}

.btn-outline {
    padding: 13px 24px;
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    background: transparent;
    border: 1.5px solid var(--border);
    cursor: pointer;
    font-family: var(--sans);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-3);
}

.hero-proof .stars {
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.hero-form {
    background: var(--white);
    border: 1px solid var(--border-l);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px 3px 0 0;
}

.hero-form h3 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}

.hero-form .form-sub {
    font-size: 0.8rem;
    color: var(--text-3);
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    background: var(--cream);
    border: 1.5px solid var(--border-l);
    border-radius: 6px;
    font-family: var(--sans);
    font-size: 0.88rem;
    color: var(--text);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.08);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 50px;
}

.form-group select {
    cursor: pointer;
    color: var(--text-2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.form-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.form-chips label {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}

.form-chips label:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.form-chips input {
    display: none;
}

.form-chips label:has(input:checked) {
    background: var(--primary-ll);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-form {
    width: 100%;
    padding: 13px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--sans);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 14px rgba(27, 77, 62, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-form:hover {
    background: var(--primary-l);
    box-shadow: 0 6px 24px rgba(27, 77, 62, 0.25);
    transform: translateY(-1px);
}

.form-note {
    text-align: center;
    font-size: 0.68rem;
    color: var(--text-light);
    margin-top: 8px;
    line-height: 1.5;
}

.form-note a {
    color: var(--primary);
    font-weight: 600;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-alt {
    background: var(--cream);
}

.section-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.8;
    max-width: 560px;
}

.section-desc.centered {
    margin: 0 auto;
}

.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--border-l);
    border-bottom: 1px solid var(--border-l);
    padding: 24px 0;
}

.trust-bar .container {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-item {
    text-align: center;
}

.trust-num {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.trust-label {
    font-size: 0.72rem;
    color: var(--text-3);
    font-weight: 500;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 36px;
}

.about-text p {
    font-size: 0.92rem;
    color: var(--text-2);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-visual {
    background: var(--cream);
    border: 1px solid var(--border-l);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.about-visual::before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: var(--serif);
    font-size: 8rem;
    color: rgba(27, 77, 62, 0.06);
    line-height: 1;
}

.about-quote {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.about-author {
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--text-3);
    font-style: normal;
    font-family: var(--sans);
    font-weight: 600;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    transition: var(--transition);
}

.step:hover .step-num {
    background: var(--primary);
    color: #fff;
}

.step h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.step p {
    font-size: 0.8rem;
    color: var(--text-3);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.srv-card {
    background: var(--white);
    padding: 28px 22px;
    transition: var(--transition);
    position: relative;
}

.srv-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.srv-card:hover::before {
    transform: scaleX(1);
}

.srv-card:hover {
    z-index: 2;
}

.srv-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.srv-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.srv-card p {
    font-size: 0.8rem;
    color: var(--text-3);
    line-height: 1.6;
}

.guarantee {
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.guarantee h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.guarantee>div:first-child>p {
    font-size: 0.92rem;
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 20px;
}

.guarantee-list {
    list-style: none;
}

.guarantee-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.88rem;
    font-weight: 500;
}

.guarantee-list svg {
    width: 18px;
    height: 18px;
    color: var(--accent-l);
    flex-shrink: 0;
}

.guarantee-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
}

.guarantee-badge svg {
    width: 48px;
    height: 48px;
    color: var(--accent-l);
    margin-bottom: 12px;
}

.guarantee-badge h4 {
    font-family: var(--serif);
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.guarantee-badge p {
    font-size: 0.82rem;
    opacity: 0.75;
    line-height: 1.7;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.testi {
    background: var(--white);
    border: 1px solid var(--border-l);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.testi:hover {
    box-shadow: var(--shadow);
    border-color: var(--border);
}

.testi-stars {
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.testi-text {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-ll);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--primary);
}

.testi-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
}

.testi-role {
    font-size: 0.72rem;
    color: var(--text-3);
}

.faq-list {
    max-width: 700px;
    margin: 32px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-l);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-l);
}

.faq-q {
    padding: 18px 0;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.faq-q:hover {
    color: var(--primary);
}

.faq-q svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--text-3);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-q svg {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-a-inner {
    padding: 0 0 18px;
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.8;
}

.cta-section {
    background: var(--primary);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at 30% 50%, rgba(196, 123, 58, 0.1), transparent 60%);
}

.cta-section h2 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
}

.cta-section>div>p:first-of-type {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    line-height: 1.8;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.btn-cta-white {
    padding: 14px 30px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    background: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.btn-cta-ghost {
    padding: 14px 26px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-family: var(--sans);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.cta-urgency {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    position: relative;
}

.bottom-form-section {
    padding: 80px 0;
    background: var(--cream);
}

.bottom-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 32px;
}

.bottom-info h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.bottom-info p {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--text-2);
}

.contact-list li svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-list li strong {
    color: var(--text);
    font-weight: 600;
}

.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.6);
    padding: 48px 0 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    flex-wrap: wrap;
    gap: 8px;
}

.sticky-mob {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(254, 252, 249, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    z-index: 200;
}

.sticky-mob .container {
    display: flex;
    gap: 8px;
    width: 100%;
    padding: 0;
}

.sticky-b {
    flex: 1;
    padding: 12px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
}

.sticky-green {
    background: var(--primary);
    color: #fff;
}

.sticky-dark {
    background: var(--text);
    color: #fff;
}

.exit-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 300;
    align-items: center;
    justify-content: center;
}

.exit-overlay.show {
    display: flex;
}

.exit-popup {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    max-width: 420px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.exit-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    background: var(--cream);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit-close svg {
    width: 16px;
    height: 16px;
    color: var(--text-3);
}

.exit-popup h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.exit-popup p {
    font-size: 0.88rem;
    color: var(--text-2);
    margin-bottom: 20px;
    line-height: 1.7;
}

.exit-popup .form-group {
    text-align: left;
}

a.nav-logo img {
    width: 220px;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-checks {
        display: inline-block;
        text-align: left;
    }
    .hero-ctas {
        justify-content: center;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .guarantee {
        grid-template-columns: 1fr;
    }
    .bottom-form-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    a.nav-logo img {
        width: 160px;
    }
    .nav-phone {
        display: none;
    }
    .nav-right {
        gap: 10px;
    }
    .btn-nav {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section {
        padding: 50px 0;
    }
    .trust-bar .container {
        gap: 24px;
    }
    .services-grid,
    .testi-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer .container>div:first-child {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-links {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .sticky-mob {
        display: block;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .guarantee {
        padding: 32px 20px;
    }
    .cta-btns {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero {
        padding: 40px 0 48px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .trust-bar .container {
        gap: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .trust-num {
        font-size: 1.4rem;
    }
    .btn-primary, .btn-outline, .btn-form, .btn-cta-white {
        width: 100%;
        justify-content: center;
    }
    a.nav-logo img {
        width: 140px;
    }
}

#chat-toast {
    position: fixed;
    bottom: 80px; /* Adjusted for sticky mobile bar */
    left: 15px;
    right: 15px;
    max-width: 380px;
    margin: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 12px;
    display: none;
    z-index: 999999;
    font-family: var(--sans);
}

.toast-wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

#toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.toast-agent {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
    color: var(--text);
}

.toast-message {
    font-size: 13px;
    color: var(--text-2);
    margin-bottom: 10px;
    line-height: 1.4;
}

.toast-actions {
    display: flex;
    gap: 8px;
}

.toast-actions button {
    border: none;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

#toast-dismiss {
    background: var(--cream);
    color: var(--text);
}

#toast-reply {
    background: var(--primary);
    color: white;
}

#chat-toast.show {
    display: block;
    animation: toastSlide .35s ease;
}

@keyframes toastSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}