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

.scroll-top-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #2f5d91 0%, #6f46d9 100%);
    box-shadow: 0 14px 28px rgba(29, 57, 95, 0.32);
    cursor: pointer;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.92);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.scroll-top-btn svg {
    width: 22px;
    height: 22px;
}

.scroll-top-btn:hover {
    transform: translateY(-3px) scale(1);
    filter: brightness(1.04);
    box-shadow: 0 18px 32px rgba(29, 57, 95, 0.36);
}

.scroll-top-btn:active {
    transform: translateY(0) scale(0.98);
}

.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Contact section neo redesign */
.contact-neo {
    position: relative;
    overflow: hidden;
}

.contact-neo::before,
.contact-neo::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.contact-neo::before {
    width: 340px;
    height: 340px;
    left: -120px;
    top: -80px;
    background: radial-gradient(circle, rgba(86, 127, 244, 0.2), rgba(86, 127, 244, 0));
}

.contact-neo::after {
    width: 300px;
    height: 300px;
    right: -90px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(132, 94, 247, 0.2), rgba(132, 94, 247, 0));
}

.contact-neo .container {
    position: relative;
    z-index: 1;
}

.contact-neo__header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-neo__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.38rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(47, 93, 145, 0.12), rgba(131, 89, 247, 0.12));
    color: #355a86;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-neo__title {
    margin: 1rem 0 0.75rem;
    color: #152b47;
}

.contact-neo__subtitle {
    margin: 0 auto;
    max-width: 680px;
    color: #566885;
    font-size: 1.02rem;
    line-height: 1.65;
}

.contact-neo__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.25rem;
    align-items: stretch;
}

.contact-neo__info,
.contact-neo__form {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(186, 204, 230, 0.8);
    border-radius: 1.25rem;
    backdrop-filter: blur(4px);
}

.contact-neo__info {
    padding: 1.5rem;
}

.contact-neo__hero {
    position: relative;
    padding: 1.2rem;
    border-radius: 1rem;
    border: 1px solid #dbe6f6;
    background: linear-gradient(135deg, #f6f9ff 0%, #eef3ff 100%);
}

.contact-neo__pulse {
    position: absolute;
    width: 10px;
    height: 10px;
    top: 1rem;
    right: 1rem;
    border-radius: 50%;
    background: #4d82d2;
    box-shadow: 0 0 0 rgba(77, 130, 210, 0.45);
    animation: contactNeoPulse 2.2s infinite;
}

.contact-neo__hero h3 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.3;
    color: #1a3150;
}

.contact-neo__hero p {
    margin: 0;
    color: #526581;
    line-height: 1.65;
}

.contact-neo__benefits {
    list-style: none;
    margin: 1.1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.contact-neo__benefits li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.7rem;
    align-items: start;
    padding: 0.78rem 0.85rem;
    border: 1px solid #dde8f7;
    border-radius: 0.9rem;
    background: #f8fbff;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-neo__benefits li:hover {
    transform: translateY(-3px);
    border-color: #bfd5f2;
    box-shadow: 0 12px 24px rgba(20, 41, 69, 0.09);
}

.contact-neo__benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 0.85rem;
    align-items: center;
    justify-content: center;
    color: #2f5d91;
    background: linear-gradient(135deg, #e9f2ff 0%, #e5edff 100%);
    border: 1px solid #d4e2f5;
}

.contact-neo__benefit-icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.contact-neo__benefits li strong {
    display: block;
    color: #1e3656;
    font-size: 0.98rem;
    margin-bottom: 0.18rem;
}

.contact-neo__benefits li span {
    display: flex;
    color: #586a85;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-neo__cards {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    gap: 0.65rem;
}

.contact-neo__card {
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 0.95rem;
    background: #fff;
    border: 1px solid #dce7f6;
    display: grid;
    gap: 0.36rem;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-neo__card:hover {
    transform: translateY(-2px);
    border-color: #bfd5f2;
    box-shadow: 0 12px 24px rgba(20, 41, 69, 0.1);
}

.contact-neo__card--static:hover {
    transform: none;
    border-color: #dce7f6;
    box-shadow: none;
}

.contact-neo__card-icon {
    width: 36px;
    height: 36px;
    border-radius: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2f5d91;
    background: #e8f1ff;
}

.contact-neo__card-icon svg {
    width: 18px;
    height: 18px;
}

.contact-neo__card-label {
    font-size: 0.8rem;
    color: #556b8d;
    text-transform: none;
    letter-spacing: 0.04em;
}

.contact-neo__card strong {
    display: block;
    color: #132e50;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.contact-neo__form {
    position: relative;
    overflow: hidden;
    padding: 1.65rem;
}

.contact-neo__form-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    top: -100px;
    right: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(95, 117, 252, 0.26), rgba(95, 117, 252, 0));
    animation: contactNeoFloat 6s ease-in-out infinite;
}

.contact-neo__form-top {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.contact-neo__form-top h3 {
    margin: 0 0 0.42rem;
    color: #1a3150;
    font-size: 1.5rem;
}

.contact-neo__form-top p {
    margin: 0;
    color: #536781;
}

.contact-neo__form .form-input {
    border-radius: 0.85rem;
    border: 1px solid #d3e0f2;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-neo__form .form-input:focus {
    border-color: #7b9cd1;
    box-shadow: 0 0 0 3px rgba(84, 131, 202, 0.16);
}

.contact-neo__form .btn {
    border-radius: 0.85rem;
}

.contact-neo__form-note {
    margin: 0.75rem 0 0;
    color: #667896;
    font-size: 0.84rem;
    line-height: 1.5;
}

/* CF7 styling inside contacts page form */
.contact-neo__form .wpcf7 {
    position: relative;
    z-index: 1;
}

.contact-neo__form .wpcf7 form {
    margin: 0;
}

.contact-neo__form .wpcf7 .screen-reader-response {
    display: none;
}

.contact-neo__form .wpcf7 p {
    margin: 0;
}

.contact-neo__form .wpcf7 form > p:first-of-type {
    display: grid;
    gap: 0.8rem;
}

.contact-neo__form .wpcf7 label {
    display: grid;
    gap: 0.4rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: #314964;
}

.contact-neo__form .wpcf7 .wpcf7-form-control-wrap {
    display: block;
}

.contact-neo__form .wpcf7 br {
    display: none;
}

.contact-neo__form .wpcf7 input[type="text"],
.contact-neo__form .wpcf7 input[type="email"],
.contact-neo__form .wpcf7 input[type="tel"],
.contact-neo__form .wpcf7 textarea,
.contact-neo__form .wpcf7 select {
    width: 100%;
    border: 1px solid #d3e0f2;
    border-radius: 0.85rem;
    background: #fff;
    color: #243a57;
    font-size: 0.95rem;
    line-height: 1.45;
    padding: 0.82rem 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-neo__form .wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-neo__form .wpcf7 input::placeholder,
.contact-neo__form .wpcf7 textarea::placeholder {
    color: #8898af;
}

.contact-neo__form .wpcf7 input:focus,
.contact-neo__form .wpcf7 textarea:focus,
.contact-neo__form .wpcf7 select:focus {
    outline: none;
    border-color: #7b9cd1;
    box-shadow: 0 0 0 3px rgba(84, 131, 202, 0.16);
}

.contact-neo__form .wpcf7 input.wpcf7-not-valid,
.contact-neo__form .wpcf7 textarea.wpcf7-not-valid,
.contact-neo__form .wpcf7 select.wpcf7-not-valid {
    border-color: #d65d5d;
    background: #fff6f6;
}

.contact-neo__form .wpcf7 .wpcf7-not-valid-tip {
    margin-top: 0.32rem;
    font-size: 0.78rem;
    color: #b3261e;
}

.contact-neo__form .wpcf7 .wpcf7-submit {
    width: 100%;
    margin-top: 0.3rem;
    border: 0;
    border-radius: 0.85rem;
    padding: 0.9rem 1.2rem;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #fff;
    background: linear-gradient(135deg, #2f5d91, #5a83d7);
    box-shadow: 0 10px 22px rgba(33, 71, 126, 0.24);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-neo__form .wpcf7 .wpcf7-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(33, 71, 126, 0.28);
    filter: brightness(1.03);
}

.contact-neo__form .wpcf7 .wpcf7-submit:active {
    transform: translateY(0);
}

.contact-neo__form .wpcf7 .wpcf7-spinner {
    display: block;
    margin: 0.5rem auto 0;
}

.contact-neo__form .wpcf7 .privacy {
    margin-top: 0.78rem;
    color: #657894;
    font-size: 0.82rem;
    line-height: 1.45;
}

.contact-neo__form .wpcf7 .wpcf7-response-output {
    margin: 0.8rem 0 0;
    padding: 0.74rem 0.82rem;
    border-radius: 0.68rem;
    font-size: 0.83rem;
    line-height: 1.45;
}

.contact-neo__form .wpcf7 form.invalid .wpcf7-response-output,
.contact-neo__form .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-neo__form .wpcf7 form.failed .wpcf7-response-output {
    border: 1px solid #f2b8b8;
    background: #fff2f2;
    color: #8e2525;
}

.contact-neo__form .wpcf7 form.sent .wpcf7-response-output {
    border: 1px solid #b8e6c1;
    background: #effcf2;
    color: #23663a;
}

/* SEO text block */
.seo_text {
    padding: 40px 0;
}

.seo_text .seo_text_content {
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #dbe7f6;
    border-radius: 1.1rem;
    box-shadow: 0 14px 30px rgba(17, 33, 56, 0.08);
    padding: 1.7rem 1.5rem;
}

.seo_text h2,
.seo_text h3 {
    margin: 0;
    color: #183356;
    line-height: 1.28;
}

.seo_text h2 {
    font-size: clamp(1.35rem, 2.6vw, 1.95rem);
    margin-bottom: 0.9rem;
}

.seo_text h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
}

.seo_text p {
    margin: 0 0 0.8rem;
    color: #4f6481;
    line-height: 1.72;
    font-size: 1rem;
}

.seo_text ul,
.seo_text ol {
    margin: 0.35rem 0 1rem 1.25rem;
    padding: 0;
    color: #355175;
}

.seo_text li {
    margin-bottom: 0.42rem;
    line-height: 1.65;
}

.seo_text a {
    color: #2f5d91;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seo_text strong {
    color: #1b3a60;
}

/* About page static layout */
.about-page {
    padding: 3.8rem 0;
}

.about-page--hero {
    padding-top: 2.3rem;
}

.about-page--alt {
    background: #f7faff;
}

.about-page__hero-card {
    background: linear-gradient(140deg, #1e3b63 0%, #2f5d91 60%, #4f7ac2 100%);
    color: #fff;
    border-radius: 1.4rem;
    padding: 2.4rem 2.1rem;
    box-shadow: 0 22px 48px rgba(17, 33, 57, 0.24);
}

.about-page__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
    margin-bottom: 0.9rem;
}

.about-page__hero-card h1 {
    margin: 0 0 0.7rem;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.2;
    color: #fff;
}

.about-page__hero-card p {
    margin: 0;
    max-width: 860px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
}

.about-page__hero-points {
    margin-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.about-page__hero-points span {
    border-radius: 999px;
    padding: 0.42rem 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.84rem;
}

.about-page__section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 1.6rem;
}

.about-page__section-head p {
    margin: 0.55rem 0 0;
    color: #5b6d88;
    line-height: 1.6;
}

.about-page__cards {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-page__card {
    background: #fff;
    border: 1px solid #dde8f7;
    border-radius: 1rem;
    padding: 1.15rem;
    box-shadow: 0 10px 26px rgba(21, 36, 58, 0.08);
}

.about-page__card h3 {
    margin: 0 0 0.4rem;
    color: #1a3557;
    font-size: 1.12rem;
}

.about-page__card p {
    margin: 0;
    color: #566885;
    line-height: 1.58;
}

.about-page__timeline {
    display: grid;
    gap: 0.85rem;
    max-width: 940px;
    margin: 0 auto;
}

.about-page__step {
    background: #fff;
    border: 1px solid #d8e5f7;
    border-radius: 1rem;
    padding: 1rem;
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 0.95rem;
    align-items: start;
}

.about-page__step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2f5d91;
    background: #e9f1ff;
    border: 1px solid #cfe0f6;
    font-weight: 700;
}

.about-page__step h3 {
    margin: 0 0 0.32rem;
    font-size: 1.06rem;
    color: #173252;
}

.about-page__step p {
    margin: 0;
    color: #5a6d89;
    line-height: 1.6;
}

.about-page__result {
    background: #fff;
    border: 1px solid #dde8f7;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 12px 24px rgba(15, 27, 44, 0.08);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 1.1rem;
}

.about-page__result-main h3 {
    margin: 0 0 0.5rem;
    color: #173252;
}

.about-page__result-main p {
    margin: 0;
    color: #5b6d88;
    line-height: 1.65;
}

.about-page__result-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.about-page__result-list li {
    position: relative;
    padding: 0.55rem 0.7rem 0.55rem 1.6rem;
    background: #f7fbff;
    border: 1px solid #dce8f7;
    border-radius: 0.75rem;
    color: #355277;
}

.about-page__result-list li::before {
    content: "";
    position: absolute;
    left: 0.7rem;
    top: 0.95rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #4d82d2;
}





@keyframes contactNeoPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(77, 130, 210, 0.45);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(77, 130, 210, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(77, 130, 210, 0);
    }
}

@keyframes contactNeoFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}





/* Banner stats compact final override */




/* Section header mobile typography */




/* Banner One mobile hotfix */




/* 404 Page */
.error-404-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: radial-gradient(circle at 20% 20%, rgba(47, 93, 145, 0.12) 0%, transparent 48%), #f6f9fe;
}

.error-404-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 1.25rem;
    background: #ffffff;
    border: 1px solid #dbe6f3;
    box-shadow: 0 16px 38px rgba(16, 24, 40, 0.1);
}

.error-404-code {
    font-size: clamp(4rem, 11vw, 7.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #2f5d91;
    margin-bottom: 0.75rem;
}

.error-404-title {
    margin: 0 0 0.8rem;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: #1a2e47;
}

.error-404-text {
    margin: 0 auto 1.5rem;
    max-width: 580px;
    color: #5a6c86;
    line-height: 1.65;
    font-size: 1.05rem;
}

.error-404-btn {
    min-width: 220px;
}



/* Global no-glow overrides */
.service-card,
.benefit-card,
.process-step,
.faq-item,
.portfolio-item,
.testimonial-card,
.contact-modern__info,
.contact-modern__form,
.service-benefit-card,
.project-card {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
}

.service-card:hover,
.benefit-card:hover,
.process-step:hover,
.faq-item:hover,
.portfolio-item:hover,
.testimonial-card:hover,
.service-benefit-card:hover,
.project-card:hover {
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09) !important;
}

.service-icon svg,
.benefit-icon svg,
.step-icon svg,
.faq-icon,
.portfolio-overlay svg,
.contact-modern__card-icon svg {
    filter: none !important;
}

.service-card::before,
.service-card::after,
.benefit-card::before,
.benefit-card::after,
.process-step::before,
.process-step::after,
.faq::before,
.benefits::before,
.process::before {
    animation: none !important;
}

/* Service page UX upgrade */
.service-hero-points {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    gap: 0.625rem;
}

.service-hero-points li {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.55;
    padding-left: 1.5rem;
    position: relative;
}

.service-hero-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #ffffff;
}

.service-quick-nav {
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.service-quick-nav-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem 0;
}

.service-quick-nav-inner a {
    text-decoration: none;
    color: var(--text-dark);
    background: rgba(110, 0, 209, 0.06);
    border: 1px solid rgba(110, 0, 209, 0.12);
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.service-quick-nav-inner a:hover {
    background: rgba(110, 0, 209, 0.12);
    color: var(--primary-color);
}

.service-lead-strip {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(110, 0, 209, 0.07), rgba(255, 107, 0, 0.07));
    border: 1px solid rgba(110, 0, 209, 0.15);
    border-radius: 1rem;
    padding: 1.5rem;
}

.service-lead-strip__text h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.35;
    color: var(--text-dark);
}

.service-lead-strip__text p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

.service-lead-strip__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.service-sidebar-actions {
    margin-top: 1rem;
    display: grid;
    gap: 0.625rem;
}

.service-sidebar-actions .btn {
    width: 100%;
    justify-content: center;
}



/* ===== Single service UX v2 ===== */
.sx-page {
    background: #f8fafc;
}

.sx-hero {
    background: var(--gradient-1);
    color: #fff;
    padding: 4.5rem 0 3.5rem;
}

.sx-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2rem;
    align-items: start;
}

.sx-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.sx-badge {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.15);
}

.sx-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.15;
    margin: 0 0 0.9rem;
    color: #fff;
}

.sx-subtitle {
    margin: 0 0 1.25rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.sx-bullets {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.sx-bullets li {
    position: relative;
    padding-left: 1.4rem;
    line-height: 1.5;
}

.sx-bullets li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0.55rem;
}

.sx-hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.sx-trust-row {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.sx-trust-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0.75rem;
    padding: 0.6rem 0.7rem;
    display: grid;
    gap: 0.08rem;
}

.sx-trust-item strong {
    font-size: 0.95rem;
    line-height: 1.25;
}

.sx-trust-item span {
    font-size: 0.75rem;
    opacity: 0.9;
}

.sx-hero__card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    padding: 1.25rem;
    backdrop-filter: blur(8px);
}

.sx-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.sx-service-icon svg {
    width: 26px;
    height: 26px;
}

.sx-metric {
    margin-bottom: 0.85rem;
    display: grid;
    gap: 0.15rem;
}

.sx-metric__label {
    font-size: 0.8125rem;
    opacity: 0.85;
}

.sx-metric__value {
    font-size: 1.125rem;
}

.sx-card-btn {
    width: 100%;
}

.sx-anchor-nav {
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 0.7rem 0;
}

.sx-anchor-nav__inner {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    padding: 0.75rem 0;
}

.sx-anchor-nav__inner a {
    text-decoration: none;
    color: #1f2937;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: rgba(110, 0, 209, 0.06);
}

.sx-main {
    padding: 2.2rem 0 3.2rem;
}

.sx-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1.5rem;
    align-items: start;
}

.sx-content {
    display: grid;
    gap: 1rem;
}

.sx-block {
    background: #fff;
    border: 1px solid rgba(110, 0, 209, 0.1);
    border-radius: 1rem;
    padding: 1.35rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.sx-block h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    color: #111827;
}

.sx-about__content {
    color: #374151;
    line-height: 1.75;
}

.sx-grid {
    display: grid;
    gap: 0.9rem;
}

.sx-grid--benefits,
.sx-grid--features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sx-card {
    border: 1px solid rgba(110, 0, 209, 0.12);
    border-radius: 0.9rem;
    padding: 1rem;
    background: linear-gradient(180deg, #fff, #faf7ff);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sx-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.sx-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    background: var(--gradient-1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.sx-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
}

.sx-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

.sx-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.sx-step {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.9rem;
    border: 1px solid rgba(110, 0, 209, 0.12);
    border-radius: 0.85rem;
    background: #fff;
}

.sx-step__num {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--gradient-1);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sx-step__body h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

.sx-step__body p {
    margin: 0 0 0.45rem;
    color: #4b5563;
    line-height: 1.55;
}

.sx-step__duration {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(110, 0, 209, 0.08);
    border-radius: 999px;
    padding: 0.32rem 0.55rem;
}

.sx-faq {
    display: grid;
    gap: 0.6rem;
}

.sx-faq__item {
    border: 1px solid rgba(110, 0, 209, 0.14);
    border-radius: 0.8rem;
    background: #fff;
    padding: 0.8rem 0.95rem;
}

.sx-faq__item summary {
    cursor: pointer;
    font-weight: 600;
}

.sx-faq__answer {
    padding-top: 0.7rem;
    color: #4b5563;
    line-height: 1.65;
}

.sx-problem {
    background: linear-gradient(180deg, #fff, #fcfbff);
}

.sx-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.sx-problem-item {
    border: 1px solid rgba(110, 0, 209, 0.14);
    border-radius: 0.85rem;
    padding: 0.9rem;
    background: #fff;
    color: #374151;
    line-height: 1.5;
}

.sx-final-cta {
    background: linear-gradient(135deg, rgba(110, 0, 209, 0.08), rgba(255, 107, 0, 0.08));
    border-color: rgba(110, 0, 209, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sx-final-cta__text h2 {
    margin: 0 0 0.45rem;
    font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.sx-final-cta__text p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

.sx-final-cta__actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.sx-sidebar {
    position: sticky;
    top: 4.4rem;
    display: grid;
    gap: 0.9rem;
}

.sx-sidebar__card {
    background: #fff;
    border: 1px solid rgba(110, 0, 209, 0.12);
    border-radius: 1rem;
    padding: 1rem;
    display: grid;
    gap: 0.65rem;
}

.sx-sidebar__card h3 {
    margin: 0;
}

.sx-sidebar__card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.55;
}

.sx-sidebar__card .btn {
    width: 100%;
    justify-content: center;
}

.sx-tech {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.sx-tech li {
    display: grid;
    gap: 0.12rem;
}

.sx-tech span {
    color: #6b7280;
    font-size: 0.875rem;
}

.sx-lead {
    background: var(--gradient-1);
    color: #fff;
    padding: 3rem 0;
}

.sx-lead__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sx-lead__head h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.sx-lead__head p {
    margin: 0 0 1.25rem;
    opacity: 0.95;
}

.sx-mobile-lead-btn {
    display: none;
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 99;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: var(--gradient-1);
    border-radius: 0.8rem;
    padding: 0.9rem 1rem;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(110, 0, 209, 0.35);
}





/* ===== High-conversion CTA system ===== */
.cta,
.service-cta,
.project-cta {
    background: #0f172a !important;
    color: #ffffff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-background,
.cta-shape,
.cta::before,
.cta::after,
.service-cta::before,
.service-cta::after,
.project-cta::before,
.project-cta::after {
    display: none !important;
}

.cta-content,
.service-cta-content,
.project-cta-content {
    max-width: 860px !important;
    margin: 0 auto !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    padding: 2rem 1.25rem !important;
}

.cta-title,
.service-cta .cta-title,
.project-cta .cta-title {
    color: #ffffff !important;
    margin-bottom: 0.85rem !important;
    font-size: clamp(1.85rem, 4vw, 2.8rem) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em;
}

.cta-subtitle,
.service-cta .cta-subtitle,
.project-cta .cta-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 auto 1.4rem !important;
    max-width: 720px;
    font-size: 1.05rem !important;
    line-height: 1.65 !important;
}

.cta-buttons,
.project-cta .cta-buttons,
.service-cta .cta-buttons-row,
.service-cta .cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary,
.service-cta .cta-btn.btn-primary,
.service-cta .btn-primary,
.project-cta .btn-primary {
    background: #8B1E1E !important;
    border: 1px solid #8B1E1E !important;
    color: #ffffff !important;
    box-shadow: none !important;
    transform: none !important;
}

.cta-btn-primary:hover,
.service-cta .cta-btn.btn-primary:hover,
.service-cta .btn-primary:hover,
.project-cta .btn-primary:hover {
    background: #6F1717 !important;
    border-color: #6F1717 !important;
    box-shadow: none !important;
    transform: translateY(-1px) !important;
}

.cta-btn-secondary,
.service-cta .btn-secondary,
.project-cta .btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    box-shadow: none !important;
}

.cta-btn-secondary:hover,
.service-cta .btn-secondary:hover,
.project-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
}

.cta-feature,
.cta-features,
.cta-feature span {
    color: rgba(255, 255, 255, 0.92) !important;
}



/* Rebuilt CTA from scratch */
.cta.cta--sales {
    background: #0f172a !important;
    padding: 4rem 0 !important;
    color: #ffffff !important;
}

.cta.cta--sales .cta-convert {
    max-width: 920px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.25rem;
    padding: 2.2rem 1.5rem;
    text-align: center;
}

.cta.cta--sales .cta-convert__label {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    font-weight: 600;
}

.cta.cta--sales .cta-title {
    margin-bottom: 0.8rem !important;
}

.cta.cta--sales .cta-subtitle {
    margin-bottom: 1.2rem !important;
}

.cta.cta--sales .cta-convert__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0 0 1.3rem;
}

.cta.cta--sales .cta-convert__item {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0.75rem;
    padding: 0.85rem;
    text-align: left;
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.cta.cta--sales .cta-convert__icon {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 0.5rem;
    background: rgba(139, 30, 30, 0.2);
    border: 1px solid rgba(139, 30, 30, 0.35);
    color: #ffd5d5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.cta.cta--sales .cta-convert__text strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.cta.cta--sales .cta-convert__text span {
    display: block;
    font-size: 0.85rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
}

.cta.cta--sales .cta-convert__actions {
    display: flex;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.cta.cta--sales .cta-convert__actions .btn {
    min-width: 280px;
}

.cta.cta--sales .cta-convert__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
}

.cta.cta--sales .cta-convert__bottom span {
    display: inline-block;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
}



/* ===== Flat color system (no gradients) ===== */
.btn,
.btn-primary,
.btn-secondary,
.service-link,
.sidebar-cta,
.sx-mobile-lead-btn,
.sx-card__icon,
.sx-step__num,
.service-icon,
.feature-icon,
.benefit-icon {
    background-image: none !important;
}

.banner_one,
.contacts-hero,
.service-hero,
.service-cta,
.project-hero,
.project-testimonial,
.sx-hero,
.sx-lead {
    background-image: none !important;
    background-color: var(--primary-color) !important;
}

.smm-hero-bg,
.service-lead-strip,
.sx-final-cta,
.sx-problem,
.sx-card {
    background-image: none !important;
}

.smm-hero-bg {
    background-color: var(--primary-color) !important;
}

.service-lead-strip,
.sx-final-cta,
.sx-problem,
.sx-card {
    background-color: #ffffff !important;
}

.logo-text,
.section-title,
.service-price,
.step-number,
.step-item-number,
.stat-number,
.project-title,
.service-title {
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    color: var(--text-dark) !important;
}

.sx-title,
.service-hero-title,
.contacts-hero-title,
.project-title {
    color: #ffffff !important;
}

.service-hero-tag,
.sx-badge,
.sx-anchor-nav__inner a,
.service-quick-nav-inner a {
    background-image: none !important;
    background-color: rgba(31, 78, 121, 0.08) !important;
    border-color: rgba(31, 78, 121, 0.2) !important;
    color: var(--primary-color) !important;
}

.sx-hero .sx-badge,
.service-hero .service-hero-tag {
    background-color: rgba(255, 255, 255, 0.16) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
}

/* ===== Burgundy CTA and no glow ===== */
.btn-primary,
.service-link,
.sx-mobile-lead-btn,
.sidebar-cta,
.sx-card-btn {
    background-color: #8B1E1E !important;
    color: #ffffff !important;
    border-color: #8B1E1E !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.btn-primary:hover,
.service-link:hover,
.sx-mobile-lead-btn:hover,
.sidebar-cta:hover,
.sx-card-btn:hover {
    background-color: #6F1717 !important;
    border-color: #6F1717 !important;
    box-shadow: none !important;
}

.btn::before,
.btn::after,
.btn-primary::before,
.btn-primary::after,
.service-link::before,
.service-link::after,
.sx-mobile-lead-btn::before,
.sx-mobile-lead-btn::after {
    display: none !important;
}

.service-card,
.service-benefit-card,
.service-feature-card,
.service-step-item,
.sx-card,
.sx-step,
.sx-sidebar__card,
.service-info-card,
.contact-item-full,
.map-container,
.portfolio-item,
.faq-item,
.service-icon,
.feature-icon,
.benefit-icon {
    box-shadow: none !important;
    filter: none !important;
}

.service-card:hover,
.service-benefit-card:hover,
.service-feature-card:hover,
.service-step-item:hover,
.sx-card:hover,
.sx-step:hover,
.portfolio-item:hover,
.faq-item:hover {
    box-shadow: none !important;
    filter: none !important;
}

:root {
    --primary-color: #1E3A5F;
    --primary-dark: #152B47;
    --secondary-color: #2A537F;
    --text-dark: #0f1010;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --gradient-1: var(--primary-color);
    --gradient-2: var(--secondary-color);
    --gradient-3: var(--primary-color);
    --link-color: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --section-padding-y: 4rem;
    --section-padding-y-sm: 4rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* ===========================
   New Layout: Fixed Sidebar + Scrollable Content
   =========================== */
.site-wrapper {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* Fixed Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: #1a1a1a;
    color: #ffffff;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 0;
}

/* Sidebar Logo */
.sidebar-logo {
    padding: 0 2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.sidebar-logo-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.sidebar-logo-link:hover {
    transform: translateX(4px);
}

.sidebar-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    border-radius: 0.5rem;
}

/* Sidebar Navigation */
.sidebar-nav {
    flex: 1;
    padding: 0 1rem;
}

.sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 0.25rem;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary-color);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
}

.sidebar-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 2rem;
}

.sidebar-link:hover::before {
    height: 60%;
}

.sidebar-link.current-menu-item,
.sidebar-menu li.current-menu-item > .sidebar-link {
    color: #ffffff;
    background: rgba(110, 0, 209, 0.15);
    padding-left: 2rem;
    font-weight: 600;
}

.sidebar-link.current-menu-item::before,
.sidebar-menu li.current-menu-item > .sidebar-link::before {
    height: 80%;
    background: var(--primary-color);
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 2rem 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    background: rgba(37, 99, 235, 0.28);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sidebar-phone:hover {
    background: rgba(37, 99, 235, 0.45);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: translateY(-1px);
}

.sidebar-phone svg {
    flex-shrink: 0;
    opacity: 1;
    width: 1rem;
    height: 1rem;
    padding: 0.35rem;
    box-sizing: content-box;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-phone:active {
    transform: translateY(0);
}

.sidebar-phone:focus-visible {
    outline: none;
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}

.sidebar-contact-meta {
    display: grid;
    gap: 0.5rem;
    padding: 0.25rem 0.25rem 0.1rem;
}

.sidebar-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.sidebar-contact-item svg {
    flex-shrink: 0;
    opacity: 0.85;
    margin-top: 0.08rem;
}

.sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: var(--gradient-1);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.sidebar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(110, 0, 209, 0.4);
}

/* Main Content Area */
.main-content {
    margin-left: 280px;
    flex: 1;
    min-height: 100vh;
    background: #ffffff;
    position: relative;
    width: calc(100% - 280px);
}

/* Content wrapper to limit width */
.main-content > * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure footer stays within main-content */
.main-content > .footer {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    left: 0;
    right: 0;
}

/* Full-width sections should still respect container */
.main-content .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Limit width for all sections inside main-content */
.main-content section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure sections with backgrounds don't overflow */
.main-content > section {
    overflow-x: hidden;
}

/* Prevent images and media from exceeding container width */
.main-content img,
.main-content video,
.main-content iframe,
.main-content embed,
.main-content object {
    max-width: 100%;
    height: auto;
}

/* Ensure tables don't overflow */
.main-content table {
    width: 100%;
    max-width: 100%;
    table-layout: auto;
    overflow-x: auto;
    display: block;
}





/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1001;
    width: 44px;
    height: 44px;
    background: #1a1a1a;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

#main {
    padding-top: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}





/* Header - Hidden in new layout */
.header {
    display: none;
}

.logo {
    position: relative;
    z-index: 10;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
}

.logo-link:hover {
    transform: translateY(-1px);
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    letter-spacing: -0.01em;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: rgba(224, 89, 64, 0.08);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: rgba(224, 89, 64, 0.05);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -2;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover::after {
    opacity: 1;
    transform: scale(1);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(224, 89, 64, 0.08);
}

.nav-link.active::before {
    opacity: 1;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.625rem;
    margin-left: 0.375rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    color: var(--text-light);
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    color: #ffffff;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    background: #ffffff;
    backdrop-filter: none;
    min-width: 300px;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 1rem;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    z-index: 1000;
    overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        #667eea 0%, 
        #764ba2 30%, 
        #f093fb 60%, 
        #4facfe 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    opacity: 0.8;
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(224, 89, 64, 0.02) 0%, 
        rgba(139, 92, 246, 0.02) 100%);
    pointer-events: none;
    border-radius: 1.25rem;
}

.dropdown-menu li {
    margin: 0.25rem 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(224, 89, 64, 0.08);
    color: #ffffff;
    transform: translateX(4px);
    padding-left: 1.5rem;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
    width: 4px;
}

/* Header Contacts */
.header-contacts {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: rgba(224, 89, 64, 0.06);
    white-space: nowrap;
    flex-shrink: 0;
}

.header-phone svg {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.header-phone:hover {
    background: rgba(224, 89, 64, 0.1);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.header-phone:hover svg {
    transform: rotate(15deg);
}

/* Header CTA Button */
.header-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(224, 89, 64, 0.25);
    white-space: nowrap;
    flex-shrink: 0;
}

.header-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(224, 89, 64, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.header-cta:hover::before {
    opacity: 1;
}

.header-cta span {
    position: relative;
    z-index: 1;
}

.header-cta svg {
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-cta:hover svg {
    transform: translateX(4px);
}

/* Mobile Actions */
.header-mobile-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.header-phone-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(224, 89, 64, 0.08);
    border-radius: 50%;
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
}

.header-phone-mobile span {
    display: none;
}

.header-phone-mobile svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.header-phone-mobile:hover {
    background: rgba(224, 89, 64, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 89, 64, 0.2);
}

.header-phone-mobile:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1001;
    background: rgba(110, 0, 209, 0.05);
}

.nav-toggle:hover {
    background: rgba(110, 0, 209, 0.15);
    transform: scale(1.05);
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-toggle.active {
    background: rgba(110, 0, 209, 0.2);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--primary-color);
    box-shadow: 0 2px 4px rgba(110, 0, 209, 0.3);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--primary-color);
    box-shadow: 0 2px 4px rgba(110, 0, 209, 0.3);
}

/* Banner One Section */
.banner_one {
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 60px;
    overflow: hidden;
    background: var(--gradient-1);
    background-size: 200% 200%;
    width: 100%;
    max-width: 100%;
    animation: gradientShift 12s ease infinite;
}

.banner_one::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.12) 0%, transparent 40%);
    animation: rotateBackground 30s linear infinite;
    pointer-events: none;
}

.banner_one::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundFloat 25s ease-in-out infinite;
}

.banner_one-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
    animation: backgroundPulse 15s ease-in-out infinite;
}

/* Floating Particles */
.banner_one-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: floatParticle 20s infinite ease-in-out;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    opacity: 0.6;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 17s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 19s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 4.5s;
    animation-duration: 21s;
}

.particle:nth-child(9) {
    left: 15%;
    animation-delay: 1.5s;
    animation-duration: 16s;
}

.particle:nth-child(10) {
    left: 25%;
    animation-delay: 3.5s;
    animation-duration: 18s;
}

.particle:nth-child(11) {
    left: 75%;
    animation-delay: 0.5s;
    animation-duration: 20s;
}

.particle:nth-child(12) {
    left: 90%;
    animation-delay: 2.5s;
    animation-duration: 17s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px) scale(1.5);
        opacity: 0;
    }
}

/* Floating Shapes */
.banner_one-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 60%),
        radial-gradient(circle at 80% 80%, rgba(129, 140, 248, 0.55) 0%, rgba(129, 140, 248, 0) 70%);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.45),
        0 0 40px rgba(129, 140, 248, 0.45);
    opacity: 0.55;
    mix-blend-mode: screen;
}

.shape-1 {
    width: 210px;
    height: 210px;
    top: 4%;
    left: -6%;
    animation: floatShape1 25s ease-in-out infinite;
    border-radius: 45% 55% 60% 40%;
}

.shape-2 {
    width: 160px;
    height: 160px;
    top: 68%;
    right: -4%;
    animation: floatShape2 20s ease-in-out infinite;
    border-radius: 60% 40% 45% 55%;
}

.shape-3 {
    width: 130px;
    height: 130px;
    bottom: 8%;
    left: 6%;
    animation: floatShape3 18s ease-in-out infinite;
    border-radius: 55% 45% 60% 40%;
}

.shape-4 {
    width: 190px;
    height: 190px;
    top: 26%;
    right: 14%;
    animation: floatShape4 22s ease-in-out infinite;
    border-radius: 40% 60% 45% 55%;
}

@keyframes floatShape1 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(34px, -26px) scale(1.04) rotate(60deg);
    }
    50% {
        transform: translate(0, -46px) scale(1.02) rotate(120deg);
    }
    75% {
        transform: translate(-34px, -26px) scale(1.04) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(240deg);
    }
}

@keyframes floatShape2 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(-26px, -22px) scale(1.03) rotate(45deg);
    }
    50% {
        transform: translate(0, -40px) scale(1.01) rotate(90deg);
    }
    75% {
        transform: translate(26px, -22px) scale(1.03) rotate(135deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(180deg);
    }
}

@keyframes floatShape3 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(22px, -18px) scale(1.03) rotate(40deg);
    }
    50% {
        transform: translate(0, -32px) scale(1.01) rotate(80deg);
    }
    75% {
        transform: translate(-22px, -18px) scale(1.03) rotate(120deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(160deg);
    }
}

@keyframes floatShape4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(40px, 20px) rotate(90deg);
    }
    75% {
        transform: translate(-20px, -40px) rotate(270deg);
    }
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(40px, -40px) scale(1.15);
        opacity: 0.7;
    }
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.banner_one .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.banner_one-content {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.banner_one-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s ease;
}

.banner_one-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.banner_one-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.3);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.3);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(52, 211, 153, 0);
    }
}

.banner_one-title {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    line-height: 1.18;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 2;
    text-shadow:
        0 10px 30px rgba(15, 23, 42, 0.65),
        0 3px 10px rgba(15, 23, 42, 0.5);
}

.banner_one-title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: fadeInUpScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.banner_one-title-line:nth-child(1) {
    animation-delay: 0.2s;
    color: rgba(226, 239, 255, 0.98);
}

.banner_one-title-line:nth-child(2) {
    animation-delay: 0.35s;
    color: #ffffff;
}

.banner_one-title-line:nth-child(3) {
    animation-delay: 0.5s;
    color: rgba(226, 232, 240, 0.96);
    font-size: 0.96em;
}

@keyframes fadeInUpScale {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.banner_one-title-highlight {
    position: relative;
    display: inline-block;
    padding: 0.12em 0.6em;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f1010 0%, #1a1a1a 25%, var(--primary-color) 50%, var(--primary-dark) 75%, #0f1010 100%);
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.02em;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes glowMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.banner_one-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(241, 245, 249, 0.92);
    margin: 0.5rem auto 0;
    line-height: 1.65;
    max-width: 660px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
    text-shadow:
        0 4px 16px rgba(15, 23, 42, 0.6),
        0 1px 3px rgba(15, 23, 42, 0.4);
    font-weight: 400;
}

.banner_one-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.banner_one-btn {
    min-width: 200px;
    font-size: 1rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    box-shadow: 
        0 8px 25px rgba(110, 0, 209, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    font-weight: 700;
    letter-spacing: 0.01em;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 0.75rem;
}

.banner_one-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.banner_one-btn:hover::before {
    left: 100%;
}

.banner_one-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.7s ease, height 0.7s ease;
    z-index: 0;
}

.banner_one-btn:hover {
    transform: translateY(-6px) scale(1.05);
    background: var(--primary-color);
    box-shadow: 
        0 20px 50px rgba(110, 0, 209, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.2) inset,
        0 0 60px rgba(110, 0, 209, 0.3);
}

.banner_one-btn:hover::after {
    width: 350px;
    height: 350px;
}

.banner_one-btn span,
.banner_one-btn svg {
    position: relative;
    z-index: 2;
}

.banner_one-btn.btn-secondary {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.banner_one-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(255, 255, 255, 0.4),
        0 0 0 5px rgba(255, 255, 255, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        0 0 60px rgba(255, 255, 255, 0.2);
}

.banner_one-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    justify-items: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 1s forwards;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.banner_one-stat {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 280px;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: statCardAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 1.2s;
    overflow: hidden;
}

.banner_one-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.banner_one-stat:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.banner_one-stat:hover::before {
    opacity: 1;
}

.banner_one-stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 0.875rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    overflow: hidden;
    flex-shrink: 0;
}

.banner_one-stat-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.banner_one-stat:hover .banner_one-stat-icon::before {
    width: 120px;
    height: 120px;
}

.banner_one-stat-icon svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.banner_one-stat:hover .banner_one-stat-icon {
    transform: rotate(5deg) scale(1.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.banner_one-stat:hover .banner_one-stat-icon svg {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.banner_one-stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.banner_one-stat-value {
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.6),
        0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.02em;
    text-align: center;
}

.banner_one-stat:hover .banner_one-stat-value {
    transform: translateY(-2px);
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.8),
        0 6px 20px rgba(0, 0, 0, 0.4);
}

.banner_one-stat-label {
    font-size: clamp(0.8125rem, 1.3vw, 0.9375rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.01em;
    line-height: 1.4;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner_one-stat:hover .banner_one-stat-label {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.banner_one-stat-divider {
    display: none; /* Hide dividers in 3-column layout */
}

.banner_one-stats:hover .banner_one-stat-divider {
    opacity: 0.8;
}

/* Stagger animation for stats */
.banner_one-stat:nth-child(1) {
    animation-delay: 1.2s;
}

.banner_one-stat:nth-child(3) {
    animation-delay: 1.4s;
}

.banner_one-stat:nth-child(5) {
    animation-delay: 1.6s;
}

@keyframes statCardAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Pulse animation for icons */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.banner_one-stat-icon {
    animation: iconPulse 3s ease-in-out infinite;
}

.banner_one-stat:hover .banner_one-stat-icon {
    animation: none;
}





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




.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 1.2;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    border: 2px solid transparent;
    box-shadow: 
        0 10px 30px rgba(110, 0, 209, 0.3),
        0 0 40px rgba(110, 0, 209, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(110, 0, 209, 0.5),
        0 0 0 4px rgba(110, 0, 209, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    background: var(--primary-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(255, 255, 255, 0.3),
        0 0 0 4px rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.btn-primary:hover svg,
.btn-secondary:hover svg {
    transform: translateX(6px) scale(1.1);
}

.btn-block {
    width: 100%;
    text-align: center;
}


.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--text-light);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Services Section */
.services {
    padding: var(--section-padding-y) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 30%, #f0f4ff 60%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(224, 89, 64, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 8s ease-in-out infinite;
}

.services::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(224, 89, 64, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: rotateBackground 20s linear infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.services .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    position: relative;
}

.section-header.animated {
    animation: fadeInUp 0.8s ease forwards;
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0f1010 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: underlineGrow 1s ease 0.5s forwards;
    opacity: 0;
}

@keyframes underlineGrow {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 80px;
        opacity: 1;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    position: relative;
    align-items: stretch;
}

.service-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 
        0 8px 24px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(110, 0, 209, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    opacity: 0;
    transform: translateY(24px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(110, 0, 209, 0.14);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: 2;
    border-radius: 1.25rem 1.25rem 0 0;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 100% 0%, rgba(110, 0, 209, 0.08), transparent 45%),
        radial-gradient(circle at 0% 100%, rgba(255, 107, 0, 0.07), transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.service-card.animated {
    animation: serviceCardAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes serviceCardAppear {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 32px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(110, 0, 209, 0.18);
    border-color: rgba(110, 0, 209, 0.28);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.25rem 0;
    color: white;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 
        0 10px 24px rgba(110, 0, 209, 0.28);
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1rem;
}

.service-icon::after {
    content: none;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

.service-card:hover .service-icon {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 14px 30px rgba(110, 0, 209, 0.32);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-card:hover .service-icon::after {
    opacity: 0;
}

.service-card:hover .service-icon svg {
    transform: scale(1.06);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.24));
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    transition: color 0.25s ease;
    position: relative;
    text-align: left;
    width: 100%;
    min-height: 3.25rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 1.35;
    padding: 0;
}

.service-card:hover .service-title {
    color: var(--primary-color);
}



.service-card:hover .service-description {
    color: var(--text-dark);
}

.services-grid .service-description {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    text-align: left;
    width: 100%;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-price {
    font-size: 1.375rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    min-height: 2rem;
}

.service-card:hover .service-price {
    transform: translateY(-1px);
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    margin-top: auto;
    padding: 0.875rem 1.25rem;
    border-radius: 0.75rem;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    width: 100%;
    max-width: 100%;
    box-shadow: 
        0 8px 20px rgba(110, 0, 209, 0.28);
}

.service-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 55%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
    border-radius: 0.75rem;
}

.service-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.service-link span {
    position: relative;
    z-index: 1;
    color: #ffffff;
    transition: all 0.5s ease;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.service-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease;
    width: 16px;
    height: 16px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-link:hover {
    transform: translateY(-2px);
    background: var(--gradient-1);
    box-shadow: 
        0 12px 28px rgba(110, 0, 209, 0.34),
        0 0 0 3px rgba(110, 0, 209, 0.12);
    border-color: transparent;
}

.service-link:hover::before {
    opacity: 1;
}

.service-link:hover::after {
    width: 220px;
    height: 220px;
}

.service-link:hover span {
    color: white;
    transform: translateX(1px);
    font-weight: 700;
}

.service-link:hover svg {
    transform: translateX(3px);
    color: white;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}

.service-link:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(110, 0, 209, 0.28),
        0 8px 20px rgba(110, 0, 209, 0.28);
}

/* Portfolio Section */
.portfolio {
    padding: var(--section-padding-y) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(224, 89, 64, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(224, 89, 64, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    transition: height 0.4s ease;
    min-height: 400px;
}

.portfolio-item {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(224, 89, 64, 0.08);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    background: white;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    box-sizing: border-box;
    visibility: hidden;
}

.portfolio-item.animated {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.portfolio-item.hidden {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    height: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-color);
    border-radius: 2rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover::before {
    opacity: 0.3;
    filter: blur(10px);
}

.portfolio-item.animated {
    animation: fadeInUp 0.6s ease forwards;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(224, 89, 64, 0.25),
                0 0 0 1px rgba(224, 89, 64, 0.15);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    flex-shrink: 0;
}

.portfolio-img {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
}

.portfolio-item:hover .portfolio-img {
    transform: translateY(-30%);
}

.portfolio-content {
    padding: 2rem;
    background: white;
    display: flex;
    flex-direction: column;
    flex: 1;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-content {
    background: #fafafa;
}

.portfolio-category {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(224, 89, 64, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.portfolio-item:hover .portfolio-category {
    background: rgba(224, 89, 64, 0.15);
    transform: translateY(-2px);
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: transform 0.3s ease, color 0.3s ease;
}

.portfolio-item:hover .portfolio-title {
    transform: translateY(-2px);
    color: var(--primary-color);
}

.portfolio-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.portfolio-item:hover .portfolio-description {
    transform: translateY(-2px);
    color: var(--text-dark);
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-tags {
    transform: translateY(-2px);
}

.tag {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.portfolio-footer {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}




/* Portfolio Page Styles */
.portfolio-hero {
    padding: var(--section-padding-y) 0;
    background: var(--gradient-1);
    color: white;
    text-align: center;
    margin-top: 0;
}

.portfolio-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.portfolio-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.8;
}

article.portfolio {
    padding: 0;
}

.portfolio-filters-section {
    padding: 15px 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-btn {
    padding: 0.75rem 1.75rem;
    border: 2px solid rgba(224, 89, 64, 0.15);
    background: white;
    border-radius: 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 89, 64, 0.15);
}

.filter-btn.active {
    background: var(--gradient-1);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 16px rgba(224, 89, 64, 0.3);
    transform: translateY(-2px);
}

.filter-btn.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224, 89, 64, 0.4);
}

.portfolio-full {
    padding: var(--section-padding-y) 0;
    background: var(--bg-light);
}

.portfolio-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2.5rem;
}

.portfolio-item-full {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    background: white;
    opacity: 0;
    transform: translateY(30px);
    display: block;
    text-decoration: none;
    color: inherit;
}

.portfolio-item-full.animated {
    animation: fadeInUp 0.6s ease forwards;
}

.portfolio-item-full.hidden {
    display: none;
}

.portfolio-item-full:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image-full {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.portfolio-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: absolute;
    top: 0;
    left: 0;
}

.portfolio-item-full:hover .portfolio-img-full {
    transform: scale(1.1);
}

.portfolio-overlay-full {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item-full:hover .portfolio-overlay-full {
    opacity: 1;
}

.portfolio-category-full {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.portfolio-title-full {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.portfolio-description-full {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.portfolio-tags-full {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag-full {
    font-size: 0.8rem;
    padding: 0.5rem 0.875rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 500;
}

.portfolio-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}



/* About Page Styles */
.about-hero {
    padding: var(--section-padding-y) 0;
    background: var(--gradient-1);
    color: white;
    text-align: center;
    margin-top: 0;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.8;
}

.about-main {
    padding: var(--section-padding-y) 0;
    background: white;
}

.about-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-main-text {
    opacity: 0;
}

.about-main-text.animated {
    animation: fadeInLeft 0.8s ease forwards;
}

.about-text-large {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-main-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.125rem;
}

.about-main-image {
    opacity: 0;
}

.about-main-image.animated {
    animation: fadeInRight 0.8s ease forwards;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    display: block;
}

.values {
    padding: var(--section-padding-y) 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.value-card.animated {
    animation: fadeInUp 0.6s ease forwards;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-description {
    color: var(--text-light);
    line-height: 1.7;
}

.team {
    padding: var(--section-padding-y) 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.team-member.animated {
    animation: fadeInUp 0.6s ease forwards;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    margin-bottom: 1.5rem;
}

.team-avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.team-member:hover .team-avatar-img {
    transform: scale(1.05);
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-stats {
    padding: var(--section-padding-y) 0;
    background: var(--bg-light);
    color: var(--text-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.stat-card {
    background: var(--bg-white);
    border: 1px solid rgba(224, 89, 64, 0.12);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 168px;
}

.stat-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: rgba(224, 89, 64, 0.22);
}

.stat-card.animated {
    animation: none;
}

.stat-card .stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.03em;
    display: block;
}

.stat-card .stat-label {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
    text-align: center;
}

.process {
    padding: var(--section-padding-y) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(224, 89, 64, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.process .container {
    position: relative;
    z-index: 1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
    position: relative;
    align-items: stretch;
    padding: 2rem 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 89, 64, 0.03) 0%, rgba(224, 89, 64, 0.03) 100%);
    border-radius: 2rem;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.process-steps:hover::before {
    opacity: 1;
}

.process-step {
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
    padding: 3rem 2.5rem;
    border-radius: 2rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(224, 89, 64, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    overflow: hidden;
    border: 2px solid rgba(224, 89, 64, 0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 360px;
    z-index: 1;
    backdrop-filter: blur(10px);
    will-change: transform, opacity;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-color);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    border-radius: 2rem 2rem 0 0;
}

.process-step::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at center, rgba(224, 89, 64, 0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
    transform: translate(50%, 50%);
}

.process-step:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}

@keyframes processStepAppear {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Transition for hover effects - applied by default */
.process-step:not(.animated) {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s ease,
                background 0.4s ease;
}

/* Animation for process steps - disable transition during animation to avoid conflicts */
.process-step.animated {
    animation: processStepAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-fill-mode: forwards;
    transition: none !important;
}

/* Re-enable transition after animation completes - use class to track completion */
.process-step.animation-complete {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s ease,
                background 0.4s ease !important;
}

/* Ensure hover works smoothly after animation */
.process-step.animation-complete:hover {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s ease,
                background 0.4s ease !important;
}

.process-step:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 24px 60px rgba(224, 89, 64, 0.2),
        0 0 0 3px rgba(224, 89, 64, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(224, 89, 64, 0.35);
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9ff 100%);
}

.process-step:hover::before {
    transform: scaleX(1);
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 4px 12px rgba(224, 89, 64, 0.3);
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-shrink: 0;
    z-index: 2;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-color);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s ease;
    box-shadow: 
        0 12px 36px rgba(224, 89, 64, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 1.25rem;
}

.step-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.process-step:hover .step-icon::after {
    width: 120px;
    height: 120px;
}

.step-icon svg {
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                filter 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    background: var(--primary-color);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    position: relative;
    display: inline-block;
    animation: gradientShift 5s ease infinite;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease,
                filter 0.4s ease;
    opacity: 0.65;
    margin: 0;
    padding: 0;
    letter-spacing: -0.05em;
}

.process-step.animation-complete:hover .step-number {
    transform: scale(1.08) translateX(4px);
    opacity: 0.85;
    filter: drop-shadow(0 4px 12px rgba(224, 89, 64, 0.5));
}

.process-step:hover .step-number {
    transform: scale(1.08) translateX(4px);
    opacity: 0.85;
    filter: drop-shadow(0 4px 12px rgba(224, 89, 64, 0.5));
}

.process-step.animation-complete:hover .step-icon {
    transform: rotate(12deg) scale(1.18) translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(224, 89, 64, 0.5),
        inset 0 3px 6px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.process-step:hover .step-icon {
    transform: rotate(12deg) scale(1.18) translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(224, 89, 64, 0.5),
        inset 0 3px 6px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.process-step:hover .step-icon::before {
    opacity: 1;
}

.process-step:hover .step-icon svg {
    transform: scale(1.25) rotate(-8deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.step-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.step-title {
    font-size: 1.625rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    line-height: 1.3;
    min-height: 4rem;
    display: flex;
    align-items: flex-start;
    letter-spacing: -0.01em;
}

.process-step:hover .step-title {
    color: var(--primary-color);
    transform: translateX(4px);
}

.step-title {
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-description {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 1.0625rem;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.process-step:hover .step-description {
    color: #4b5563;
    transform: translateX(2px);
}

/* Process Section Modern Override */
.process.process-modern {
    background: #f8fbff;
}

.process-modern .process-modern__header .section-title,
.process-modern .process-modern__header .section-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.process-modern .process-modern__steps {
    margin-top: 2.4rem;
    gap: 1.25rem;
}

.process-modern .process-modern__steps::before {
    display: none;
}

.process-modern .process-modern__step {
    min-height: 100%;
    padding: 1.4rem 1.25rem;
    border-radius: 1.05rem;
    border: 1px solid #dfe8f4;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(18, 33, 52, 0.07);
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.process-modern .process-modern__step::before,
.process-modern .process-modern__step::after {
    display: none;
}

.process-modern .process-modern__step:hover {
    transform: translateY(-4px);
    border-color: #c7d9ef;
    box-shadow: 0 14px 30px rgba(18, 33, 52, 0.12);
}

.process-modern .step-icon-wrapper {
    margin-bottom: 0.8rem;
    align-items: center;
    justify-content: space-between;
}

.process-modern .step-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.8rem;
    background: #2f5d91;
    box-shadow: 0 8px 18px rgba(47, 93, 145, 0.25);
}

.process-modern .step-icon::before,
.process-modern .step-icon::after {
    display: none;
}

.process-modern .step-icon svg {
    width: 1.3rem;
    height: 1.3rem;
    filter: none;
}

.process-modern .step-number {
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 800;
    color: #c4d5ea;
    opacity: 1;
}

.process-modern .step-content {
    text-align: left;
}

.process-modern .step-title {
    min-height: auto;
    margin-bottom: 0.45rem;
    font-size: 1.12rem;
    line-height: 1.35;
    color: #1b2f47;
}

.process-modern .step-description {
    font-size: 0.95rem;
    line-height: 1.58;
    color: #586d87;
}


/* Contacts Page Styles */
.contacts-hero {
    padding: 6rem 0 5rem;
    background: var(--gradient-1);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contacts-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.contacts-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contacts-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.contacts-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

.contacts-main {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
    position: relative;
}

.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contacts-info-block {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.contacts-info-block.animated {
    animation: fadeInLeft 0.8s ease forwards;
}

.contacts-intro {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(224, 89, 64, 0.1);
}

.contact-items-full {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item-full {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 1.25rem;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.contact-item-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.contact-item-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(224, 89, 64, 0.15);
    border-color: rgba(224, 89, 64, 0.2);
}

.contact-item-full:hover::before {
    transform: scaleY(1);
}

.contact-icon-full {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(224, 89, 64, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-icon-full::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.contact-item-full:hover .contact-icon-full {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 24px rgba(224, 89, 64, 0.4);
}

.contact-item-full:hover .contact-icon-full::before {
    width: 100px;
    height: 100px;
}

.contact-icon-full svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.contact-item-full:hover .contact-icon-full svg {
    transform: scale(1.1);
}

.contact-details-full {
    flex: 1;
}

.contact-details-full h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.contact-item-full:hover .contact-details-full h4 {
    color: var(--primary-color);
}

.contact-details-full p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.contact-details-full a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.contact-details-full a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.contact-details-full a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.contact-details-full a:hover::after {
    width: 100%;
}

.contact-note {
    font-size: 0.9375rem;
    color: var(--text-light);
    opacity: 0.75;
    font-style: italic;
    margin-top: 0.25rem;
}

.social-links {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.social-links h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.contacts-form-block {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.contacts-form-block.animated {
    animation: fadeInRight 0.8s ease forwards;
}

.form-intro {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(224, 89, 64, 0.1);
}

.contact-form-full {
    background: #ffffff;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(224, 89, 64, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

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

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

.form-group-full {
    margin-bottom: 1.75rem;
}

.form-group label,
.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.form-group:focus-within label,
.form-group-full:focus-within .form-label {
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-input-full {
    width: 100%;
    padding: 1.125rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f9fafb;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-input-full:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(224, 89, 64, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-input-full::placeholder {
    color: #9ca3af;
    opacity: 0.7;
}

.form-group textarea,
.form-textarea-full {
    resize: vertical;
    min-height: 160px;
    line-height: 1.6;
}

.contact-form-full .btn-primary {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    margin-top: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(224, 89, 64, 0.3);
}

.contact-form-full .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 89, 64, 0.4);
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.form-checkbox {
    display: none;
}

.form-checkbox-label .checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 0.375rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox:checked + .checkbox-custom {
    background: var(--gradient-1);
    border-color: var(--primary-color);
}

.form-checkbox:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
}

.form-checkbox-label .checkbox-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-checkbox-label .checkbox-text a {
    color: #ffffff;
    text-decoration: none;
}

.contacts-map {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
    position: relative;
}

.map-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(224, 89, 64, 0.1);
    transition: all 0.4s ease;
}

.map-container:hover {
    box-shadow: 0 12px 48px rgba(224, 89, 64, 0.2);
    transform: translateY(-4px);
}

.map-container iframe,
.map-container embed,
.map-container object {
    width: 100%;
    height: 600px;
    display: block;
    border: none;
}

.map-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: block;
    transition: transform 0.4s ease;
}

.map-container:hover .map-img {
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.75rem 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(224, 89, 64, 0.1);
    transition: all 0.3s ease;
}

.map-overlay:hover {
    transform: translateX(-50%) translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.map-overlay p {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-note {
    font-size: 0.9375rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* Animation for contacts page */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Page Styles */
.services-hero {
    padding: var(--section-padding-y) 0;
    background: var(--gradient-1);
    color: white;
    text-align: center;
    margin-top: 0;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.services-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.8;
}

.services-full {
    padding:3rem 0;
}

.services-cta {
    padding: var(--section-padding-y) 0;
    background: var(--bg-light);
}

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

/* Calculator Page Styles */
.calculator-hero {
    padding: var(--section-padding-y) 0;
    background: var(--gradient-1);
    color: white;
    text-align: center;
    margin-top: 70px;
}

.calculator-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.calculator-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.calculator-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Service Single Page Styles */
.service-single-hero {
    padding: var(--section-padding-y) 0;
    background: var(--gradient-1);
    color: white;
    text-align: center;
    margin-top: 0;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    backdrop-filter: blur(10px);
}

.service-hero-icon svg {
    width: 50px;
    height: 50px;
    color: white;
    display: block;
}

.service-hero-icon svg,
.service-hero-icon svg * {
    fill: currentColor;
    stroke: currentColor;
}

.service-hero-icon {
    flex-shrink: 0;
}

.service-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.service-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-hero-price {
    font-size: 2rem;
    font-weight: 700;
    opacity: 0.95;
}

.service-single-content {
    padding: var(--section-padding-y) 0;
    background: white;
}

.service-content-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
    max-width: 100%;
    overflow: visible;
}

.service-main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-page-smm .service-content-layout {
    grid-template-columns: 1fr;
}

.service-section {
    margin-bottom: 4rem;
}

.service-description-full {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
}

.service-description-full p {
    margin-bottom: 1.5rem;
}

/* Service Features Section */
.service-features {
    padding: var(--section-padding-y) 0;
    background: white;
}

.service-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-step-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.service-step-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.service-step-item .step-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    min-width: 80px;
}

.service-step-item .step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-step-item .step-description {
    color: var(--text-light);
    line-height: 1.7;
}

.service-timeline {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 1rem;
    border-left: 4px solid var(--primary-color);
}

.timeline-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-self: start;
}

.service-sidebar.sticky-sidebar,
.sticky-sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
}

.service-order-card,
.service-info-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.service-order-card h3,
.service-info-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-order-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.info-item-sidebar {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.info-item-sidebar strong {
    color: var(--text-dark);
}

.info-item-sidebar span {
    color: var(--primary-color);
    font-weight: 600;
}

.related-services {
    padding: var(--section-padding-y) 0;
    background: var(--bg-light);
}

/* Service Image Section */
.service-image-section {
    padding: var(--section-padding-y) 0;
    background: var(--bg-light);
}

.service-main-image {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.service-main-image-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1.5rem;
}

/* Service Description */
.service-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0;
    text-align: left;
}

.service-description p {
    margin-bottom: 1.5rem;
}

/* Service Benefits */
.service-benefits-section {
    margin-bottom: 0;
}

.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(224, 89, 64, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.service-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(224, 89, 64, 0.15);
    border-color: rgba(224, 89, 64, 0.3);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(224, 89, 64, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.service-benefit-card:hover .benefit-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.service-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.service-benefit-card .benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.service-benefit-card .benefit-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    display: block;
}

.service-benefit-card .benefit-icon svg,
.service-benefit-card .benefit-icon svg * {
    fill: currentColor;
    stroke: currentColor;
}

.service-benefit-card .benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-benefit-card .benefit-description {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Service Technologies */
.service-technologies-section {
    margin-bottom: 0;
}

.service-technologies-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-tech-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.service-tech-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
}

.service-tech-item .tech-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    color: var(--primary-color);
}

.service-tech-item .tech-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    display: block;
}

.service-tech-item .tech-icon svg,
.service-tech-item .tech-icon svg * {
    fill: currentColor;
    stroke: currentColor;
}

.service-tech-item .tech-info {
    flex: 1;
}

.service-tech-item .tech-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.service-tech-item .tech-description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* Sticky Sidebar */

/* Service Price Card */
.service-price-card {
    padding: 1.5rem;
    background: var(--primary-color);
    border-radius: 1rem;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-price-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.service-price-value {
    font-size: 2rem;
    font-weight: 700;
}

.service-timeline {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
}

.service-timeline-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.service-timeline-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Service Guarantees */
.service-guarantees {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.guarantees-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.guarantees-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.guarantee-item svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

/* Service Packages */
.service-packages {
    padding: var(--section-padding-y) 0;
    background: var(--bg-light);
}

.service-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-package-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-package-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}


.package-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.package-price {
    margin-bottom: 1rem;
}

.package-price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.package-price-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

.package-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.package-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.package-feature svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(224, 89, 64, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(224, 89, 64, 0.15);
    border-color: rgba(224, 89, 64, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(224, 89, 64, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.service-feature-card:hover .feature-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.service-feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.service-feature-card .feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    display: block;
}

.service-feature-card .feature-icon svg,
.service-feature-card .feature-icon svg * {
    fill: currentColor;
    stroke: currentColor;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-card-description {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Service Steps */
.service-steps {
    padding: var(--section-padding-y) 0;
    background: white;
}

.service-steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.service-step-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(224, 89, 64, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
    border-radius: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(224, 89, 64, 0.1);
    counter-increment: step-counter;
}

.service-step-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(224, 89, 64, 0.12);
    border-color: rgba(224, 89, 64, 0.2);
    background: linear-gradient(135deg, rgba(224, 89, 64, 0.04) 0%, rgba(139, 92, 246, 0.04) 100%);
}

.step-item-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(224, 89, 64, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--primary-color);
    font-size: 1.5rem;
}

.step-item-content {
    flex: 1;
}

.step-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.step-item-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(224, 89, 64, 0.1);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
}

.service-step-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    border-radius: 1rem 0 0 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-step-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    background: white;
}

.service-step-item:hover::before {
    opacity: 1;
}

.step-item-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    min-width: 80px;
    text-align: center;
}

.step-item-content {
    flex: 1;
}

.step-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.step-item-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 2rem;
}

.step-duration svg {
    width: 16px;
    height: 16px;
}

/* Service Portfolio Examples */
.service-portfolio-examples {
    padding: var(--section-padding-y) 0;
    background: white;
}

.service-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-example-card {
    display: block;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.service-example-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.example-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-example-card:hover .example-image img {
    transform: scale(1.05);
}

.example-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-example-card:hover .example-overlay {
    opacity: 1;
}

.example-content {
    padding: 1.5rem;
}

.example-category {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.example-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* Service Gallery */
.service-gallery {
    padding: var(--section-padding-y) 0;
    background: var(--bg-light);
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
}

.service-gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.service-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-gallery-item:hover img {
    transform: scale(1.1);
}

.service-gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.service-gallery-item .gallery-overlay svg {
    width: 48px;
    height: 48px;
    color: white;
}

/* Service Testimonials */
.service-testimonials {
    padding: var(--section-padding-y) 0;
    background: white;
}

.service-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.service-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.testimonial-quote {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.testimonial-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author-position {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Service FAQ */
.service-faq {
    padding: 0;
    background: transparent;
}

.service-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.service-faq-item {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow, border-color;
}

.service-faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    background: transparent;
    border: none;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.faq-arrow {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.service-faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease 0.1s;
    opacity: 0;
    will-change: max-height, padding, opacity;
}

.service-faq-item .faq-answer[style*="max-height"] {
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease 0.1s;
}

.service-faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 1.5rem 1.5rem 1.5rem;
    opacity: 1;
}

.faq-answer-content {
    padding-top: 0.5rem;
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
    will-change: opacity, transform;
}

.service-faq-item.active .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* Service Additional */
.service-additional {
    padding: var(--section-padding-y) 0;
    background: white;
}

.service-additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-additional-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.service-additional-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.service-additional-card .additional-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.service-additional-card .additional-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    display: block;
}

.service-additional-card .additional-icon svg,
.service-additional-card .additional-icon svg * {
    fill: currentColor;
    stroke: currentColor;
}

.additional-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.additional-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.additional-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
}

/* Service CTA */
.service-cta {
    padding: var(--section-padding-y) 0;
    background: var(--gradient-1);
    color: white;
    text-align: center;
}

.service-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-cta .cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.service-cta .cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-cta .btn-large,
.service-cta .btn-primary,
.service-cta .btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
    background: white;
    color: #0f1010;
    border: 2px solid transparent;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.25),
        0 0 0 0 rgba(255, 255, 255, 0);
}

.service-cta .btn-large::before,
.service-cta .btn-primary::before,
.service-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 89, 64, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-cta .btn-large:hover::before,
.service-cta .btn-primary:hover::before,
.service-cta .btn:hover::before {
    left: 100%;
}

.service-cta .btn-large:hover,
.service-cta .btn-primary:hover,
.service-cta .btn:hover {
    transform: translateY(-4px) scale(1.05);
    background: #f8f9fa;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 0 4px rgba(255, 255, 255, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.6);
    color: #0f1010;
}

.service-cta .btn-large svg,
.service-cta .btn-primary svg,
.service-cta .btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-cta .btn-large:hover svg,
.service-cta .btn-primary:hover svg,
.service-cta .btn:hover svg {
    transform: translateX(6px) scale(1.1);
}

.service-cta-content {
    position: relative;
    z-index: 1;
}





/* Calculator Section */
.calculator {
    padding: var(--section-padding-y) 0;
    background: white;
}

.calculator-layout {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    padding: 0 1rem;
}

.calculator-layout.animated {
    animation: fadeInUp 0.8s ease forwards;
}

/* Left Block: Information */
.calc-info-block {
    background: var(--bg-light);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    position: sticky;
    top: 100px;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
}

.calc-info-block::-webkit-scrollbar {
    width: 8px;
}

.calc-info-block::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 4px;
}

.calc-info-block::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.calc-info-block::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.calc-info-content {
    display: none;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.calc-info-content.active {
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.5s ease;
}

.calc-info-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.info-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-item-content {
    color: var(--text-light);
    line-height: 1.8;
}

.info-item-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.info-item-content p:last-child {
    margin-bottom: 0;
}

.info-item-content strong {
    color: var(--text-dark);
    font-weight: 600;
    display: inline-block;
    margin-right: 0.5rem;
}

.info-item-content br {
    margin-bottom: 0.5rem;
}

/* Calculator */
.calc-calculator-block {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(224, 89, 64, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    border: 2px solid rgba(224, 89, 64, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.calc-calculator-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-color);
    background-size: 200% 100%;
    animation: gradientShift 5s ease infinite;
    border-radius: 2rem 2rem 0 0;
}

.calculator-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, rgba(224, 89, 64, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    padding: 0.5rem;
    border-radius: 1rem;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.05),
        0 4px 12px rgba(224, 89, 64, 0.1);
    flex-shrink: 0;
    position: relative;
}

.calc-tab {
    flex: 1;
    padding: 1.125rem 2rem;
    border: none;
    background: transparent;
    border-radius: 0.75rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    position: relative;
    z-index: 1;
}

.calc-tab:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.calc-tab.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 
        0 8px 20px rgba(224, 89, 64, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.calc-content {
    display: none;
    width: 100%;
    box-sizing: border-box;
}

.calc-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.calc-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 2.5rem;
}

.calc-option {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    padding: 1.75rem;
    border-radius: 1.25rem;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(224, 89, 64, 0.08);
    border: 2px solid rgba(224, 89, 64, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.calc-option:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(224, 89, 64, 0.15),
        0 0 0 2px rgba(224, 89, 64, 0.2);
    border-color: rgba(224, 89, 64, 0.3);
}

/* Опции с чекбоксами занимают всю ширину */
.calc-option:nth-child(4),
.calc-option:nth-child(5) {
    grid-column: 1 / -1;
}

.calc-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.4;
}

.calc-select {
    width: 100%;
    padding: 1.125rem 1.25rem;
    border: 2px solid rgba(224, 89, 64, 0.2);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.calc-select:hover {
    border-color: rgba(224, 89, 64, 0.4);
    box-shadow: 0 4px 12px rgba(224, 89, 64, 0.1);
}

.calc-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 4px rgba(224, 89, 64, 0.15),
        0 4px 12px rgba(224, 89, 64, 0.2);
    transform: translateY(-1px);
}

.calc-range-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.calc-range {
    flex: 1;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(90deg, #e5e7eb 0%, rgba(224, 89, 64, 0.2) 100%);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.calc-range:hover {
    background: linear-gradient(90deg, rgba(224, 89, 64, 0.2) 0%, rgba(224, 89, 64, 0.4) 100%);
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 
        0 4px 12px rgba(224, 89, 64, 0.4),
        0 0 0 3px rgba(224, 89, 64, 0.1);
    transition: all 0.3s ease;
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.3);
    box-shadow: 
        0 6px 20px rgba(224, 89, 64, 0.5),
        0 0 0 4px rgba(224, 89, 64, 0.15);
}

.calc-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.calc-range::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: var(--primary-dark);
}

.calc-range-value {
    min-width: 55px;
    max-width: 70px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(224, 89, 64, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
    white-space: nowrap;
    box-sizing: border-box;
}

.calc-checkbox-wrapper,
.calc-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    box-sizing: border-box;
}

.calc-checkbox-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.calc-option:nth-child(4),
.calc-option:nth-child(5) {
    grid-column: span 3;
}

.calc-option:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(224, 89, 64, 0.15),
        0 0 0 2px rgba(224, 89, 64, 0.2);
    border-color: rgba(224, 89, 64, 0.3);
}

.calc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.calc-checkbox {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #e5e7eb;
    border-radius: 0.375rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.calc-checkbox:checked + .checkbox-custom {
    background: var(--gradient-1);
    border-color: var(--primary-color);
}

.calc-checkbox:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.checkbox-text {
    color: var(--text-dark);
    font-weight: 500;
}

.calc-result {
    margin-top: 0;
    padding: 2.5rem;
    background: var(--primary-color);
    background-size: 200% 100%;
    border-radius: 1.5rem;
    text-align: center;
    color: white;
    box-shadow: 
        0 20px 60px rgba(224, 89, 64, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: gradientShift 5s ease infinite;
    width: 100%;
    box-sizing: border-box;
}

.calc-result::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulseGlow 3s ease infinite;
}

.calc-result-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.calc-result-label {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.calc-result-price {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.calc-result-note {
    font-size: 0.9375rem;
    opacity: 0.9;
    font-weight: 400;
}

.calc-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.calc-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(224, 89, 64, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.calc-submit:hover::before {
    width: 300px;
    height: 300px;
}

.calc-submit:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.calc-submit:active {
    transform: translateY(-1px);
}

/* About Section */
.about {
    padding: var(--section-padding-y) 0;
    background: #ffffff;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    opacity: 1;
    display: flex;
    flex-direction: column;
}

.about-text.animated {
    animation: fadeInLeft 0.8s ease forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text .section-title {
    margin-bottom: 1.75rem;
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.about-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.75;
    max-width: 90%;
}

.about-description:last-of-type {
    margin-bottom: 0;
}

/* About highlights (main page #about) */
.about-highlights {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.about-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    box-shadow:
        0 4px 20px rgba(224, 89, 64, 0.08),
        0 0 0 1px rgba(224, 89, 64, 0.06);
    border: 1px solid rgba(224, 89, 64, 0.1);
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.about-highlight:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 40px rgba(224, 89, 64, 0.12),
        0 0 0 1px rgba(224, 89, 64, 0.15);
    border-color: rgba(224, 89, 64, 0.2);
}

.about-highlight:hover::before {
    transform: scaleX(1);
}

.about-highlight .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    display: block;
}

.about-highlight .stat-label {
    color: #64748b;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.01em;
}



.about-image {
    opacity: 1;
    position: relative;
}

.about-image.animated {
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image {
    opacity: 1;
    position: relative;
}

.about-image.animated {
    animation: fadeInRight 0.8s ease forwards;
}

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

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(224, 89, 64, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 1.5rem;
    z-index: -1;
}

.about-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Contact Section */
.contact {
    padding: var(--section-padding-y) 0;
    background: radial-gradient(circle at 15% 15%, rgba(30, 58, 95, 0.12) 0%, transparent 45%), linear-gradient(180deg, #f8fbff 0%, #edf4fc 100%);
}

.contact-headline .section-title,
.contact-headline .section-subtitle {
    max-width: 800px;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(30, 58, 95, 0.1);
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid rgba(30, 58, 95, 0.15);
}

.contact-chip svg {
    width: 14px;
    height: 14px;
}

.contact-headline .section-title {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-title-accent {
    display: block;
    font-size: 0.58em;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.01em;
}

.contact-headline-note {
    margin: 0.8rem 0 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.8rem;
    border-radius: 0.75rem;
    color: #4a607c;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(74, 96, 124, 0.16);
    font-size: 0.88rem;
    font-weight: 500;
}

.contact-headline-note svg {
    width: 14px;
    height: 14px;
    color: #2a7e59;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-lead {
    opacity: 0;
}

.contact-lead.animated {
    animation: fadeInLeft 0.8s ease forwards;
}

.contact-hero-card {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 1.35rem;
    color: #ffffff;
    background: linear-gradient(135deg, #1b3658 0%, #2a537f 55%, #3a6e9c 100%);
    box-shadow: 0 18px 40px rgba(27, 54, 88, 0.26);
    margin-bottom: 1.2rem;
}

.contact-hero-card::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.contact-hero-card::before {
    content: "";
    position: absolute;
    left: -30px;
    bottom: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.contact-hero-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.8rem;
    line-height: 1.25;
}

.contact-hero-card p {
    margin: 0 0 1.15rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.contact-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.16);
}

.contact-hero-points span svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.contact-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.contact-proof-item {
    background: #ffffff;
    border-radius: 0.9rem;
    padding: 1rem 0.8rem;
    border: 1px solid #dce5f1;
    text-align: center;
    box-shadow: 0 8px 20px rgba(20, 36, 56, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-proof-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(20, 36, 56, 0.1);
}

.contact-proof-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-proof-item span {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

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

.contact-quick-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    padding: 1rem 1.1rem;
    border-radius: 0.9rem;
    background: #ffffff;
    border: 1px solid #dce5f1;
    box-shadow: 0 8px 20px rgba(20, 36, 56, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-quick-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(20, 36, 56, 0.1);
}

.contact-quick-link span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.contact-quick-link-icon {
    width: 42px;
    height: 42px;
    border-radius: 0.75rem;
    background: rgba(30, 58, 95, 0.09);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-quick-link-icon svg {
    width: 20px;
    height: 20px;
}

.contact-quick-link-text {
    min-width: 0;
}

.contact-quick-link strong {
    display: block;
    margin-top: 0.2rem;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.35;
}

.contact-quick-link.is-static {
    cursor: default;
}

.contact-quick-link.is-static:hover {
    transform: none;
    box-shadow: 0 8px 20px rgba(20, 36, 56, 0.05);
}

.contact-form {
    opacity: 0;
}

.contact-conversion-form {
    background: #ffffff;
    border: 1px solid #dbe5f3;
    border-radius: 1.35rem;
    padding: 2rem;
    box-shadow: 0 18px 40px rgba(15, 16, 16, 0.1);
}

.contact-form-top {
    margin-bottom: 1.2rem;
}

.contact-form-top h3 {
    margin: 0 0 0.4rem;
    font-size: 1.45rem;
    line-height: 1.25;
}

.contact-form-top p {
    margin: 0;
    color: var(--text-light);
}

.contact-form.animated {
    animation: fadeInRight 0.8s ease forwards;
}

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

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(224, 89, 64, 0.1);
}

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

.contact-form-meta {
    display: grid;
    gap: 0.35rem;
    margin-top: 0.9rem;
}

.contact-form-meta span {
    font-size: 0.82rem;
    color: #657186;
    position: relative;
    padding-left: 1rem;
}

.contact-form-meta span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48rem;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: #3d7ccc;
}

/* Contact Section v2 */
.contact-modern__header {
    position: relative;
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact-modern__title {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    padding: 0.2rem 1.2rem;
    color: #1b3350;
}

.contact-modern__title::before,
.contact-modern__title::after {
    content: "✦";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #2f5d91;
    background: #eaf2ff;
    border: 1px solid #ccddf5;
    box-shadow: 0 8px 16px rgba(47, 93, 145, 0.18);
    animation: contactIconFloat 2.8s ease-in-out infinite;
}

.contact-modern__title::before {
    left: -46px;
}

.contact-modern__title::after {
    right: -46px;
    animation-delay: 0.35s;
}

.contact-modern__header::before,
.contact-modern__header::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b9cde9, transparent);
}

.contact-modern__header::before {
    left: 15%;
}

.contact-modern__header::after {
    right: 15%;
}

@keyframes contactIconFloat {
    0%,
    100% {
        transform: translateY(-50%) translateY(0);
    }
    50% {
        transform: translateY(-50%) translateY(-5px);
    }
}

.contact-modern {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.contact-modern__info {
    background: #ffffff;
    border: 1px solid #dde6f2;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 14px 32px rgba(15, 16, 16, 0.08);
}

.contact-modern__info h3 {
    margin: 0 0 0.65rem;
    font-size: 1.7rem;
    line-height: 1.3;
    color: #1d2f47;
}

.contact-modern__offer {
    padding: 1.1rem 1.15rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #f4f8ff 0%, #ecf3ff 100%);
    border: 1px solid #d7e4f8;
}

.contact-modern__lead {
    margin: 0;
    color: #53627a;
}

.contact-modern__features {
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.contact-modern__features li {
    position: relative;
    padding-left: 1.95rem;
    color: #334560;
    transition: transform 0.2s ease;
}

.contact-modern__features li:hover {
    transform: translateX(3px);
}

.contact-modern__features li svg {
    position: absolute;
    left: 0;
    top: 0.18rem;
    width: 1rem;
    height: 1rem;
    color: #3d7ccc;
}

.contact-modern__microproof {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.contact-modern__microproof span {
    text-align: center;
    background: #f7faff;
    border: 1px solid #dbe6f4;
    border-radius: 0.75rem;
    padding: 0.6rem 0.45rem;
    color: #4f617c;
    font-size: 0.82rem;
}

.contact-modern__microproof strong {
    display: block;
    font-size: 0.95rem;
    color: #1d2f47;
}

.contact-modern__cards {
    margin-top: 1.25rem;
    display: grid;
    gap: 0.7rem;
}

.contact-modern__card {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-areas:
        "icon label"
        "icon value";
    column-gap: 0.75rem;
    text-decoration: none;
    background: #f7faff;
    border: 1px solid #dbe6f4;
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
    transition: all 0.2s ease;
}

.contact-modern__card:hover {
    transform: translateY(-2px);
    border-color: #b9cce7;
    background: #f1f6ff;
}

.contact-modern__card-label {
    grid-area: label;
    display: block;
    font-size: 0.8rem;
    color: #5e708a;
}

.contact-modern__card strong {
    grid-area: value;
    display: block;
    margin-top: 0.2rem;
    color: #1d2f47;
    font-size: 1rem;
    line-height: 1.35;
}

.contact-modern__card-icon {
    grid-area: icon;
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e6f0ff;
    color: #2f5d91;
}

.contact-modern__card-icon svg {
    width: 20px;
    height: 20px;
}

.contact-modern__card.is-static:hover {
    transform: none;
    border-color: #dbe6f4;
    background: #f7faff;
}

.contact-modern__form {
    background: #ffffff;
    border: 1px solid #dde6f2;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 14px 32px rgba(15, 16, 16, 0.08);
}

.contact-modern__form-top {
    margin-bottom: 1.15rem;
}

.contact-modern__form-top h3 {
    margin: 0 0 0.45rem;
    font-size: 1.4rem;
    color: #1d2f47;
}

.contact-modern__form-top p {
    margin: 0;
    color: #53627a;
}

.contact-modern__form-note {
    margin: 0.8rem 0 0;
    font-size: 0.82rem;
    color: #6a7890;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
}

/* Ensure footer container respects main-content boundaries */
.main-content .footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

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

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

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Ripple effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(20);
        opacity: 0;
    }
}

.btn-success {
    background: #10b981 !important;
}

/* Benefits Section */
.benefits {
    padding: var(--section-padding-y) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(224, 89, 64, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.benefits .container {
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch;
}

.benefit-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 2rem;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(224, 89, 64, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(224, 89, 64, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    height: 100%;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(224, 89, 64, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.benefit-card.animated {
    animation: benefitCardAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes benefitCardAppear {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(224, 89, 64, 0.2),
        0 0 0 2px rgba(224, 89, 64, 0.25);
    border-color: rgba(224, 89, 64, 0.3);
}

.benefit-card:hover::before {
    transform: scaleX(1);
    animation: gradientShift 3s ease infinite;
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--primary-color);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 12px 40px rgba(224, 89, 64, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    overflow: hidden;
    flex-shrink: 0;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 1.5rem;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--primary-color);
    background-size: 200% 100%;
    border-radius: 1.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: gradientShift 3s ease infinite;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.benefit-card:hover .benefit-icon {
    transform: rotate(10deg) scale(1.15) translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(224, 89, 64, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.benefit-card:hover .benefit-icon::before {
    opacity: 1;
}

.benefit-card:hover .benefit-icon::after {
    opacity: 1;
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.2) rotate(-5deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
    position: relative;
    line-height: 1.3;
}

.benefit-card:hover .benefit-title {
    color: var(--primary-color);
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.0625rem;
    transition: color 0.3s ease;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.benefit-card:hover .benefit-description {
    color: var(--text-dark);
}

/* Benefits Section Modern Override */
.benefits.benefits-modern {
    background: #f7f9fc;
}

.benefits-modern .benefits-modern__header .section-title,
.benefits-modern .benefits-modern__header .section-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.benefits-modern .benefits-modern__grid {
    gap: 1.3rem;
    margin-top: 2.4rem;
}

.benefits-modern .benefits-modern__card {
    text-align: left;
    align-items: flex-start;
    padding: 1.6rem 1.35rem;
    border-radius: 1.1rem;
    border: 1px solid #dfe6f1;
    box-shadow: 0 10px 24px rgba(18, 33, 52, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefits-modern .benefits-modern__card::before,
.benefits-modern .benefits-modern__card::after {
    display: none;
}

.benefits-modern .benefits-modern__card:hover {
    transform: translateY(-5px);
    border-color: #c7d7eb;
    box-shadow: 0 14px 30px rgba(18, 33, 52, 0.12);
}

.benefits-modern .benefits-modern__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2f4f76;
    background: #eaf1fb;
    border: 1px solid #d3e0f3;
}

.benefits-modern .benefit-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 0 0.95rem;
    border-radius: 0.8rem;
    background: #2f5d91;
    box-shadow: 0 8px 18px rgba(47, 93, 145, 0.28);
}

.benefits-modern .benefit-icon::before,
.benefits-modern .benefit-icon::after {
    display: none;
}

.benefits-modern .benefit-icon svg {
    width: 1.35rem;
    height: 1.35rem;
    filter: none;
}

.benefits-modern .benefit-title {
    margin-bottom: 0.55rem;
    font-size: 1.2rem;
    line-height: 1.35;
    color: #162941;
}

.benefits-modern .benefit-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #586b84;
    justify-content: flex-start;
}



/* Process Section */
.process {
    padding: var(--section-padding-y) 0;
    background: var(--bg-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-light);
    line-height: 1.7;
}



/* Testimonials Section */
.testimonials {
    padding: var(--section-padding-y) 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating .star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.author-avatar svg {
    width: 2rem;
    height: 2rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-position {
    font-size: 0.875rem;
    color: var(--text-light);
}

.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.testimonial-card.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Clients Section */
.clients {
    padding: var(--section-padding-y) 0;
    background: var(--bg-white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    min-height: 120px;
    opacity: 0;
    transform: scale(0.8);
}

.client-logo:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px) scale(0.8);
}

.client-logo.animated {
    opacity: 1;
    transform: scale(1);
}

.client-logo.animated:hover {
    transform: translateY(-3px) scale(1);
}

.client-img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover .client-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* FAQ Section */
.faq {
    padding: var(--section-padding-y) 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(224, 89, 64, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 1rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(224, 89, 64, 0.1);
    position: relative;
    will-change: transform, box-shadow, border-color;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(224, 89, 64, 0.12);
    transform: translateY(-2px);
    border-color: rgba(224, 89, 64, 0.2);
}

.faq-item.active {
    box-shadow: 0 12px 32px rgba(224, 89, 64, 0.15);
    border-color: rgba(224, 89, 64, 0.3);
    transform: translateY(-2px);
}

.faq-item.active::before {
    transform: scaleY(1);
}

.faq-question {
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(224, 89, 64, 0.02) 0%, transparent 100%);
}

.faq-item.active .faq-question {
    background: linear-gradient(90deg, rgba(224, 89, 64, 0.05) 0%, transparent 100%);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
}

.faq-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(224, 89, 64, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-number {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(224, 89, 64, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 1rem;
    position: relative;
    will-change: transform, background;
}

.faq-item:hover .faq-icon-wrapper {
    background: linear-gradient(135deg, rgba(224, 89, 64, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    transform: scale(1.05);
}

.faq-item.active .faq-icon-wrapper {
    background: var(--primary-color);
    transform: scale(1.1);
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon {
    color: white;
    transform: translate(-50%, -50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    background: linear-gradient(180deg, rgba(224, 89, 64, 0.02) 0%, transparent 100%);
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease 0.1s;
    opacity: 0;
    will-change: max-height, padding, opacity;
}

.faq-answer[style*="max-height"] {
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease 0.1s;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 2rem 1.75rem;
    opacity: 1;
}

.faq-answer-content {
    padding-top: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
    will-change: opacity, transform;
}

.faq-item.active .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
}

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

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* FAQ Modern Override */
.faq.faq-modern {
    background: #f8fafd;
}

.faq-modern .faq-modern__header .section-title,
.faq-modern .faq-modern__header .section-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.faq-modern .faq-modern__list {
    margin-top: 2.2rem;
    gap: 0.9rem;
}

.faq-modern .faq-modern__item {
    border-radius: 0.95rem;
    border: 1px solid #dce5f2;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-modern .faq-modern__item::before {
    display: none;
}

.faq-modern .faq-modern__item:hover {
    transform: translateY(-2px);
    border-color: #c8d7ea;
    box-shadow: 0 12px 26px rgba(16, 24, 40, 0.09);
}

.faq-modern .faq-modern__question {
    padding: 1.1rem 1.15rem;
}

.faq-modern .faq-question-content {
    align-items: center;
    gap: 0.7rem;
}

.faq-modern .faq-number {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    font-size: 0.76rem;
    color: #315b88;
    background: #e9f1fb;
    border: 1px solid #d0deef;
}

.faq-modern .faq-question h3 {
    font-size: 1.08rem;
    line-height: 1.4;
    color: #1c2f47;
}

.faq-modern .faq-icon-wrapper {
    width: 2rem;
    height: 2rem;
    border-radius: 0.6rem;
    border: 1px solid #d2dfef;
    background: #f4f8fd;
}

.faq-modern .faq-icon {
    width: 0.95rem;
    height: 0.95rem;
}

.faq-modern .faq-answer {
    background: transparent;
    padding: 0 1.15rem;
}

.faq-modern .faq-answer-content {
    padding: 20px;
}

.faq-modern .faq-answer p {
    color: #5a6d86;
    line-height: 1.62;
}

.faq-modern .faq-item.active .faq-answer {
    padding: 0 1.15rem 1rem;
}

.faq-modern .faq-item.active .faq-answer-content {
    transform: none;
}

.faq-modern .faq-item.active .faq-icon-wrapper {
    background: #2f5d91;
    border-color: #2f5d91;
}

/* CTA Section */
.cta {
    position: relative;
    padding: var(--section-padding-y) 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 10%;
    animation-delay: 5s;
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -50px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-align: center;
    line-height: 1.2;
}

.cta-btn-primary {
    background: white;
    color: #0f1010;
    border: 2px solid transparent;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 0 0 rgba(224, 89, 64, 0);
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 89, 64, 0.1), transparent);
    transition: left 0.6s ease;
}

.cta-btn-primary:hover::before {
    left: 100%;
}

.cta-btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 0 4px rgba(224, 89, 64, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    background: #f8f9fa;
}

.cta-btn-primary svg {
    width: 1.375rem;
    height: 1.375rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.cta-btn-primary:hover svg {
    transform: translateX(6px) scale(1.1);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 0 rgba(255, 255, 255, 0);
}

.cta-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-btn-secondary:hover::before {
    left: 100%;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 20px 50px rgba(255, 255, 255, 0.3),
        0 0 0 4px rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.cta-btn-secondary svg {
    width: 1.375rem;
    height: 1.375rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.cta-btn-secondary:hover svg {
    transform: translateX(6px) scale(1.1);
}

.cta-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.cta-feature:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.cta-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-feature:hover .cta-feature-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.cta-feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.cta-feature span {
    font-weight: 500;
    font-size: 1rem;
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--bg-light);
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    margin-top: 0;
}

.breadcrumbs-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.breadcrumbs-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs-link:hover {
    color: var(--primary-color);
}

.breadcrumbs-separator {
    color: var(--text-light);
    opacity: 0.5;
}

.breadcrumbs-current {
    color: var(--text-dark);
    font-weight: 500;
}

/* Tablet Responsive */
/* Tablet styles for process-steps */




/* Mobile Responsive */


/* Contact Modal */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal.active .modal-overlay {
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 320px;
    width: 90%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.3s ease;
    z-index: 10001;
}

.contact-modal.active .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.modal-close:hover {
    background: #f8f9fa;
    transform: rotate(90deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.modal-close svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: #333;
    stroke-width: 2.5;
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-form .form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
}

.modal-form .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modal-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(224, 89, 64, 0.1);
}

.modal-form .form-group input::placeholder {
    color: #999;
}

.modal-submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.modal-submit svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* CF7 inside contact modal */
.contact-modal .wpcf7 {
    margin: 0;
}

.contact-modal .wpcf7 form {
    margin: 0;
}

.contact-modal .wpcf7 p {
    margin: 0;
    display: grid;
    gap: 0.85rem;
}

.contact-modal .wpcf7 label {
    display: grid;
    gap: 0.42rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: #30445f;
}

.contact-modal .wpcf7-form-control-wrap {
    display: block;
}

.contact-modal .wpcf7 br {
    display: none;
}

.contact-modal .wpcf7 input[type="text"],
.contact-modal .wpcf7 input[type="email"],
.contact-modal .wpcf7 input[type="tel"],
.contact-modal .wpcf7 textarea {
    width: 100%;
    border: 1px solid #d6e2f2;
    background: #f9fbff;
    color: #24354e;
    border-radius: 0.75rem;
    padding: 0.8rem 0.95rem;
    font-size: 0.94rem;
    line-height: 1.4;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    margin-bottom: 15px;
}

.contact-modal .wpcf7 textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-modal .wpcf7 form.invalid .wpcf7-response-output, .contact-modal .wpcf7 form.unaccepted .wpcf7-response-output, .contact-modal .wpcf7 form.failed .wpcf7-response-output {
    margin:5px 0 !important;
}

.contact-modal .wpcf7 input[type="text"]::placeholder,
.contact-modal .wpcf7 input[type="email"]::placeholder,
.contact-modal .wpcf7 input[type="tel"]::placeholder,
.contact-modal .wpcf7 textarea::placeholder {
    color: #8392a8;
}

.contact-modal .wpcf7 input[type="text"]:focus,
.contact-modal .wpcf7 input[type="email"]:focus,
.contact-modal .wpcf7 input[type="tel"]:focus,
.contact-modal .wpcf7 textarea:focus {
    outline: none;
    border-color: #7fa6df;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(91, 133, 201, 0.16);
}

.contact-modal .wpcf7-submit {
    width: 100%;
    border: 0;
    border-radius: 0.85rem;
    padding: 0.9rem 1.1rem;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #fff;
    background: linear-gradient(135deg, #2f5d91, #5a83d7);
    box-shadow: 0 10px 20px rgba(33, 71, 126, 0.25);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-modal .wpcf7-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 14px 24px rgba(33, 71, 126, 0.3);
}

.contact-modal .wpcf7-submit:active {
    transform: translateY(0);
}

.contact-modal .wpcf7-spinner {
    margin: 0.5rem auto 0;
    display: block;
}

.contact-modal .wpcf7-not-valid-tip {
    margin-top: 0.35rem;
    color: #c22626;
    font-size: 0.78rem;
    font-weight: 500;
}

.contact-modal .wpcf7-response-output {
    margin: 0.8rem 0 0;
    padding: 0.72rem 0.82rem;
    border-radius: 0.65rem;
    font-size: 0.83rem;
    line-height: 1.45;
}

.contact-modal .wpcf7 form.invalid .wpcf7-response-output,
.contact-modal .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-modal .wpcf7 form.failed .wpcf7-response-output {
    border: 1px solid #f2b8b8;
    background: #fff2f2;
    color: #8e2525;
}

.contact-modal .wpcf7 form.sent .wpcf7-response-output {
    border: 1px solid #b8e6c1;
    background: #effcf2;
    color: #23663a;
}

.contact-modal .wpcf7 form.submitting .wpcf7-submit {
    opacity: 0.8;
    pointer-events: none;
}



/* Project Single Page */
.project-hero {
    padding: var(--section-padding-y) 0;
    background: var(--gradient-1);
    color: white;
    text-align: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.project-hero .container {
    max-width: 1200px;
}

.project-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.project-category {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.project-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.project-subtitle {
    font-size: 1.375rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.project-image-section {
    padding: var(--section-padding-y) 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: visible;
}

.project-image-section .container {
    max-width: 1400px;
    overflow: visible;
}

.project-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 89, 64, 0.3), transparent);
}

.project-main-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(224, 89, 64, 0.1);
    position: relative;
    height: 700px;
}

.project-main-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-color);
    border-radius: 2rem;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.project-main-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.project-main-image-wrapper:active {
    cursor: grabbing;
}

.project-main-image-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-out;
    will-change: transform;
    max-width: none;
}

.project-main-image:hover .project-main-image-wrapper {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(224, 89, 64, 0.5) transparent;
}

.project-main-image:hover .project-main-image-wrapper::-webkit-scrollbar {
    width: 8px;
}

.project-main-image:hover .project-main-image-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.project-main-image:hover .project-main-image-wrapper::-webkit-scrollbar-thumb {
    background: rgba(224, 89, 64, 0.5);
    border-radius: 4px;
}

.project-main-image:hover .project-main-image-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(224, 89, 64, 0.7);
}

.project-overview {
    padding: var(--section-padding-y) 0;
    background: #fff;
    position: relative;
    overflow: visible;
}

.project-overview .container {
    max-width: 1400px;
    overflow: visible;
}

.project-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.project-overview-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
    max-width: 100%;
    overflow: visible;
}

.project-description {
    line-height: 1.9;
}

.project-description .section-title {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-description-content {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.9;
}

.project-description-content p {
    margin-bottom: 1.75rem;
}

.project-description-content p:last-child {
    margin-bottom: 0;
}

.project-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-self: start;
}

.project-sidebar.sticky-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.project-info-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(224, 89, 64, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-info-card:hover {
    box-shadow: 0 8px 32px rgba(224, 89, 64, 0.12);
    border-color: rgba(224, 89, 64, 0.2);
    transform: translateY(-2px);
}

.project-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2rem 2rem 0 0;
}

.info-card-title {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-top: 0.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(224, 89, 64, 0.1);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.info-tag {
    padding: 0.625rem 1.25rem;
    background: var(--primary-color);
    color: white;
    border-radius: 0.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(224, 89, 64, 0.3);
    transition: all 0.3s ease;
}

.info-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(224, 89, 64, 0.4);
}

.project-features {
    padding: var(--section-padding-y) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.project-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 89, 64, 0.3), transparent);
}

.project-features .section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1.5rem;
}

.project-features .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.feature-item {
    background: #ffffff;
    border-radius: 2rem;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(224, 89, 64, 0.08);
    border: 1px solid rgba(224, 89, 64, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    box-sizing: border-box;
}

.feature-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: 2rem 2rem 0 0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-item:hover .feature-image img {
    transform: scale(1.1);
}

.feature-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(224, 89, 64, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(224, 89, 64, 0.15),
                0 0 0 1px rgba(224, 89, 64, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 1.5rem auto;
    color: white;
    box-shadow: 0 10px 25px rgba(224, 89, 64, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.feature-item:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(224, 89, 64, 0.4);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.3;
    min-height: 3.9rem;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.feature-description {
    font-size: 1.0625rem;
    color: #666;
    line-height: 1.7;
    flex-grow: 1;
    margin: 0;
    padding: 0 2rem 2rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.project-results {
    padding: var(--section-padding-y) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: visible;
}

.project-results .container {
    max-width: 1400px;
    overflow: visible;
}

.project-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(224, 89, 64, 0.4), transparent);
    border-radius: 2px;
}

.project-results .section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.result-item {
    background: var(--primary-color);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(224, 89, 64, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.result-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.result-item:hover::before {
    opacity: 1;
}

.result-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(224, 89, 64, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.result-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.result-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.result-label {
    font-size: 1.125rem;
    opacity: 0.95;
    font-weight: 500;
}

.project-cta {
    padding: var(--section-padding-y) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.project-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 89, 64, 0.3), transparent);
}

.project-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.project-cta .cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-cta .cta-subtitle {
    font-size: 1.375rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.project-cta .cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}



/* Sidebar Scrollbar Styling */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Prevent body scroll when sidebar is open on mobile */
body.sidebar-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Smooth transitions for sidebar */
.sidebar,
.main-content {
    transition: all 0.3s ease;
}

/* Improve sidebar link spacing */
.sidebar-menu {
    padding: 0.5rem 0;
}

/* Sidebar submenu styling */
.sidebar-submenu {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding-left: 1rem;
    display: none;
}

.sidebar-menu li.menu-item-has-children:hover .sidebar-submenu,
.sidebar-menu li.menu-item-has-children.active .sidebar-submenu {
    display: block;
}

.sidebar-submenu .sidebar-link {
    padding-left: 2.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ===========================
   Breadcrumbs
   =========================== */
.breadcrumbs {
    padding: 20px 0;
    font-size: 14px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
    color: #6b7280;
}

.breadcrumbs-item a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs-item a:hover {
    color: var(--primary-color);
}

.breadcrumbs-item + .breadcrumbs-item::before {
    content: "/";
    margin: 0 12px;
    color: #9ca3af;
    font-weight: 400;
}

.breadcrumbs-item-current {
    color: #0f1010;
}

.breadcrumbs-item-current span {
    color: #0f1010;
    font-weight: 600;
}

.breadcrumbs-item-home a {
    color: #0f1010;
}

.breadcrumbs-item-home a:hover {
    color: var(--primary-color);
}

/* ===========================
   Service hero refinements
   =========================== */
.service-hero-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.service-hero-tag {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(110, 0, 209, 0.08);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 500;
}

.service-aside-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-aside-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.4);
}

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

.service-aside-list .label {
    color: #6b7280;
    font-size: 13px;
}

.service-aside-list .value {
    font-weight: 600;
    color: #111827;
    font-size: 13px;
}

/* ===========================
   Service Hero Full Styles
   =========================== */
.service-hero {
    padding: var(--section-padding-y) 0;
    background: var(--gradient-1);
    color: white;
    text-align: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.service-hero .container {
    max-width: 1200px;
}

.service-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.service-hero-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.service-hero-icon svg {
    width: 50px;
    height: 50px;
    color: white;
    display: block;
}

.service-hero-icon svg,
.service-hero-icon svg * {
    fill: currentColor;
    stroke: currentColor;
}

.service-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.service-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.service-hero-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.95;
}

.service-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-hero-actions .btn {
    min-width: 200px;
}

/* Service Content Layout */
.service-content {
    padding: var(--section-padding-y) 0;
    background: white;
    overflow: visible;
}

.service-content .container {
    max-width: 1400px;
    overflow: visible;
}

.service-content-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
    max-width: 100%;
    overflow: visible;
}

.service-main-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    min-width: 0;
}

.service-section {
    margin-bottom: 0;
}

.service-section .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #1a1a1a;
}

.service-description-full {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #555;
}

.service-description-full p {
    margin-bottom: 1.5rem;
}

.service-description-full p:last-child {
    margin-bottom: 0;
}

/* Service Info Card (Sidebar) */
.service-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(224, 89, 64, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-info-card:hover {
    box-shadow: 0 8px 32px rgba(224, 89, 64, 0.12);
    border-color: rgba(224, 89, 64, 0.2);
    transform: translateY(-2px);
}

.service-info-card:last-child {
    margin-bottom: 0;
}

.service-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-item-sidebar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    gap: 1rem;
}

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

.info-item-sidebar strong {
    color: #6b7280;
    font-size: 0.9375rem;
    font-weight: 600;
}

.info-item-sidebar span {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9375rem;
    text-align: right;
}

/* Service Technologies in Sidebar */
.service-technologies-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0;
    list-style: none;
    padding: 0;
}

.service-tech-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-tech-item:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
}

.service-tech-item .tech-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-tech-item .tech-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.service-tech-item .tech-description {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Guarantees List */
.guarantees-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
}

.guarantee-item svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Service CTA Enhanced */
.service-cta {
    padding: var(--section-padding-y) 0;
    background: var(--gradient-1);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.service-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-cta .cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.service-cta .cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive */


/* Project Additional Images */
.project-additional-images {
    padding: var(--section-padding-y) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.project-additional-images .section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 2.5rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.additional-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-image-item {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.additional-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.additional-image-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.additional-image-item:hover .additional-image-img {
    transform: scale(1.05);
}

/* Project Gallery Enhanced */
.project-gallery {
    padding: var(--section-padding-y) 0;
    background: #fff;
    position: relative;
}

.project-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 89, 64, 0.3), transparent);
}

.project-gallery .section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 2.5rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #f8f9fa;
    aspect-ratio: 4/3;
}

.gallery-item-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(224, 89, 64, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.gallery-overlay svg {
    color: white;
    width: 48px;
    height: 48px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Project Results Enhanced */
.project-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.result-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(224, 89, 64, 0.1);
    border: 1px solid rgba(224, 89, 64, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.result-card:hover::before {
    transform: scaleX(1);
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(224, 89, 64, 0.15), 0 0 0 1px rgba(224, 89, 64, 0.2);
}

.result-card .result-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 25px rgba(224, 89, 64, 0.3);
}

.result-card .result-icon svg {
    width: 32px;
    height: 32px;
}

.result-card .result-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-card .result-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.result-card .result-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Project Testimonial - Beautiful Redesign */
.project-testimonial {
    padding: 3rem 0;
    background: var(--gradient-1);
    color: white;
    position: relative;
    overflow: hidden;
}

.project-testimonial .container {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

/* Animated Background Elements */
.project-testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: testimonial-glow 25s ease-in-out infinite;
    pointer-events: none;
}

.project-testimonial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 55%);
    pointer-events: none;
    animation: testimonial-pulse 8s ease-in-out infinite;
}

@keyframes testimonial-glow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(40px, -40px) rotate(120deg);
    }
    66% {
        transform: translate(-40px, 40px) rotate(240deg);
    }
}

@keyframes testimonial-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Modern Compact Glass Card */
.testimonial-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 1.5rem;
    padding: 2.5rem 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.18);
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* Icons removed - modern design without icons */

/* Modern Typography with Better Contrast */
.testimonial-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    margin: 0 0 2rem 0;
    font-style: normal;
    text-align: left;
    color: rgba(255, 255, 255, 0.98);
    position: relative;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
    padding: 0;
}

/* Modern Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-author::before {
    width: 80px;
    background: rgba(255, 255, 255, 0.7);
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-author-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
}

.testimonial-author-position {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

/* Project Related */
.project-related {
    padding: var(--section-padding-y) 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.project-related .section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 2.5rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.related-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-project-card {
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.related-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.related-project-card:hover::before {
    transform: scaleX(1);
}

.related-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(224, 89, 64, 0.15);
}

.related-project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.related-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-project-card:hover .related-image {
    transform: scale(1.1);
}

.related-project-content {
    padding: 2rem;
}

.related-project-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.related-project-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

/* Project Info Card Enhanced */
.project-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(224, 89, 64, 0.1);
}

.project-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.project-info-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-info-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 0.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(224, 89, 64, 0.3);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(224, 89, 64, 0.4);
}

.project-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.project-link-btn svg {
    transition: transform 0.3s ease;
}

.project-link-btn:hover svg {
    transform: translate(3px, -3px);
}

.project-text-content {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.9;
}

.project-text-content p {
    margin-bottom: 1.75rem;
}

.project-text-content p:last-child {
    margin-bottom: 0;
}

.project-content-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 5rem;
    max-width: 100%;
    margin: 0 auto;
    align-items: start;
}

.project-section {
    margin-bottom: 4rem;
}

.project-section:last-child {
    margin-bottom: 0;
}

.project-section .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-solution {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.9;
}

.project-solution p {
    margin-bottom: 1.75rem;
}

.project-solution p:last-child {
    margin-bottom: 0;
}

/* Project Additional Images */
.project-additional-images {
    padding: var(--section-padding-y) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.project-additional-images .section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 2.5rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.additional-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-image-item {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.additional-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.additional-image-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.additional-image-item:hover .additional-image-img {
    transform: scale(1.05);
}

/* Project Gallery Enhanced */
.project-gallery {
    padding: var(--section-padding-y) 0;
    background: #fff;
    position: relative;
}

.project-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 89, 64, 0.3), transparent);
}

.project-gallery .section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 2.5rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #f8f9fa;
    aspect-ratio: 4/3;
}

.gallery-item-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(224, 89, 64, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.gallery-overlay svg {
    color: white;
    width: 48px;
    height: 48px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Project Results Enhanced */
.project-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}

.result-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(224, 89, 64, 0.08);
    border: 1px solid rgba(224, 89, 64, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 0;
    box-sizing: border-box;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1.5rem 1.5rem 0 0;
}

.result-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 89, 64, 0.02) 0%, rgba(224, 89, 64, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.result-card:hover::before {
    transform: scaleX(1);
}

.result-card:hover::after {
    opacity: 1;
}

.result-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 12px 40px rgba(224, 89, 64, 0.15),
        0 0 0 1px rgba(224, 89, 64, 0.2);
    border-color: rgba(224, 89, 64, 0.25);
}

.result-card .result-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.75rem;
    background: var(--primary-color);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 
        0 8px 24px rgba(224, 89, 64, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.result-card .result-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, rgba(224, 89, 64, 0.3), rgba(224, 89, 64, 0.3));
    border-radius: 1.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(8px);
}

.result-card:hover .result-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 32px rgba(224, 89, 64, 0.35),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.result-card:hover .result-icon::before {
    opacity: 0.6;
}

.result-card .result-icon svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
    transition: all 0.4s ease;
}

.result-card:hover .result-icon svg {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    transform: scale(1.1);
}

.result-card .result-value {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.03em;
    transition: all 0.4s ease;
}

.result-card:hover .result-value {
    transform: scale(1.05);
}

.result-card .result-title {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    line-height: 1.4;
    transition: all 0.4s ease;
}

.result-card:hover .result-title {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.result-card .result-description {
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    color: #555;
    line-height: 1.7;
    margin: 0;
    transition: all 0.4s ease;
}

.result-card:hover .result-description {
    color: #444;
}


/* Project Related */
.project-related {
    padding: var(--section-padding-y) 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.project-related .section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 2.5rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.related-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-project-card {
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.related-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.related-project-card:hover::before {
    transform: scaleX(1);
}

.related-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(224, 89, 64, 0.15);
}

.related-project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.related-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-project-card:hover .related-image {
    transform: scale(1.1);
}

.related-project-content {
    padding: 2rem;
}

.related-project-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.related-project-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

/* Project Info Card Enhanced */
.project-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(224, 89, 64, 0.1);
}

.project-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.project-info-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-info-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 0.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(224, 89, 64, 0.3);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(224, 89, 64, 0.4);
}

.project-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.project-link-btn svg {
    transition: transform 0.3s ease;
}

.project-link-btn:hover svg {
    transform: translate(3px, -3px);
}

.project-text-content {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.9;
}

.project-text-content p {
    margin-bottom: 1.75rem;
}

.project-text-content p:last-child {
    margin-bottom: 0;
}

.project-content-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.project-section {
    margin-bottom: 4rem;
}

.project-section:last-child {
    margin-bottom: 0;
}

.project-section .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-solution {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.9;
}

.project-solution p {
    margin-bottom: 1.75rem;
}

.project-solution p:last-child {
    margin-bottom: 0;
}

.project-section .project-text-content ul,
.project-section .project-text-content ol,
.project-section .project-solution ul,
.project-section .project-solution ol {
    margin: 1.2rem 0 1.6rem;
    padding: 0;
}

.project-section .project-text-content ul,
.project-section .project-solution ul {
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.project-section .project-text-content ul li,
.project-section .project-solution ul li {
    position: relative;
    padding: 0.78rem 0.95rem 0.78rem 2.7rem;
    border-radius: 0.9rem;
    border: 1px solid #dbe6f4;
    background: #f8fbff;
    color: #364f6f;
}

.project-section .project-text-content ul li::before,
.project-section .project-solution ul li::before {
    content: "";
    position: absolute;
    left: 0.95rem;
    top: 0.92rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    background: #2f5d91;
    box-shadow: inset 0 0 0 3px #ffffff;
}

.project-section .project-text-content ol,
.project-section .project-solution ol {
    list-style: none;
    counter-reset: project-list;
    display: grid;
    gap: 0.75rem;
}

.project-section .project-text-content ol li,
.project-section .project-solution ol li {
    counter-increment: project-list;
    position: relative;
    padding: 0.78rem 0.95rem 0.78rem 2.95rem;
    border-radius: 0.9rem;
    border: 1px solid #d7e3f3;
    background: #ffffff;
    color: #364f6f;
}

.project-section .project-text-content ol li::before,
.project-section .project-solution ol li::before {
    content: counter(project-list);
    position: absolute;
    left: 0.85rem;
    top: 0.72rem;
    min-width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    background: #e8f0fb;
    color: #2f5d91;
    font-weight: 700;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.project-section .project-text-content li > ul,
.project-section .project-text-content li > ol,
.project-section .project-solution li > ul,
.project-section .project-solution li > ol {
    margin: 0.65rem 0 0.1rem;
}

@media (max-width: 768px) {
    .project-section .project-text-content ul li,
    .project-section .project-solution ul li,
    .project-section .project-text-content ol li,
    .project-section .project-solution ol li {
        padding: 0.72rem 0.78rem 0.72rem 2.5rem;
        border-radius: 0.75rem;
        font-size: 0.96rem;
    }

    .project-section .project-text-content ul li::before,
    .project-section .project-solution ul li::before {
        left: 0.78rem;
        top: 0.84rem;
        width: 1rem;
        height: 1rem;
    }

    .project-section .project-text-content ol li::before,
    .project-section .project-solution ol li::before {
        left: 0.72rem;
        top: 0.68rem;
        min-width: 1.28rem;
        height: 1.28rem;
        font-size: 0.72rem;
    }
}



/* Sidebar Scrollbar Styling */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Prevent body scroll when sidebar is open on mobile */
body.sidebar-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Smooth transitions for sidebar */
.sidebar,
.main-content {
    transition: all 0.3s ease;
}

/* Improve sidebar link spacing */
.sidebar-menu {
    padding: 0.5rem 0;
}

/* Sidebar submenu styling */
.sidebar-submenu {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding-left: 1rem;
    display: none;
}

.sidebar-menu li.menu-item-has-children:hover .sidebar-submenu,
.sidebar-menu li.menu-item-has-children.active .sidebar-submenu {
    display: block;
}

.sidebar-submenu .sidebar-link {
    padding-left: 2.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ===========================
   SMM Service Page Styles
   =========================== */
/* ===== SMM Stats — цифры под hero ===== */
.smm-stats {
    padding: 3rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid #e5e7eb;
}

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

.smm-stat {
    text-align: center;
    padding: 1.25rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.smm-stat:hover {
    border-color: rgba(224, 89, 64, 0.25);
    box-shadow: 0 8px 24px rgba(224, 89, 64, 0.08);
    transform: translateY(-2px);
}

.smm-stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.smm-stat-label {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.4;
}

/* ===== SMM Intro — вы по адресу ===== */
.smm-intro-block {
    padding: 3.5rem 0;
}

.smm-intro-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.smm-intro-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.smm-intro-card {
    padding: 1.5rem 1.75rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 1rem 1rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.smm-intro-card:hover {
    border-left-color: #f97316;
    box-shadow: 0 8px 24px rgba(224, 89, 64, 0.08);
}

.smm-intro-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    line-height: 1;
}

.smm-intro-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: #374151;
}

/* ===== SMM Benefits — карточки с иконками ===== */
.smm-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.smm-benefit-card {
    padding: 1.75rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.25s ease;
}

.smm-benefit-card:hover {
    border-color: rgba(224, 89, 64, 0.3);
    box-shadow: 0 8px 24px rgba(224, 89, 64, 0.08);
    transform: translateY(-2px);
}

.smm-benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 89, 64, 0.1);
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    color: var(--primary-color);
}

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

.smm-benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.smm-benefit-desc {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ===== SMM Steps — читаемый процесс по шагам ===== */
.smm-steps-timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.smm-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.5rem;
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.smm-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    border-color: rgba(224, 89, 64, 0.35);
}

.smm-step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--gradient-1);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 6px 16px rgba(110, 0, 209, 0.4);
}

.smm-step-body {
    flex: 1;
}

.smm-step-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #111827;
}

.smm-step-desc {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ===== SMM Results — что вы получите (карточки-выгоды) ===== */
.smm-results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.smm-result-card {
    position: relative;
    padding: 1.75rem 1.75rem 1.75rem 1.75rem;
    background: radial-gradient(circle at top left, rgba(224, 89, 64, 0.08), #f9fafb 45%, #ffffff 100%);
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.smm-result-card::before {
    content: 'Результат';
    position: absolute;
    top: 1.3rem;
    right: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b7280;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
}

.smm-result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
    border-color: rgba(224, 89, 64, 0.45);
}

.smm-result-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    margin-bottom: 1rem;
    border-radius: 0.9rem;
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
}

.smm-result-icon svg {
    width: 22px;
    height: 22px;
}

.smm-result-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.smm-result-desc {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* ===== SMM For Who ===== */
.smm-forwho-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.smm-forwho-card {
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.25s ease;
}

.smm-forwho-card:hover {
    border-color: rgba(224, 89, 64, 0.25);
    box-shadow: 0 4px 16px rgba(224, 89, 64, 0.06);
}

.smm-forwho-name {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.smm-forwho-pain {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.smm-forwho-result {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

/* ===== SMM Cases ===== */
.smm-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.smm-case-card {
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.smm-case-card:hover {
    box-shadow: 0 8px 24px rgba(224, 89, 64, 0.1);
    transform: translateY(-2px);
}

.smm-case-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(224, 89, 64, 0.12);
    padding: 0.3rem 0.6rem;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
}

.smm-case-period {
    display: block;
    font-size: 0.8125rem;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.smm-case-what {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.smm-case-result {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* ===== SMM Tools ===== */
.smm-tools-card {
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.25rem;
    background: white;
}

.smm-tools-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.smm-tools-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.smm-tool-tag {
    padding: 0.5rem 0.875rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
}

.smm-tool-tag:hover {
    background: rgba(224, 89, 64, 0.08);
    border-color: rgba(224, 89, 64, 0.2);
    color: var(--primary-color);
}

/* ===== SMM Tariffs ===== */
.smm-tariffs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}





/* ===== SMM Section spacing + чередующиеся фоны ===== */
.smm-section {
    padding: 3.5rem 0;
}

.service-main-content > .smm-section:nth-of-type(even) {
    background: #f8fafc;
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 1rem;
}

.smm-section .section-title {
    font-size: 1.625rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 0.75rem;
}

.smm-section .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.service-page-smm .service-faq {
    padding: 2rem 0;
}

.service-page-smm .service-main-content {
    gap: 0;
}



.service-page-smm .service-section .section-title {
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
}

.service-page-smm .service-benefits-grid {
    gap: 1.5rem;
}

.service-page-smm .service-benefit-card {
    padding: 2rem;
}

.service-page-smm .service-steps-list {
    gap: 1rem;
}

.service-page-smm .service-step-item {
    padding: 1.75rem 2rem;
}

.service-page-smm .step-item-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 2.5rem;
}

.service-page-smm .service-features-grid {
    gap: 1.5rem;
}

.service-page-smm .service-feature-card {
    padding: 2rem;
}

.service-page-smm .service-description-full {
    font-size: 1.0625rem;
    line-height: 1.85;
}

/* ===== SMM Hero — современный первый экран ===== */
.smm-hero {
    position: relative;
    padding: 5rem 0 5.5rem;
    overflow: hidden;
}

.smm-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 40%, var(--secondary-color) 100%);
}

.smm-hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse 60% 40% at 100% 100%, rgba(0, 0, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.smm-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.smm-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.smm-hero-blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.2);
    top: -150px;
    right: -100px;
}

.smm-hero-blob-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 0, 0, 0.1);
    bottom: -80px;
    left: -80px;
}

.smm-hero .container {
    position: relative;
    z-index: 1;
}

.smm-hero-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.smm-hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.smm-hero-title {
    font-size: clamp(1.875rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.25;
    color: white;
    margin: 0 0 2rem;
    letter-spacing: -0.02em;
}

.smm-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2rem;
    text-align: left;
}

.smm-hero-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    transition: all 0.25s ease;
}

.smm-hero-card:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateX(4px);
}

.smm-hero-card-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 0.5rem;
    color: white;
}

.smm-hero-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.smm-hero-pain-block {
    padding: 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0.75rem;
    border-left: 4px solid rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-align: left;
}

.smm-hero-pain {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    line-height: 1.6;
    margin: 0;
}

.smm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
}

.smm-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.smm-hero-btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.smm-hero-btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.smm-hero-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.smm-hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-3px);
}

.smm-hero-divider {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 0.5rem;
}

/* Анимация появления hero */
.smm-hero-badge { animation: smmFadeUp 0.6s ease both; }
.smm-hero-title { animation: smmFadeUp 0.6s ease 0.1s both; }
.smm-hero-cards { animation: smmFadeUp 0.6s ease 0.2s both; }
.smm-hero-pain-block { animation: smmFadeUp 0.6s ease 0.3s both; }
.smm-hero-actions { animation: smmFadeUp 0.6s ease 0.4s both; }

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

.service-intro-bullets {
    padding: 2.5rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.intro-bullets-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.intro-bullet-item {
    position: relative;
    padding-left: 2rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #374151;
}

.intro-bullet-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.service-tariffs-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-tariff-item {
    padding: 1.5rem;
    border-radius: 1rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-tariff-item.tariff-featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(224, 89, 64, 0.06) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: 0 4px 20px rgba(224, 89, 64, 0.12);
}

.service-tariff-item .tariff-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.service-tariff-item .tariff-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-tariff-item .tariff-desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.tariff-features {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
}

.tariff-features li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.35rem;
}

.tariff-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.tariff-budget-note {
    font-size: 0.8125rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.service-tools-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-tool-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.875rem 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.service-tool-item:hover {
    background: white;
    border-color: rgba(224, 89, 64, 0.2);
}

.service-tool-item .tool-name {
    font-weight: 600;
    color: #1a1a1a;
}

.service-tool-item .tool-desc {
    font-size: 0.8125rem;
    color: #6b7280;
}

/* SMM CTA — аккуратный блок */
.service-cta-smm {
    padding: 4.5rem 0;
}

.service-cta-smm .service-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.service-cta-smm .cta-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-cta-smm .cta-subtitle {
    font-size: 1.0625rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.service-cta-smm .cta-buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 0;
}

.service-cta-smm .cta-buttons-row .cta-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0.5rem;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.service-cta-smm .cta-buttons-row .cta-btn.btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.service-cta-smm .cta-buttons-row .cta-btn.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-cta-smm .cta-form-divider {
    margin: 2rem 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-cta-smm .cta-form-divider::before,
.service-cta-smm .cta-form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.service-cta-smm .cta-form-divider span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.smm-cta-form {
    text-align: left;
}

.smm-cta-form-note {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.smm-cta-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.smm-cta-form-grid .form-group-wide {
    grid-column: 1 / -1;
}

.smm-cta-form-grid .form-group-submit {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
}

.smm-cta-form .form-group {
    margin: 0;
}

.smm-cta-form .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 0.9375rem;
    transition: border-color 0.2s, background 0.2s;
}

.smm-cta-form .form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.18);
}

.smm-cta-form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.smm-cta-form .btn-submit {
    padding: 0.875rem 2rem;
    font-weight: 600;
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.smm-cta-form .btn-submit:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-for-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.for-who-card {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.for-who-card .segment-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.for-who-card .segment-pain,
.for-who-card .segment-result {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.service-cases-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-case-card {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 1rem;
    border-left: 4px solid var(--primary-color);
}

.service-case-card .case-niche {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.service-case-card .case-period {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.service-case-card .case-result {
    font-weight: 600;
    color: var(--primary-color);
}

.service-page-smm .who-manages-card {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.who-manages-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.who-manages-photo img {
    border-radius: 0.75rem;
    max-width: 150px;
}

.who-manages-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.btn-outline-light {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    color: white !important;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: white !important;
    color: white !important;
}










