:root {
    --bg: #0d2f23;
    --bg-deep: #06261b;
    --surface: #113a2c;
    --surface-soft: #164635;
    --line: rgba(149, 192, 168, 0.2);
    --text: #f2f7f4;
    --text-muted: #b6d0c0;
    --brand: #18b45b;
    --brand-2: #0f8d47;
    --brand-soft: rgba(24, 180, 91, 0.18);
    --accent: #f5d94d;
    --danger: #d84e4e;
    --shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
    --radius: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Noto Sans Armenian", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 20% 10%, #17563f 0%, var(--bg) 38%, var(--bg-deep) 100%);
    line-height: 1.45;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 120;
    backdrop-filter: blur(10px);
    background: rgba(6, 38, 27, 0.78);
    border-bottom: 1px solid transparent;
    transition: all 0.25s ease;
}

.navbar.scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    min-height: 76px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    display: grid;
    place-items: center;
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(24, 180, 91, 0.2);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
}

.logo-accent {
    color: var(--accent);
}

.nav-links {
    margin-left: auto;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    display: inline-block;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.nav-actions {
    margin-left: 8px;
}

.nav-cta,
.submit-btn,
.cta-btn,
.service-link {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    border: 0;
    border-radius: 12px;
    padding: 11px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.submit-btn:hover,
.cta-btn:hover,
.service-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(15, 141, 71, 0.35);
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px auto;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 52px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(6px);
}

.hero-shape-1 {
    width: 260px;
    height: 260px;
    top: -80px;
    right: -40px;
    background: rgba(24, 180, 91, 0.24);
}

.hero-shape-2 {
    width: 180px;
    height: 180px;
    top: 210px;
    left: -60px;
    background: rgba(245, 217, 77, 0.14);
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    bottom: -160px;
    left: 40%;
    background: rgba(24, 180, 91, 0.14);
}

.hero-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 26px;
    position: relative;
    z-index: 1;
}

.hero-priority-badge {
    grid-column: 1 / -1;
    width: fit-content;
    background: rgba(245, 217, 77, 0.16);
    color: #f7e37b;
    border: 1px solid rgba(245, 217, 77, 0.4);
    border-radius: 999px;
    font-size: 13px;
    padding: 8px 14px;
}

.hero-title {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 52%, #ffe77f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    color: var(--text-muted);
    max-width: 560px;
    font-size: 18px;
    margin-bottom: 26px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.stat-item {
    min-width: 130px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(20, 63, 46, 0.9), rgba(9, 42, 30, 0.9));
    border-radius: 14px;
    padding: 13px 14px;
}

.stat-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    color: var(--text-muted);
    font-size: 13px;
}

.hero-form-wrapper {
    align-self: start;
}

.form-card {
    background: linear-gradient(165deg, rgba(23, 71, 52, 0.96), rgba(10, 44, 31, 0.96));
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.form-header h2 {
    margin-bottom: 6px;
    font-size: 24px;
}

.form-header p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.slider-group {
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.15);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 16px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.slider-value {
    font-weight: 700;
    color: var(--accent);
}

.range-slider-container {
    position: relative;
}

.range-slider {
    width: 100%;
    appearance: none;
    background: transparent;
    position: relative;
    z-index: 2;
}

.range-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--brand);
    box-shadow: 0 0 0 4px rgba(24, 180, 91, 0.2);
}

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 4px solid var(--brand);
    border-radius: 50%;
    background: #fff;
}

.range-track {
    position: absolute;
    inset: 7px 0;
    height: 6px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    overflow: hidden;
}

.range-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #1fd268, #f3dc58);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 9px;
    color: var(--text-muted);
    font-size: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    color: #d5e8dc;
}

.form-group input,
.form-group select,
.radio-group {
    width: 100%;
    background: rgba(6, 29, 21, 0.72);
    border: 1px solid rgba(149, 192, 168, 0.26);
    color: #fff;
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4be08b;
    box-shadow: 0 0 0 3px rgba(75, 224, 139, 0.2);
}

.radio-group {
    display: flex;
    gap: 10px;
    background: transparent;
    border: 0;
    padding: 0;
}

.radio-option {
    flex: 1;
    border: 1px solid rgba(149, 192, 168, 0.26);
    background: rgba(6, 29, 21, 0.72);
    border-radius: 10px;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-option input {
    display: none;
}

.radio-custom {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
}

.radio-option input:checked + .radio-custom {
    border-color: var(--brand);
    background: radial-gradient(circle at center, var(--brand) 42%, transparent 43%);
}

.submit-btn {
    width: 100%;
    margin-top: 6px;
}

.submit-btn .btn-loader {
    display: none;
}

.submit-btn.loading .btn-loader {
    display: inline-flex;
}

.submit-btn.loading .btn-arrow,
.submit-btn.loading .btn-text {
    display: none;
}

.form-note {
    margin-top: 10px;
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
}

.trusted-section,
.services-section,
.how-section,
.advantages-section,
.testimonials-section,
.faq-section,
.contact-section {
    padding: 64px 0;
}

.trusted-section {
    padding-top: 22px;
}

.trusted-label {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.trusted-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    color: #d6eadc;
    border-radius: 999px;
    padding: 9px 13px;
    font-size: 14px;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-tag {
    display: inline-block;
    border-radius: 999px;
    padding: 6px 12px;
    background: var(--brand-soft);
    border: 1px solid rgba(24, 180, 91, 0.38);
    color: #bdf0d1;
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 0.4px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 10px;
}

.section-title.left-align {
    text-align: left;
}

.section-desc {
    color: var(--text-muted);
}

.services-grid,
.testimonials-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card,
.step-card,
.testimonial-card,
.contact-card,
.faq-item,
.visual-card {
    background: linear-gradient(150deg, rgba(22, 70, 53, 0.84), rgba(8, 34, 24, 0.9));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
}

.service-card h3 {
    margin: 12px 0 8px;
}

.service-card p {
    color: var(--text-muted);
    min-height: 68px;
}

.service-rate {
    margin: 10px 0 12px;
    color: var(--accent);
    font-weight: 700;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: #fff;
}

.gradient-bg-1,
.gradient-bg-2,
.gradient-bg-3,
.gradient-bg-4 {
    background: linear-gradient(135deg, var(--brand), #1f7c45);
}

.service-card.featured {
    position: relative;
    border-color: rgba(245, 217, 77, 0.44);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: #1f2614;
    font-size: 11px;
    font-weight: 800;
    border-radius: 999px;
    padding: 5px 8px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    align-items: center;
}

.step-card {
    text-align: center;
}

.step-number {
    font-size: 12px;
    color: var(--text-muted);
}

.step-icon {
    width: 52px;
    height: 52px;
    margin: 8px auto 10px;
    border-radius: 50%;
    background: rgba(24, 180, 91, 0.22);
    display: grid;
    place-items: center;
    color: #a8f1c8;
}

.step-card p,
.testimonial-text,
.contact-card p,
.advantage-item p {
    color: var(--text-muted);
}

.step-connector {
    color: var(--accent);
    text-align: center;
}

.advantages-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: start;
}

.advantage-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.12);
}

.advantage-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(24, 180, 91, 0.22);
    color: #b4f2ce;
    display: grid;
    place-items: center;
}

.visual-card {
    min-height: 340px;
    position: relative;
    overflow: hidden;
}

.visual-blob {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24, 180, 91, 0.35), rgba(24, 180, 91, 0.04));
    top: 30px;
    right: -40px;
}

.visual-stat-card {
    position: absolute;
    border: 1px solid var(--line);
    background: rgba(6, 30, 21, 0.72);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.visual-stat-card i {
    color: var(--accent);
}

.card-1 {
    top: 22px;
    left: 20px;
}

.card-2 {
    top: 132px;
    right: 24px;
}

.card-3 {
    bottom: 24px;
    left: 44px;
}

.vs-number {
    display: block;
    font-weight: 800;
}

.vs-label {
    color: var(--text-muted);
    font-size: 12px;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 10px;
}

.testimonial-author {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    background: rgba(24, 180, 91, 0.25);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.faq-question {
    width: 100%;
    background: transparent;
    color: #fff;
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    transition: max-height 0.25s ease;
}

.faq-item.active .faq-answer {
    margin-top: 10px;
    max-height: 180px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.cta-section {
    padding: 16px 0 50px;
}

.cta-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 217, 77, 0.4);
    border-radius: 20px;
    background: linear-gradient(140deg, #134a35, #0b2e21);
    padding: 34px 26px;
    text-align: center;
}

.cta-card h2 {
    font-size: clamp(26px, 4vw, 40px);
    margin-bottom: 8px;
}

.cta-card p {
    color: #d6ebdf;
    margin-bottom: 16px;
}

.cta-bg-shape {
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    top: -120px;
    border-radius: 50%;
    background: rgba(245, 217, 77, 0.16);
}

.contact-card {
    text-align: center;
}

.contact-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 10px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(24, 180, 91, 0.2);
    color: var(--accent);
}

.footer {
    border-top: 1px solid var(--line);
    padding: 36px 0 16px;
    background: rgba(3, 22, 15, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 20px;
}

.footer-desc {
    margin: 10px 0 14px;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: #d8efe0;
}

.footer-links-group h4 {
    margin-bottom: 10px;
}

.footer-links-group li {
    list-style: none;
    margin-bottom: 8px;
}

.footer-links-group a {
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 20px;
    padding-top: 14px;
    color: var(--text-muted);
    text-align: center;
    font-size: 13px;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 200;
}

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

.modal-content {
    width: min(450px, 100%);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #113a2c;
    padding: 24px;
    text-align: center;
}

.modal-icon {
    font-size: 46px;
    color: #4be08b;
    margin-bottom: 10px;
}

.modal-content p {
    color: var(--text-muted);
    margin: 8px 0 16px;
}

.modal-close-btn {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: 10px 24px;
    cursor: pointer;
    font-weight: 700;
}

@media (max-width: 1080px) {
    .services-grid,
    .testimonials-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .step-connector {
        display: none;
    }

    .advantages-layout,
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        order: 1;
    }

    .hero-form-wrapper {
        order: 2;
    }
}

@media (max-width: 820px) {
    .mobile-toggle {
        display: block;
    }

    .nav-actions {
        display: none;
    }

    .nav-links {
        position: absolute;
        left: 14px;
        right: 14px;
        top: 80px;
        background: #0d3527;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 10px;
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .navbar.mobile-open .nav-links {
        display: flex;
    }

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

@media (max-width: 640px) {
    .services-grid,
    .testimonials-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 40px;
    }

    .form-card {
        padding: 18px;
    }
}
