:root {
    --primary: #c96705;
    --primary-dark: #a55300;
    --secondary: #3e4ea6;
    --secondary-dark: #2f3d87;
    --text: #4b5563;
    --muted: #6b7280;
    --light-bg: #f7f3ee;
    --border: #e5e7eb;
    --white: #ffffff;
    --primary-soft: #fff1e6;
    --secondary-soft: #eef0ff;
    --accent: #ffb15a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--secondary);
    background: linear-gradient(180deg, #fffdfb 0%, #fffaf6 100%);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Plus Jakarta Sans", sans-serif;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1180px;
}


/* ================= NAVBAR ================= */

.navbar {
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(15px);
    transition: all .3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 12px 0;
    border-bottom-color: var(--border);
    box-shadow: 0 5px 25px rgba(0, 0, 0, .04);
}

.navbar-brand,
.footer-brand {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 9px;
}

.navbar-brand > span,
.footer-brand > span {
    width: 37px;
    height: 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
}

.navbar-brand > span {
    color: #fff;
}

.navbar-brand > :not(span) {
    color: var(--secondary);
}

.navbar-brand span:last-child,
.footer-brand span:last-child {
    color: var(--primary);
}

.navbar-nav .nav-link {
    color: #4b5563;
    font-weight: 600;
    font-size: 14px;
    padding: 9px 14px !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.nav-login {
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, #e07b1b 100%);
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: 9px;
    padding: 11px 20px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(201, 103, 5, 0.2);
    transition: .25s ease;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #bc6809 100%);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}


/* ================= HERO ================= */

.hero-section {
    min-height: 760px;
    padding: 160px 0 100px;
    position: relative;
    background:
        radial-gradient(circle at 90% 15%, rgba(201, 103, 5, .08), transparent 28%),
        radial-gradient(circle at 10% 90%, rgba(62, 78, 166, .08), transparent 30%),
        linear-gradient(135deg, #fffefb 0%, #fff8f1 50%, #f9f7ff 100%);
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 13px 7px 7px;
    border-radius: 50px;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 24px;
}

.hero-badge span {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
}

.hero-section h1 {
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -3px;
    font-weight: 800;
    max-width: 650px;
}

.hero-section h1 span,
.section-heading h2 span,
.section-title span,
.quote-info h2 span,
.cta-content h2 span {
    color: var(--primary);
}

.hero-text {
    color: var(--text);
    font-size: 18px;
    line-height: 1.8;
    max-width: 570px;
    margin: 25px 0 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-outline-custom {
    border: 1px solid #d6d8e1;
    color: var(--secondary);
    background: #fff;
    border-radius: 9px;
    padding: 11px 20px;
    font-weight: 700;
}

.btn-outline-custom:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 35px;
}

.avatar-group {
    display: flex;
}

.avatar-group span {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e9e7ff;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    margin-left: -7px;
}

.avatar-group span:first-child {
    margin-left: 0;
}

.avatar-group span:nth-child(2) {
    background: #e8f3ff;
    color: #2673d9;
}

.avatar-group span:nth-child(3) {
    background: #eaf8ef;
    color: #198754;
}

.avatar-group span:last-child {
    background: #fff;
    color: #6b7280;
}

.stars {
    color: #f7b731;
    font-size: 11px;
}

.hero-trust small {
    color: var(--muted);
    font-size: 12px;
}


/* Hero Visual */

.hero-visual {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(62, 78, 166, 0.12);
    box-shadow: 0 30px 70px rgba(31, 35, 60, .13);
    transform: rotate(1.5deg);
}

.hero-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(62, 78, 166, 0.08);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.image-badge strong {
    display: block;
    font-size: 16px;
    color: var(--secondary);
}

.image-badge small {
    color: #68707d;
    font-size: 10px;
}

.image-badge-top {
    top: 20px;
    right: 20px;
}

.image-badge-bottom {
    left: 20px;
    bottom: 20px;
}

.document-card {
    width: 480px;
    max-width: 90%;
    background: #fff;
    border: 1px solid #e6e7ed;
    border-radius: 17px;
    box-shadow: 0 30px 70px rgba(31, 35, 60, .13);
    overflow: hidden;
    transform: rotate(1.5deg);
}

.document-top {
    padding: 20px;
    border-bottom: 1px solid #eeeef3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.document-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.doc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eeedff;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.document-title strong {
    display: block;
    font-size: 13px;
}

.document-title small {
    color: #9ca3af;
    font-size: 11px;
}

.status-pill {
    color: #159447;
    background: #eaf9f0;
    padding: 6px 9px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
}

.document-body {
    padding: 30px;
}

.doc-line {
    height: 8px;
    border-radius: 10px;
    background: #edf0f5;
    margin-bottom: 12px;
}

.width-90 {
    width: 90%;
}

.width-85 {
    width: 85%;
}

.width-75 {
    width: 75%;
}

.width-65 {
    width: 65%;
}

.text-highlight {
    line-height: 1.8;
    color: #4b5563;
    font-size: 13px;
    margin: 22px 0;
}

.removed {
    background: #ffe5e5;
    color: #e05a5a;
    text-decoration: line-through;
}

.added {
    background: #ddf8e8;
    color: #16894a;
    font-weight: 700;
}

.comment-box {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    background: #f8f8ff;
    border: 1px solid #e8e7fa;
    padding: 12px;
    border-radius: 9px;
}

.comment-avatar {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 11px;
}

.comment-box strong {
    font-size: 11px;
}

.comment-box p {
    margin: 3px 0 0;
    font-size: 10px;
    color: #7b8190;
}

.document-footer {
    background: #fafafd;
    padding: 13px 20px;
    display: flex;
    justify-content: space-between;
    color: #8a8f9b;
    font-size: 10px;
}

.floating-card {
    position: absolute;
    background: #fff;
    box-shadow: 0 20px 45px rgba(31, 35, 60, .12);
    border: 1px solid #eeeef2;
    border-radius: 13px;
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-rating {
    top: 45px;
    left: 8px;
}

.mini-icon {
    width: 35px;
    height: 35px;
    border-radius: 9px;
    background: #fff4d7;
    color: #e6a300;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card strong {
    font-size: 13px;
    display: block;
}

.floating-card small {
    color: #9ca3af;
    font-size: 10px;
}

.floating-editor {
    bottom: 55px;
    right: 0;
}

.editor-avatar {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: #dfe8ff;
    color: #4569c9;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.editor-avatar span {
    width: 8px;
    height: 8px;
    background: #2bc36c;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
}

.verified {
    color: #25b667;
    font-size: 13px;
}


/* ================= STATS ================= */

.stats-section {
    border-top: 1px solid #ececf0;
    border-bottom: 1px solid #ececf0;
    background: #fff;
}

.stat-item {
    min-height: 105px;
    border-right: 1px solid #ececf0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.stat-item strong {
    font-family: "Plus Jakarta Sans";
    font-size: 27px;
    letter-spacing: -1px;
}

.stat-item span {
    color: #8a8f9c;
    font-size: 12px;
    margin-top: 3px;
}


/* ================= GENERAL ================= */

.section-padding {
    padding: 110px 0;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 13px;
}

.section-heading h2,
.section-title {
    font-size: clamp(34px, 4vw, 46px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1.8px;
}

.section-heading p,
.section-description {
    color: var(--muted);
    line-height: 1.8;
    margin-top: 15px;
}


/* ================= SERVICES ================= */

.service-card {
    height: 100%;
    border: 1px solid #e9e9ef;
    border-radius: 15px;
    padding: 30px;
    background: #fff;
    transition: .3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(30, 34, 60, .08);
    border-color: #dcd9ff;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 22px;
}

.purple {
    background: #eeecff;
    color: #6356e8;
}

.blue {
    background: #e8f2ff;
    color: #3985e9;
}

.orange {
    background: #fff1df;
    color: #e7952e;
}

.green {
    background: #e6f8ed;
    color: #27a95e;
}

.pink {
    background: #ffeaf2;
    color: #dc4f88;
}

.cyan {
    background: #e5f8fa;
    color: #1d9dab;
}

.service-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.service-card a {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.service-card a i {
    font-size: 11px;
    margin-left: 4px;
    transition: .2s;
}

.service-card:hover a i {
    margin-left: 8px;
}

.featured-service {
    border-color: #dcd9ff;
    box-shadow: 0 15px 40px rgba(81, 70, 229, .07);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 8px;
    letter-spacing: 1px;
    font-weight: 800;
    background: #eeecff;
    color: var(--primary);
    padding: 5px 8px;
    border-radius: 50px;
}


/* ================= WHY ================= */

.why-section {
    background: var(--light-bg);
    padding: 110px 0;
}

.feature-list {
    margin-top: 35px;
}

.feature-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.feature-check {
    width: 31px;
    height: 31px;
    min-width: 31px;
    border-radius: 50%;
    background: #e8e6ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.feature-item strong {
    font-size: 14px;
}

.feature-item p {
    margin: 3px 0 0;
    color: #8a8f9c;
    font-size: 12px;
}

.uk-visual-panel {
    position: relative;
    border-radius: 17px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e7e7ec;
    box-shadow: 0 20px 55px rgba(30, 34, 60, .05);
}

.uk-visual-panel img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.mini-stat {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.mini-stat strong {
    display: block;
    font-size: 18px;
    color: var(--secondary);
}

.mini-stat span {
    display: block;
    font-size: 10px;
    color: #68707d;
}

.comparison-card {
    background: #fff;
    border: 1px solid #e7e7ec;
    border-radius: 17px;
    box-shadow: 0 20px 55px rgba(30, 34, 60, .07);
    overflow: hidden;
}

.comparison-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 27px;
    border-bottom: 1px solid #eeeef2;
}

.comparison-header span {
    font-size: 9px;
    letter-spacing: 1px;
    color: #9ca3af;
    font-weight: 800;
}

.comparison-header h4 {
    font-size: 15px;
    margin: 4px 0 0;
}

.comparison-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eeecff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.before-text,
.after-text {
    padding: 27px;
    min-height: 210px;
}

.before-text {
    border-right: 1px solid #eeeef2;
}

.before-text p,
.after-text p {
    color: #6b7280;
    font-size: 13px;
    line-height: 2;
}

.before-text mark {
    background: #ffe0e0;
    color: #db5b5b;
}

.after-text strong {
    background: #e1f8e9;
    color: #16894a;
}

.edit-summary {
    padding: 15px 27px;
    background: #fafafd;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.edit-summary span {
    color: #5d6572;
    font-size: 10px;
}

.edit-summary i {
    color: #22a65c;
    margin-right: 4px;
}


/* ================= PROCESS ================= */

.process-wrapper {
    position: relative;
}

.process-line {
    position: absolute;
    height: 1px;
    background: #dedee7;
    top: 44px;
    left: 12%;
    right: 12%;
}

.process-card {
    text-align: center;
    position: relative;
}

.process-number {
    font-size: 10px;
    color: #aaaeba;
    font-weight: 800;
    margin-bottom: 14px;
}

.process-icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    background: #fff;
    border: 1px solid #dddde6;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .04);
    border-radius: 50%;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto auto 22px;
    font-size: 18px;
}

.process-card h3 {
    font-size: 16px;
}

.process-card p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
    max-width: 210px;
    margin: 8px auto;
}


/* ================= PRICING ================= */

.pricing-section {
    padding: 110px 0;
    background: var(--light-bg);
}

.pricing-card {
    background: #fff;
    border: 1px solid #e6e7ed;
    border-radius: 17px;
    padding: 32px;
    height: 100%;
    position: relative;
    transition: .3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(30, 34, 60, .08);
}

.pricing-top h3 {
    font-size: 19px;
    margin: 18px 0 7px;
}

.pricing-top p {
    color: #8a8f9c;
    font-size: 12px;
    min-height: 38px;
}

.pricing-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: #eeecff;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.price {
    border-top: 1px solid #eeeef2;
    border-bottom: 1px solid #eeeef2;
    padding: 20px 0;
    margin: 20px 0;
}

.price small {
    color: #9ca3af;
    display: block;
    font-size: 10px;
}

.price strong {
    font-family: "Plus Jakarta Sans";
    font-size: 35px;
}

.price span {
    color: #9ca3af;
    font-size: 10px;
}

.pricing-card ul {
    padding: 0;
    margin: 0 0 25px;
    list-style: none;
}

.pricing-card li {
    color: #68707d;
    font-size: 12px;
    margin-bottom: 13px;
}

.pricing-card li i {
    color: #27aa61;
    margin-right: 8px;
}

.pricing-btn {
    width: 100%;
    border: 1px solid #dfe0e6;
    color: var(--secondary);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    padding: 11px;
}

.pricing-btn:hover {
    background: #f5f4ff;
    color: var(--primary);
}

.popular-pricing {
    border: 2px solid var(--primary);
    box-shadow: 0 15px 45px rgba(81, 70, 229, .1);
}

.popular-label {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 0 0 8px 8px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* ================= QUOTE ================= */

.quote-section {
    padding: 110px 0;
    background: #fff;
}

.quote-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 65px rgba(30, 34, 60, .1);
}

.quote-info {
    padding: 55px 45px;
    background: linear-gradient(135deg, var(--secondary) 0%, #2d397c 100%);
    color: #fff;
}

.light-label {
    color: #aaa5ff;
}

.quote-info h2 {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin: 12px 0 18px;
}

.quote-info p {
    color: #aeb4c2;
    line-height: 1.8;
    font-size: 14px;
}

.quote-benefit {
    display: flex;
    gap: 13px;
    margin-top: 28px;
}

.quote-benefit > i {
    color: #9b93ff;
    margin-top: 3px;
}

.quote-benefit strong {
    display: block;
    font-size: 13px;
}

.quote-benefit span {
    display: block;
    color: #8d94a4;
    font-size: 10px;
    margin-top: 3px;
}

.quote-form-area {
    background: #fff;
    padding: 45px;
}

.quote-form-area label:not(.upload-box) {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 7px;
    color: #3f4652;
}

.form-control,
.form-select {
    border-color: #e1e3e9;
    border-radius: 8px;
    padding: 11px 13px;
    font-size: 12px;
    box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
}

.upload-box {
    height: 43px;
    border: 1px dashed #d3d5de;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    color: #858b98;
    font-size: 11px;
    cursor: pointer;
    overflow: hidden;
}

.upload-box i {
    color: var(--primary);
}

.upload-box input {
    display: none;
}

.submit-btn {
    width: 100%;
    padding: 13px;
    margin-top: 5px;
}


/* ================= TESTIMONIALS ================= */

.testimonials-section {
    background: var(--light-bg);
}

.testimonial-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e6e7ed;
    border-radius: 15px;
    padding: 30px;
}

.quote-icon {
    color: #e0defc;
    font-size: 25px;
}

.testimonial-stars {
    color: #f6b82f;
    letter-spacing: 2px;
    font-size: 11px;
    margin: 17px 0;
}

.testimonial-card > p {
    color: #5e6674;
    font-size: 13px;
    line-height: 1.9;
    min-height: 75px;
}

.client {
    border-top: 1px solid #eeeef2;
    margin-top: 25px;
    padding-top: 18px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.client-avatar {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: #eceaff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}

.client strong {
    display: block;
    font-size: 12px;
}

.client span {
    display: block;
    color: #969ba7;
    font-size: 10px;
    margin-top: 2px;
}


/* ================= FAQ ================= */

.faq-wrapper {
    max-width: 800px;
    margin: auto;
}

.faq-wrapper .accordion-item {
    border: 1px solid #e6e7ed;
    border-radius: 9px !important;
    overflow: hidden;
    margin-bottom: 10px;
}

.accordion-button {
    padding: 19px 22px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #f8f7ff;
    color: var(--primary);
}

.accordion-body {
    color: #747b88;
    font-size: 12px;
    line-height: 1.8;
}


/* ================= FINAL CTA ================= */

.final-cta {
    padding: 40px 0 100px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, #e07d26 45%, var(--secondary) 100%);
    border-radius: 20px;
    padding: 65px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(62, 78, 166, 0.18);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 42px;
    max-width: 650px;
    letter-spacing: -1.5px;
    margin: 10px 0;
}

.cta-content h2 span {
    color: #bdb8ff;
}

.cta-content p {
    color: #d8d6ff;
    margin-bottom: 25px;
}

.btn-light-custom {
    background: #fff;
    color: var(--primary);
    border: 0;
    border-radius: 9px;
    font-weight: 800;
    padding: 12px 20px;
}

.btn-light-custom:hover {
    background: #f1f0ff;
    color: var(--primary-dark);
}

.cta-decoration {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 180px;
    color: rgba(255, 255, 255, .08);
}


/* ================= FOOTER ================= */

.footer {
    background: #10131c;
    padding: 75px 0 25px;
    color: #fff;
}

.footer-brand {
    color: #fff;
}

.footer-brand span:last-child {
    color: #aaa5ff;
}

.footer > .container > .row > div:first-child > p {
    color: #858c9b;
    font-size: 14px;
    line-height: 1.8;
    max-width: 350px;
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #1b1f2a;
    color: #8f96a4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: .2s;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
}

.footer h5 {
    font-size: 15px;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: 10px;
}

.footer li a {
    color: #858c9b;
    font-size: 13px;
}

.footer li a:hover {
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 15px;
    color: #858c9b;
    font-size: 13px;
}

.contact-item i {
    color: #aaa5ff;
    width: 15px;
}

.footer-bottom {
    border-top: 1px solid #262a34;
    margin-top: 55px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: #666d7c;
    font-size: 12px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    color: #666d7c;
}

.footer-bottom a:hover {
    color: #fff;
}


/* ================= ANIMATIONS ================= */

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.floating-card {
    animation: floatCard 4s ease-in-out infinite;
}

.shape-one,
.shape-two {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.shape-one {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(81, 70, 229, .08);
    right: -100px;
    top: 120px;
}

.shape-two {
    width: 180px;
    height: 180px;
    border: 1px solid rgba(81, 70, 229, .06);
    left: -70px;
    bottom: 50px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .navbar {
        padding: 13px 0;
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        margin-top: 12px;
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    }

    .nav-actions {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }

    .hero-section {
        padding-top: 135px;
    }

    .hero-section h1 {
        font-size: 58px;
    }

    .hero-visual {
        min-height: 470px;
    }

    .quote-info {
        padding: 40px;
    }

    .quote-form-area {
        padding: 35px;
    }

    .process-line {
        display: none;
    }

}

@media (max-width: 767px) {

    .section-padding,
    .why-section,
    .pricing-section,
    .quote-section {
        padding: 75px 0;
    }

    .hero-section {
        padding: 120px 0 65px;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 47px;
        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-visual {
        min-height: 410px;
        margin-top: 15px;
    }

    .document-card {
        width: 450px;
    }

    .floating-rating {
        left: 0;
        top: 15px;
    }

    .floating-editor {
        right: 0;
        bottom: 15px;
    }

    .stat-item {
        min-height: 90px;
        border-right: 0;
        border-bottom: 1px solid #eee;
    }

    .stat-item strong {
        font-size: 22px;
    }

    .comparison-content {
        grid-template-columns: 1fr;
    }

    .before-text {
        border-right: 0;
        border-bottom: 1px solid #eee;
    }

    .cta-box {
        padding: 45px 30px;
    }

    .cta-content h2 {
        font-size: 31px;
    }

    .cta-decoration {
        right: -10px;
        font-size: 120px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

}

@media (max-width: 480px) {

    .hero-section h1 {
        font-size: 40px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .document-card {
        max-width: 96%;
    }

    .document-body {
        padding: 20px;
    }

    .floating-card {
        padding: 9px;
    }

    .floating-rating {
        transform: scale(.85);
        transform-origin: left top;
    }

    .floating-editor {
        transform: scale(.85);
        transform-origin: right bottom;
    }

    .quote-info,
    .quote-form-area {
        padding: 30px 22px;
    }

    .cta-box {
        padding: 40px 25px;
    }

}