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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--color-primary);
}

ul {
    list-style: none;
}

.section.legal-section li {
  list-style: none;
  position: relative;
  padding-left: 1.2em;         /* space for your custom bullet */
}

/* Create a round bullet on the left */
.section.legal-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;                  /* adjust to vertically center */
  width: 0.3em;
  height: 0.3em;
  background: currentColor;    /* inherits the li’s text color */
  border-radius: 80%;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

.footer__disclaimer{
    font-size: 10px;
}

/* Variables */
:root {
    --color-primary: #B13737;
    --color-primary-dark: #B13737;
    --color-black: #1B1B1B;
    --color-white: #fff;
    --color-light-gray: #f5f5f5;
    --color-gray: #ccc;
    --transition-fast: 0.2s ease;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.15rem;
}

p {
    margin-bottom: 1rem;
}

/* BUTTONS */
.btn {
    display: inline-block;
    border-radius: 0.5rem;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn--primary {
      position: relative;
  display: inline-block;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  background: var(--color-primary);
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  border: none;
  font-family: "Open Sans", sans-serif;
}
.btn--secondary {
    position: relative;
  display: inline-block;
  padding: 16px 24px;
   backdrop-filter: blur(15px);
  border-radius: 8px; 
  color: #fff;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  border: solid 1px rgba(255, 255, 255, 0.1);
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  margin: 0rem 1rem;
  -webkit-backdrop-filter: blur(15px);
}
.btn--primary svg {
    position: relative;
    top: 3px;
    margin-left: 8px;
    stroke: #fff;
    stroke-width: 2px;
    width: 15px;
}



.btn--primary:hover {
    transform: translateY(-2px);
    
}



.btn--large {
    font-size: 16px;
}

/* HEADERS */
.header {
    width: 100%;
    left: 0;
    z-index: 200;
}

.header--default {
    position: absolute;
    color: var(--color-white);
    background: #FFF;
     box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
}

.header--fixed {
    position: fixed;
    top: 0;
    background-color: var(--color-white);
    color: #333;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header--fixed.visible {
    transform: translateY(0);
}

.header__container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0;
}

a.logo {
    display: flex;
    align-items: center;
}

.header .logo p {
    color: #1B1B1B;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    top: 1px;
    vertical-align: super;
}

.header .logo p span {
    color: var(--color-primary);
}

.header .logo p.light-logo {
    color: #1B1B1B;
}

.logo img {
    height: 50px;
    display: inline-block;
    margin-right: 1rem;
}

.nav--desktop .nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    color: #1B1B1B;
    transition: color var(--transition-fast);
    font-size: 14px;
}

.nav__link:hover {
    color: var(--color-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    margin-left: 0.5rem;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #1B1B1B;
    border-radius: 2px;
    transition: background var(--transition-fast);
}


@media screen and (max-width: 1066px) {

    .nav--desktop .nav__list {
        gap: 1rem;
    }

    .nav__link {
        font-weight: 700;
        font-size: 12px;
    }

    .btn--primary, .btn--secondary {
        font-size: 14px;
        line-height: 16px;
        font-weight: 700;
        padding: 0.6rem 1rem;
    }

    .header__container {
        padding: 1rem 1rem;
    }

    .logo img {
        margin-right: 0rem;
        height: 36px;
    }

    .header .logo p {
        font-size: 14px;
        margin-left: 0.6rem;
    }

}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FFF;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 150;
}

.mobile-menu.visible {
    transform: translateX(0);
}

.mobile-menu__list {
    padding: 7rem 2rem 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu__link {
    color: #1B1B1B;
    font-size: 1.2rem;
    padding: 0.75rem 1rem;
}

.mobile-menu__link.btn {
    padding: 1.6rem 2.2rem;
    margin-top: 1.5rem;
    color: #FFF;
}

/* HERO SECTION */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6rem 1rem 0rem 1rem;
    background: var(--color-black);
    color: var(--color-white);
    text-align: center;
    background: url('../img/hero_back.jpg') no-repeat center center;
    background-size: cover;
}


.flip-in-hor-bottom {
	-webkit-animation: flip-in-hor-bottom 1s cubic-bezier(0.165, 0.840, 0.440, 1.000) both;
	        animation: flip-in-hor-bottom 1s cubic-bezier(0.165, 0.840, 0.440, 1.000) both;
}

.hero__content {
    z-index: 1;
    max-width: 760px;
    display: inline-block;
}

/* ANIMATIONS */
@-webkit-keyframes flip-in-hor-bottom {
  0% {
    -webkit-transform: rotateX(80deg);
            transform: rotateX(80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
    opacity: 1;
  }
}
@keyframes flip-in-hor-bottom {
  0% {
    -webkit-transform: rotateX(80deg);
            transform: rotateX(80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
    opacity: 1;
  }
}

/* TESTIMONIALS */
.testimonials {
    background: #0f1115;
    color: #f7f8fa;
    padding: 2rem 1rem;
}

.section__header--split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonials .section__title {
    color: #ffffff;
    text-align: left;
}

.testimonials .section__header--split > div {
    max-width: 640px;
}

.testimonials .testimonials-intro {
    text-align: left;
    color: rgba(247, 248, 250, 0.75);
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonials__cta {
    align-self: flex-start;
    background: linear-gradient(135deg, #B13737 0%, #821f1f 100%);
    padding: 0.85rem 1.75rem;
    font-weight: 600;
}

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

.testimonial-card {
    background: #151821;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 24px 68px rgba(5, 8, 22, 0.45);
}

.testimonial-card--hero {
    grid-column: span 2;
    background: radial-gradient(135% 135% at 0% 0%, rgba(177, 55, 55, 0.28) 0%, #131622 55%, #10121b 100%);
    border: 1px solid rgba(177, 55, 55, 0.45);
}

.testimonial-card--accent {
    background: #121520;
}

.testimonial-card__tag,
.testimonial-card__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 99px;
    padding: 0.4rem 0.85rem;
    background: rgba(177, 55, 55, 0.15);
    color: #f6d8d8;
    width: fit-content;
}

.testimonial-card__quote {
    font-size: 1.45rem;
    line-height: 1.5;
    font-weight: 600;
    color: #f4f5f8;
}

.testimonial-card__body,
.testimonial-card__footer {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(247, 248, 250, 0.9);
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(247, 248, 250, 0.08);
    display: grid;
    place-items: center;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.testimonial-card__name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-card__role {
    font-size: 0.85rem;
    opacity: 0.7;
}

.testimonial-card__stats,
.testimonial-card__highlights {
    display: grid;
    gap: 0.75rem;
    font-size: 0.95rem;
    padding-left: 1.1rem;
}

.testimonial-card__stats li,
.testimonial-card__highlights li {
    position: relative;
}

.testimonial-card__stats li::before,
.testimonial-card__highlights li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #B13737;
    position: absolute;
    left: -1.1rem;
    top: 0.5rem;
}

.testimonial-card__result {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

@media screen and (max-width: 1024px) {
    .testimonials__layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-card--hero {
        grid-column: span 2;
    }
}

@media screen and (max-width: 768px) {
    .testimonials {
        padding: 4rem 1rem;
    }

    .section__header--split {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonials__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-card--hero {
        grid-column: span 1;
    }
}

/* FAQ */
.faq {
    background: linear-gradient(135deg, #f7f8fb 0%, #ffffff 50%, #eef1ff 100%);
    padding: 2rem 1rem;
}

.faq .section__header {
    margin-bottom: 2rem;
}

.faq__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 3rem;
    align-items: start;
}

.faq__intro {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 24px 68px rgba(30, 45, 92, 0.16);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.faq__intro .section__title {
    text-align: left;
    margin-bottom: 0.75rem;
}

.faq__intro p {
    margin-bottom: 0;
    color: #4a4f64;
    line-height: 1.7;
}

.faq__stats {
    display: grid;
    gap: 1.25rem;
}

.faq__stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq__stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1b1f3b;
}

.faq__stat-label {
    font-size: 0.9rem;
    color: #5a607a;
}

.faq__cta-card {
    padding: 1.75rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(177, 55, 55, 0.1) 0%, rgba(177, 55, 55, 0.2) 100%);
    color: #1b1f3b;
}

.faq__cta-card p {
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq__cta-card .btn {
    background: #B13737;
    color: #ffffff;
}

.faq__accordion {
    display: grid;
    gap: 1rem;
}

.faq__group-title {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7a7f94;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.faq__item {
    border-radius: 16px;
    background: #ffffff;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 20px 40px rgba(30, 45, 92, 0.12);
    border: 1px solid rgba(67, 76, 105, 0.08);
}

.faq__item[open] {
    border-color: rgba(177, 55, 55, 0.35);
    box-shadow: 0 28px 54px rgba(30, 45, 92, 0.16);
}

.faq__question {
    list-style: none;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1b1f3b;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '\25BE';
    float: right;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    color: #B13737;
}

.faq__item[open] .faq__question::after {
    transform: rotate(180deg);
}

.faq__answer {
    margin-top: 1rem;
    color: #4a4f64;
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px solid rgba(67, 76, 105, 0.12);
    padding-top: 1rem;
}

.faq__answer p {
    margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
    .faq__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .faq__intro {
        position: relative;
    }
}

@media screen and (max-width: 768px) {
    .faq {
        padding: 4.5rem 1rem;
    }

    .faq__intro {
        padding: 2rem;
    }

    .faq__item {
        padding: 1rem 1.25rem;
    }
}
.hero__title {
    font-size: 48px;
    line-height: 1.2;
    color: #FFF;
    text-align: center;
}

.hero__cta-group {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.hero__title span {
    color: var(--color-primary);
}

.hero__subtitle {
    margin: 1.5rem 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    opacity: 0.6;
    text-align: center;
}

.hero__image {
    flex: 1;
    text-align: right;
}

.hero__image img {
    width: 100%;
    max-width: 600px;
    opacity: 0.9;
}

/* SECTIONS */
.section {
    padding: 4rem 1rem;
    max-width: 1600px;
    margin: 0 auto;
}

#home .section {
    padding: 4rem 1rem 12rem 1rem;
    max-width: 1600px;
    margin: 0 auto;
}

.section-hero {
    text-align: center;
    max-width: 1600px;
    padding: 5rem 0rem;
}

.section__title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 36px;
    color: #1B1B1B;
}

.section__title span {
    color: var(--color-primary);
}

/* SERVICES GRID */
.services__grid {
    display: block;
    width: 100%;
}


.service {
    display: inline-block;
    text-align: left;
    width: 30%;
    vertical-align: top;
    padding: 2rem;
    color: #242424;
    background: #FFF;
    border-radius: 15px;
    margin: 0.5rem;
    border: solid 1px RGBA(36,36,36,0.1);
    transition: all 0.4s ease;
}


.service svg {
    color: #1B1B1B;
     padding: 1rem;
    background: RGBA(36,36,36,0.06);
    border-radius: 8px;
    display: inline-block;
    margin-right: 1rem;
    width: 60px;
    height: 60px;
    transition: all 0.4s ease;
}
.service.service-2 {
    width: 60%;

}
#services {
  border-radius: 6px;
  color: #1B1B1B;
  position: relative;
    text-align: center;
margin-top: -13rem;
}
#how-it-works .section__title {
    color: #1B1B1B;
}

.service .service__icon {
     background-color: rgba(255, 255, 255, 0.06);
    padding: 0.75rem;
    border-radius: 6px;
    display: block;
    width: 55px;
}


img.service-image {
    width: 50%;
    display: inline-block;

}

.services-right-image {
    display: inline-block;
    width: 46%;
    float: right;
}
.services-right-image img {
  border-radius: 20px;
}

.service__title {
    font-weight: 600;
    color: #242424;
    display: inline-block;
    position: relative;
    vertical-align: text-bottom;
    max-width: 60%;
    transition: all 0.4s ease;
}

p.service__divider-text {
    border-radius: 8px;
    background: RGBA(36,36,36,0.06);
    display: inline-block;
    padding: 0.6rem;
    vertical-align: top;
    margin-right: 1rem;
    transition: all 0.4s ease;
}

p.service__divider-subtext {
    display: inline-block;
    width: 46%;
    position: relative;
    opacity: 0.6;
}

.service__list {
    list-style: disc inside;
    font-size: 0.95rem;
    display: inline-block;
    color: #242424;
    opacity: 0.6;
}

.service-text-block {
    display: inline-block;
    width: 100%;
    text-align: left;
}

.service:not(:first-child) .service__icon {
    flex-shrink: 0;
    display: inline-block;
}

.service:hover svg {
  color: white; 
  background: RGBA(255,255,255,0.1);
}
.service:hover {
  background: #1B1B1B;
  color: white;
}

.service:hover p.service__divider-text {
    background: RGBA(177,55,55,1);
}

.service:hover .service__title {
    color: white;
}

.service-titlesection {
    text-align: left;
    margin: 3rem 3% 3rem 3%;
}
.service-titlesection h2,p {
    display: inline-block;
    margin-bottom: 0;
}
.service-titlesection a {
    float: right;
    bottom: 40px;
}
.service-section-block {
    display: inline-block;
}
.service-section-block-main {
    background: #FFF;
    border: solid 1px RGBA(36,36,36,0.1);
    border-radius: 15px;
    padding: 2rem;
    width: 46%;
    margin: 0.5rem;
    display: inline-block;
    position: relative;
    vertical-align: top;
    text-align: left;
}
.service-section-block-main img {
    border-radius: 15px;
    background: RGBA(36,36,36,0.06);
    padding: 1rem;
    display: inline-block;
    margin-right: 1rem;
}
.service-section-block-main h3,p {
    margin-bottom: 0;
    text-align: left;
}
.service-section-block-text {
    display: inline-block;
    text-align: left;
    position: relative;
    vertical-align: top;
    width: 64%;
}



#case-studies {
    background-color: #1B1B1B;
    background-image: url('../img/case_studies_back.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #FFF;
}
#case-studies h2 {
    color: #FFF;
    text-align: left;
    width: 46%;
    display: inline-block;
}
#case-studies p.case-title-p {
    color: #FFF;
    text-align: right;
    width: 46%;
    display: inline-block;
    opacity: 0.6;
}




@media screen and (max-width: 1080px) {

    p.service__divider-subtext {
    width: 100%;
    font-size: 16px;
    margin-bottom: 0;
}
.service {
    padding: 1rem;
    margin: 0.3rem;
}
.service__title {
    width: 100%;
    display: block;
}

}


@media screen and (max-width: 768px) {
#case-studies h2 {
    width: 100%;
    display: block;
    margin-bottom: 0.5rem;
}
#case-studies p.case-title-p {
    margin-bottom: 1rem;
    text-align: left;
    width: 100%;
    display: block;
}
    .service-titlesection {
    margin: 2rem 0% 2rem 0%;
}
.service-titlesection h2,p {
    display: inline-block;
    margin-bottom: 0;
}
.service-titlesection a {
    float: none;
    bottom: 0px;
    margin-top: 1rem;
}
.service-section-block {
    display: block;
}
.service-section-block-main {
    border-radius: 12px;
    padding: 1rem;
    width: 100%;
    margin: 1rem 0rem;
    display: block;
}
.service-section-block-main img {
    border-radius: 12px;
    padding: 0.6rem;
    display: block;
    margin-right: 0rem;
}
.service-section-block-text {
    display: block;
    width: 100%;
}

    #services {
    margin-top: -7rem;
}
    #home .section {
    padding: 0rem 1rem 6rem 1rem;
}
    .services__grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .service {
        width: 100%;
        margin: 0.5rem 0;
        padding: 1rem;
        text-align: left;

    }

    .service.service-2 {
        width: 100%;
    }

    img.service-image {
    width: 100%;
}

    .service-text-block {
        width: 100%;
        text-align: center;
    }
    .service__icon {
        display: block;
        margin: 0 auto;
    }
    .service__icon img,
    .service__icon svg {
        width: 50px;
        height: 50px;
        display: inline-block;
    }
    .service__title {
        text-align: left;
        margin-bottom: 0;
    }
    .service__list {
        text-align: left;
        width: 100%;
    }
    
}


/* HOW IT WORKS */
.how-it-works__steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    text-align: left;
    flex: 1;
    min-width: 156px;
    padding: 2rem;
    vertical-align: top;
    border-radius: 15px;
    border: solid 1px RGBA(255,255,255,0.1);
    color: #FFF;
    background: RGBA(255,255,255,0.02);
}
.step-item:last-child {
   
}

#how-it-works .section__title {
    color: var(--color-primary);
    text-align: center;
}

#contact .section__title {
    color: #1B1B1B;
    text-align: left;
    margin-bottom: 0;
}



#reviews .section__title {
    color: var(--color-primary);
}

.how-it-works .section {

}

.step-item img {
    border-radius: 10px;
    margin-bottom: 1rem;
    display: inline-block;
}

.step-item__title {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-item__desc {
    font-size: 0.95rem;
    color: #FFF;
    opacity: 0.6;
}

/* WHY CHOOSE */
.why-choose {
    color: #1B1B1B;
}

.why-choose p.why-choose-p-border {
    opacity: 0.6;
    border-bottom: solid 1px RGBA(36,36,36,0.2);
    padding-bottom: 2rem;
}

.why-choose__grid {
    display: inline-block;
    width: 42%;
    vertical-align: top;
    position: relative;
}

.why-choose-left-image {
    text-align: left;
    display: inline-block;
    width: 46%;
    margin-left: 2rem;
}
.why-choose-left-image img {
        border-radius: 20px;
}

.feature {
    border-radius: 0;
    margin: 1rem 0;
    padding: 1rem 1rem;
    text-align: left;
    color: #1B1B1B;
}
.feature__item {
    font-weight: 500;
    background-image: url('../img/ellipse.svg');
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 1.3rem;
    opacity: 0.6;
    margin: 0.5rem 0;
}
.svg-reply-icon {
    padding: 1rem;
    background: RGBA(36,36,36,0.06);
    border-radius: 8px;
    display: inline-block;
    margin-top: 1rem;
}
.feature img {
    display: inline-block;
        padding: 1rem;
    background-color: RGBA(36,36,36,0.026);
    border-radius: 16px;
}

.feature__icon img,
.feature__icon svg {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}


.feature__title {
    margin-bottom: 0.5rem;
}

.feature__desc {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.85);
}

#about {
    background-image: url('../img/about_us.jpg');
    background-color: RGBA(36,36,36,0.026);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding: 0;
    color: #FFF;
}
.about__content {
    text-align: left;
    max-width: 1300px;
    display: ruby;
}
#about h2 {
    color: #FFF;
    text-align: left;
    margin-left: 0rem;
    margin-bottom: 0;
}

/* ABOUT SECTION */

.about__text {
    text-align: left;
    max-width: 46%;
    display: inline-block;
}
.about__text h2 {
    font-size: 24px;
    text-align: left;
}
.about__text p {
    opacity: 0.6;
    text-align: left;
}


 .email-cta {
    /* layout */
    display: grid;
    grid-template-columns: 1fr 0;
    align-items: center;
    float: right;
    /* look */
    height: 56px;
    padding: 0 16px;
    gap: 0;
    vertical-align: top;
    margin-left: 2rem;
    background: rgba(17, 17, 17, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;

    /* optional max width */
    width: 360px;
  }

  /* input */
  .email-cta__input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    font-family: "Open Sans", sans-serif;
  }
  .email-cta__input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }

  /* button */
  .email-cta__btn {
    height: 104%;
    min-width: 76px;
    padding: 0 22px;
    border: 0;
    cursor: pointer;

    background: var(--color-primary);
    color: #fff;

    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;

    display: grid;
    place-items: center;
    transition: transform .08s ease, filter .2s ease, background .2s ease;
  }
  .email-cta__btn:hover { filter: brightness(1.06); }
  .email-cta__btn:active { transform: translateY(1px); }

  .email-cta__icon {
    width: 22px;
    height: 22px;
    display: block;
  }

  .email-cta:has(.email-cta__input:focus) {
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 0 2px rgba(59, 92, 255, 0.25) inset;
  }

  .visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0);
    white-space: nowrap; border: 0;
  }
  input:-internal-autofill-selected {
    appearance: menulist-button;
    background-image: none !important;
    background-color: none !important;
    color: fieldtext !important;
}
.email-cta__btn:disabled {
  cursor: not-allowed;
  filter: brightness(0.6);
}


@media screen and (max-width: 1080px) {
    .about__text {
    max-width: 100%;
    display: block;
}
.email-cta {
    margin-left: 0;
    width: 500px;
    margin-top: 2rem;
}

}




@media screen and (max-width: 768px) {
    .feature {
    border-radius: 0;
    margin: 0rem 0;
    padding: 1rem 1rem;
}
    .why-choose p.why-choose-p-border {
    padding-bottom: 1rem;
}
        .why-choose__grid {
    display: block;
    width: 100%;
    margin-left: 0rem;
}
    .about__text p {
    text-align: center;
}
    
        .about__text {
    max-width: 100%;
    display: block;
}
.email-cta {
    margin-left: -3rem;
    width: 260px;
    margin-top: 1rem;
}
        .section-hero {
    text-align: left;
    width: 100%;
    padding: 3rem 0rem;
}
    .about__text {
        text-align: center;
        padding: 0rem;
    }
    #about {

    padding: 2rem 1rem;
    text-align: center;
}
#about h2 {
    text-align: center;
    margin-left: 0rem;
}
    
}

.about__image {
    flex: 1;
    text-align: right;
}

.about__image img {
    max-width: 100%;
    border-radius: 0.5rem;
}

/* REVIEWS SLIDER */
.reviews__container {
    position: relative;
    overflow: hidden;
}

.reviews__track {
    display: flex;
      transition: transform 0.5s ease-in-out;
  touch-action: pan-y;
}

.reviews__slide {
    flex: 0 0 100%;
    padding: 2rem;
    text-align: center;
}

.reviews__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.reviews__name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.reviews__position {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.reviews__text {
    font-style: italic;
    color: #444;
}

.reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 1);
    color: #fff;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    z-index: 2;
}
.reviews__nav:hover {
    background: rgba(0, 0, 0, 0.6);
}

.reviews__nav--prev {
    left: 1rem;
}

.reviews__nav--next {
    right: 1rem;
}


@media screen and (max-width: 768px) {
    .reviews__slide {
        padding: 0rem;
    }

    .reviews__avatar {
        width: 60px;
        height: 60px;
    }

    .reviews__name {
        font-size: 1.1rem;
    }

    .reviews__position {
        font-size: 0.85rem;
    }

    .reviews__text {
        font-size: 0.95rem;
    }
    
}

/* CONTACT SECTION */
.contact {
    background: #FFF;
    color: #1B1B1B;
}

.contact.contact-page .section {
    padding: 3rem 1rem 0rem 1rem;
}

.contact .section__title {
    color: var(--color-primary);
}

.contact__wrapper {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact__info {
    display: flex;
    width: 100%;
    gap: 2rem;
}

.contact__info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
}

.contact__info a {
    color: inherit;
    font-weight: 500;
}

.contact__info img {
    width: 30px;
}
.form-footer {
    text-align: left;
    margin-top: 1rem;
}

.contact__form {
    display: inline-block;
    width: 100%;
        padding: 2rem;
    border: solid 1px rgba(36, 36, 36, 0.1);
    border-radius: 15px;
    float: right;
}

p.form-consent {
    font-size: 13px;
    line-height: 17px;
    display: inline-block;
    width: 52%;
    margin-left: 1rem;
}

.input {
    width: 100%;
    padding: 1.25rem 1rem;
    background: rgba(36, 36, 36, 0.02);
    border-radius: 8px;
    color: #1B1B1B;
    border: solid 1px rgba(36, 36, 36, 0.1);
    transition: border-color var(--transition-fast);
    font-family: "Open Sans", sans-serif;
    margin: 0.3rem 0;
}
.input.input--textarea {
    min-height: 261px;
    vertical-align: top;
}
.consent-group {
    padding: 0.6rem;
    font-size: 13px;
    max-width: 1000px;
    text-align: left;
}
#contact {
    border-bottom: solid 1px rgba(36, 36, 36, 0.1);
}
.input-group {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 0;
}
textarea {
    display: inline-block;
    width: 44%;
}

.input:focus {
    border-color: var(--color-primary);
    outline: none;
}
#contact-form-container {
    text-align: center;
    width: 100%;
}

/* FOOTER */
.footer {
    background: #FFF;
    color: #1B1B1B;
    padding: 2rem;
    border-top: solid 1px rgba(36, 36, 36, 0.1);
}

.footer__info {
    text-align: center;
    padding-top: 2rem;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__container p.footer-logo {
    color: #1B1B1B;
    display: inline-block;
    vertical-align: super;
    font-weight: 700;
    font-size: 18px;
}

.footer__container p.footer-logo span {
    color: var(--color-primary);
}

.nav--footer .nav__list {
    display: flex;
    gap: 1.5rem;
}

.nav--footer .nav__link {
    color: inherit;
    font-size: 0.9rem;
}

.footer__copy {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact__wrapper .btn.btn--primary {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1rem;
    width: 160px;
    float: left;
}
.contact.contact-page {
    padding: 4rem 1rem 6rem 1rem;
}
#home.hero.hero.legal-page .section-hero.section {
    padding: 3rem 1rem 3rem 1rem;
    color: #FFF;
}
#contact.why-choose.internal-contact-page {
    background-image: url('../img/contact.jpg');
    background-size: cover;
    background-position: center;
    background-color: #242424;
    color: #FFF;
    padding: 7rem 1rem 4rem 1rem;
}
#contact.why-choose.internal-contact-page .section__title {
    color: #FFF;
}
#contact.why-choose.internal-contact-page p.why-choose-p-border {
    border-bottom: solid 1px RGBA(255, 255, 255, 0.2)
}
#contact.why-choose.internal-contact-page .feature {
    color: #FFF;
}
#contact.why-choose.internal-contact-page .svg-reply-icon {
    background-color: rgba(255, 255, 255, 0.06);    
}
#contact.why-choose.internal-contact-page .contact__form {
    background: RGBA(255, 255, 255, 0.06);
    border: solid 1px RGBA(255, 255, 255, 0.1);
    color: #FFF;
    backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
#contact.why-choose.internal-contact-page .contact__form .input {
    background: RGBA(255, 255, 255, 0.06);
    border: solid 1px RGBA(255, 255, 255, 0.1);
    color: #FFF;
}
#contact.why-choose.internal-contact-page .contact__form .input::placeholder {
    color: #FFF;
    opacity: 0.6;
}
.thank-you {
  padding: 20px;
  text-align: center;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 12px;
  margin-top: 10px;
}


@media screen and (max-width: 1580px) {
p.form-consent {
    font-size: 12px;
    line-height: 16px;
    display: block;
    width: 100%;
    margin-left: 0rem;
    margin-top: 0.5rem;

}       
}


@media screen and (max-width: 768px) {
    #contact.why-choose.internal-contact-page {
    padding: 6rem 0rem 3rem 0rem;
}
        .why-choose-left-image {
        max-width: 380px;
        margin-left: 0;
    }
    .contact.contact-page .section {
    padding: 3rem 1rem 0rem 1rem;
}
   .input-group {
    width: 100%;
    padding: 0.3rem;
}
.services-right-image {
    display: inline-block;
    max-width: 380px;
    width: auto;
    float: none;
}
    
}


/* по-умолчанию скрываем контейнер с благодарностью */
.hidden {
  display: none;
}

/* стили для блока «Спасибо» */
.thank-you {
  text-align: center;
  padding: 2rem;
}

/* сам SVG-иконка */
.check-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: scale(0);
  animation: scaleUp 0.4s ease-in-out forwards;
}

/* круговая анимация */
.check-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: strokeCircle 0.6s ease-in-out forwards;
}

/* «чек» анимация */
.check-path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: strokeCheck 0.3s 0.6s ease-in-out forwards;
}

/* ключевые кадры */
@keyframes strokeCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes strokeCheck {
  to { stroke-dashoffset: 0; }
}
@keyframes scaleUp {
  to { transform: scale(1); }
}

/* текст благодарности */
.thank-you h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.thank-you p {
  color: #666;
}
.hero.legal-page {
    background-image: url('../img/legal.jpg');
    background-size: cover;
    background-position: center;
    color: #1B1B1B;
}


.legal-section h2 {
    font-size: 2rem;
}


@media screen and (max-width: 768px) {
    .legal-section h2 {
    font-size: 1.55rem;
}
    .hero.legal-page {
    background: url(../img/legal.jpg) no-repeat calc(35% - 28px) center;
    padding: 8rem 0rem 0rem 0rem;
    background-size: cover;
}
    .section__title {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-size: 26px;
}
    .contact.contact-page {
    padding: 3rem 0rem 1rem 0rem;
    height: auto;
}
    .contact__form {
    width: 100%;
    padding: 0.6rem;
}
    .footer__container {
        flex-direction: column;
        align-items: center;
    }
    .contact__info {
        width: 100%;
        display: block;
    }

    .contact__wrapper {
        display: block;
    }
    .nav--footer .nav__list {
        flex-direction: column;
        align-items: center;
    }

    .nav--footer .nav__link {
        margin-bottom: 0.5rem;
    }
    .footer__copy {
        text-align: center;
        margin-top: 1rem;
    }

    
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {


    .why-choose-left-image {
    max-width: 380px;
    width: auto;
}


    .about__content {
        flex-direction: column;
        text-align: center;
    }

    .about__image {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer__container p.footer-logo {
    margin-left: 0.6rem;
    font-size: 14px;
}
    .hero__title {
    font-size: 2rem;
    line-height: 1.2;
    max-width: 100%;
}
.hero__subtitle {
    margin: 1.5rem 0;
    font-size: 1rem;
        padding: 0.5rem;
        border-radius: 6px;
}
    h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1rem;
}

p {
    font-size: 14px;
}
    .nav--desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 0rem 0rem 0rem;
        background: url(../img/hero_back.jpg) no-repeat calc(58% - 28px) center;
        background-size: cover;
    }
    

    .hero__image {
        margin-top: 2rem;
    }

    .how-it-works__steps {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {

    .header__container,
    .section {
        padding: 1rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    .btn--primary {
        padding: 0.6rem 2.2rem;
        text-align: center;
    }
    #home .btn--primary {
        padding: 0.75rem 1.2rem;
                font-size: 16px;
    }
    #hamburger-fixed span {
        background: #1B1B1B;
    }
    .step-item {
    padding: 1rem;
}

}