* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #181518;
    font-family: 'Open Sans', sans-serif;
    color: #b5b5b5;
    line-height: 1.5;
}

.get_container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}


.get_title,
.get_title-lg,
.get_section-title {
    font-family: 'Source Sans 3', sans-serif;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.get_section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.get_text {
    color: #b5b5b5;
    font-size: 1rem;
    line-height: 1.6;
}


.get_btn {
    display: inline-block;
    background: #cfab82;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 16px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.get_btn:hover {
    background: #e2c29c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.get_block-bg {
    background: #231f20;
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform 0.2s;
}


.get_header {
    background: #0c0c0c;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-top: 1px solid #cfab82;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.get_header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.get_logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

.get_logo-area img {
    height: 42px;
    width: auto;
}

.get_brand {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: -0.5px;
}


.get_nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.get_nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.get_nav-list a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    transition: 0.2s;
}

.get_nav-list a:hover {
    color: #cfab82;
}

.get_menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}


.get_banner {
    padding: 100px 0 100px;
    background: url('../images/hero-img.jpg') left center no-repeat;
    background-size: cover;
}

.get_banner-inner {
    max-width: 60%;
}

.get_banner-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.get_banner-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.get_btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


.get_advantages {
    padding: 70px 0;
}

.get_grid-3 {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.get_advantage-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.get_advantage-card img {
    width: 64px;
    margin-bottom: 24px;
}

.get_advantage-card h3 {
    font-family: 'Source Sans 3', sans-serif;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 12px;
}


.get_about,
.get_whyus {
    padding: 70px 0;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.get_about-img,
.get_whyus-img {
    flex: 1;
}

.get_about-img img,
.get_whyus-img img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    display: block;
}

.get_about-content,
.get_whyus-content {
    flex: 1;
}

.get_list-styled {
    list-style: none;
    margin: 24px 0 32px;
}

.get_list-styled li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    font-weight: 500;
}

.get_list-styled li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #cfab82;
    font-size: 1.2rem;
}


.get_tools {
    padding: 70px 0;
}

.get_tools-header {
    text-align: left;
    margin-bottom: 48px;
}

.get_tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.get_tool-card {
    background: #231f20;
    border-radius: 24px;
    padding: 30px 24px;
    transition: all 0.25s;
}

.get_tool-card:hover {
    transform: translateY(-6px);
    background: #2d282a;
}

.get_tool-card img {
    height: 54px;
    margin-bottom: 20px;
}

.get_tool-card h4 {
    font-family: 'Source Sans 3', sans-serif;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.get_btn-center {
    text-align: center;
    margin-top: 20px;
}


.get_cta {
    background: #231f20 url('../images/bg2.png') center no-repeat;
    background-size: cover;
    border-radius: 40px;
    text-align: center;
    padding: 70px 30px;
    margin: 40px 0 70px;
}

.get_cta .get_title {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.get_cta .get_text {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}


.get_footer {
    background: #111011;
    padding: 60px 0 30px;
    margin-top: 40px;
}

.get_footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.get_footer-col {
    flex: 1;
    min-width: 180px;
}

.get_footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.get_footer-logo img {
    height: 44px;
}

.get_footer-col h4 {
    font-family: 'Source Sans 3', sans-serif;
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.get_footer-col ul {
    list-style: none;
}

.get_footer-col ul li {
    margin-bottom: 12px;
}

.get_footer-col a {
    color: #b5b5b5;
    text-decoration: none;
    transition: 0.2s;
}

.get_footer-col a:hover {
    color: #cfab82;
}

.get_footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #2a2729;
    font-size: 0.85rem;
}

.get_legal-links {
    display: flex;
    gap: 28px;
}

.get_legal-links a {
    color: #b5b5b5;
}

.get_page-header {
    padding: 60px 0 40px;
}

.get_breadcrumb {
    display: flex;
    gap: 12px;
    list-style: none;
    margin-top: 16px;
    font-size: 0.9rem;
}

.get_breadcrumb li a {
    color: #cfab82;
    text-decoration: none;
}

.get_breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 12px;
    color: #5a5a5a;
}

.get_breadcrumb li:last-child {
    color: #8a8a8a;
}


.get_contact-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.get_contact-card {
    flex: 1;
    min-width: 250px;
    background: #231f20;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: transform 0.2s;
}

.get_contact-card:hover {
    transform: translateY(-4px);
}

.get_contact-card h3 {
    font-family: 'Source Sans 3', sans-serif;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.get_contact-card p {
    color: #b5b5b5;
    font-size: 1rem;
    line-height: 1.5;
}

.get_contact-card a {
    color: #cfab82;
    text-decoration: none;
}

.get_contact-card a:hover {
    text-decoration: underline;
}


.get_form-section {
    background: #231f20;
    border-radius: 28px;
    padding: 50px 48px;
    margin-bottom: 80px;
}

.get_form-title {
    text-align: center;
    margin-bottom: 40px;
}

.get_form-title h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.get_form-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.get_form-group {
    flex: 1;
    min-width: 200px;
}

.get_form-group.full-width {
    width: 100%;
    flex: 100%;
}

.get_form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: #ddd;
}

.get_form-group input,
.get_form-group select,
.get_form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #2c2829;
    border: 1px solid #3d383a;
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #fff;
    transition: 0.2s;
}

.get_form-group input:focus,
.get_form-group select:focus,
.get_form-group textarea:focus {
    outline: none;
    border-color: #cfab82;
    background: #332e30;
}

.get_form-group textarea {
    resize: vertical;
    min-height: 120px;
}


.get_checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0 24px;
}

.get_checkbox-group input {
    width: 20px;
    height: 20px;
    accent-color: #cfab82;
    cursor: pointer;
}

.get_checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    cursor: pointer;
}


.get_submit-btn {
    background: #cfab82;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 16px 40px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    max-width: 260px;
}

.get_submit-btn:hover {
    background: #e2c29c;
    transform: translateY(-2px);
}


.get_thankyou-message {
    background: #1e2a1f;
    padding: 18px 24px;
    border-radius: 16px;
    margin-top: 28px;
    text-align: center;
    font-weight: 600;
    color: #d4d4d4;
}


@media (max-width: 768px) {
    .get_container {
        padding: 0 20px;
    }

    .get_section-title {
        font-size: 1.8rem;
    }

    .get_form-section {
        padding: 32px 24px;
    }

    .get_contact-grid {
        gap: 20px;
    }
}

.get_hero-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 90px;
    align-items: center;
}

.get_hero-left {
    flex: 1.2;
}

.get_stats-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.get_stat-item {
    background: #231f20;
    border-radius: 20px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: transform 0.2s;
}

.get_stat-item:hover {
    transform: translateX(6px);
}

.get_stat-number {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #cfab82;
    line-height: 1;
    min-width: 85px;
    text-align: center;
}

.get_stat-text {
    font-size: 1rem;
    font-weight: 500;
    color: #e0e0e0;
    line-height: 1.4;
}


.get_about-story {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 90px;
}

.get_story-img {
    flex: 1;
}

.get_story-img img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    display: block;
}

.get_story-content {
    flex: 1;
}

.get_story-content p {
    margin-bottom: 1.2rem;
}


@media (max-width: 992px) {
    .get_hero-stats {
        flex-direction: column;
        gap: 40px;
    }

    .get_stats-grid {
        width: 100%;
    }

    .get_about-story {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .get_section-title {
        font-size: 1.8rem;
    }

    .get_stat-number {
        font-size: 2.5rem;
        min-width: 70px;
    }

    .get_stat-item {
        padding: 18px 22px;
    }
}


.get_tools-showcase {
    margin-bottom: 90px;
}

.get_section-desc {
    max-width: 70%;
    margin-bottom: 48px;
}

.get_tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.get_tool-card {
    background: #231f20;
    border-radius: 24px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.get_tool-card:hover {
    transform: translateY(-6px);
    background: #2d282a;
}

.get_tool-icon {
    width: 56px;
    margin-bottom: 24px;
}

.get_tool-card h3 {
    font-family: 'Source Sans 3', sans-serif;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.get_tool-features {
    list-style: none;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #3a3436;
}

.get_tool-features li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.get_tool-features li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #cfab82;
}


.get_workflow-deep {
    background: #231f20;
    border-radius: 32px;
    padding: 60px 50px;
    margin-bottom: 90px;
}

.get_workflow-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.get_features-2col {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.get_feature-block {
    flex: 1;
    min-width: 260px;
}

.get_feature-block h4 {
    font-family: 'Source Sans 3', sans-serif;
    color: #cfab82;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.get_feature-list {
    list-style: none;
}

.get_feature-list li {
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
}

.get_feature-list li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #cfab82;
    font-size: 1.1rem;
}

.get_badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
    justify-content: center;
}

.get_badge {
    background: #2c2628;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #cfab82;
    letter-spacing: 0.5px;
}


@media (max-width: 992px) {
    .get_section-desc {
        max-width: 100%;
    }

    .get_workflow-deep {
        padding: 40px 28px;
    }
}

@media (max-width: 768px) {
    .get_section-title {
        font-size: 1.8rem;
    }

    .get_tools-grid {
        grid-template-columns: 1fr;
    }

    .get_features-2col {
        flex-direction: column;
        gap: 32px;
    }
}

.get_legal-content {
    background: #231f20;
    border-radius: 28px;
    padding: 50px 48px;
    margin-bottom: 80px;
}

.get_legal-content h2 {
    font-family: 'Source Sans 3', sans-serif;
    color: #cfab82;
    font-size: 1.6rem;
    margin: 1.8rem 0 1rem;
}

.get_legal-content h2:first-of-type {
    margin-top: 0;
}

.get_legal-content h3 {
    font-family: 'Source Sans 3', sans-serif;
    color: #fff;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
}

.get_legal-content p {
    margin-bottom: 1rem;
}

.get_legal-content ul,
.get_legal-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.get_legal-content li {
    margin-bottom: 0.5rem;
}

.get_legal-content a {
    color: #cfab82;
    text-decoration: none;
}

.get_legal-content a:hover {
    text-decoration: underline;
}

.get_legal-footer-note {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #3a3436;
    font-size: 0.85rem;
}

.get_badge-date {
    display: inline-block;
    background: #2c2628;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    color: #cfab82;
    margin-bottom: 24px;
}


.get_page-header {
    padding: 60px 0 40px;
}

.get_breadcrumb {
    display: flex;
    gap: 12px;
    list-style: none;
    margin-top: 16px;
    font-size: 0.9rem;
}

.get_breadcrumb li a {
    color: #cfab82;
    text-decoration: none;
}

.get_breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 12px;
    color: #5a5a5a;
}

.get_breadcrumb li:last-child {
    color: #8a8a8a;
}


@media (max-width: 768px) {
    .get_legal-content {
        padding: 32px 24px;
    }

    .get_section-title {
        font-size: 1.8rem;
    }
}





























@media (max-width: 992px) {
    .get_container {
        padding: 0 20px;
    }

    .get_banner-inner {
        max-width: 80%;
    }

    .get_section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .get_menu-icon {
        display: block;
    }

    .get_nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 70%;
        height: calc(100vh - 80px);
        background: #38373c;
        flex-direction: column;
        padding: 40px 30px;
        gap: 28px;
        transition: 0.3s;
        z-index: 999;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    }

    .get_nav-list.active {
        left: 0;
    }

    .get_nav-list a {
        font-size: 1.3rem;
    }

    .get_banner-inner {
        max-width: 100%;
    }

    .get_banner-title {
        font-size: 2.5rem;
    }

    .get_about,
    .get_whyus {
        flex-direction: column;
    }

    .get_grid-3 {
        flex-direction: column;
    }

    .get_tools-grid {
        grid-template-columns: 1fr;
    }

    .get_footer-grid {
        flex-direction: column;
    }

    .get_footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

img {
    pointer-events: none;
}

@media(max-width: 500px) {
    .get_banner {
        padding: 70px 0 30px 0;
    }

    .get_about,
    .get_whyus {
        padding: 50px 0;
    }

    .get_cta {
        border-radius: 20px;
    }

    .get_cta .get_title {
        line-height: 1.2;
    }
}