/* ====================================== GOOGLE FONTS ====================================== */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ====================================== GOOGLE FONTS ====================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}


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

li{ list-style-type: none;}

:root {
    --background-color: #f8f9fa;
    --main-color: #0A192F;
    --radius: 8px;
    --accent-color: #007BFF;
    --accent-2: #28a745;
    --muted-color:#6c757d;
    --gray-color: #6b7280;
    --main-2: #030702;
    --text-color: #04112F;
    --linear-gradient-1-color: #405F82;
    --black-color: #000;
    --white-color: #fff;
    --body-font-1: "Lato", sans-serif;
    --body-font-2: "Montserrat", sans-serif;
}


body {
    font-family: var(--body-font-2);
    background-color: var(--background-color);
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

html,
body {
    position: relative;
    height: 100%;
}
 html {
     scroll-behavior: smooth;
 }

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
}


/* ====================================== HEADER ====================================== */

.header {
    width: 100%;
    font-family: var(--body-font-1);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav > .nav__logo img {
    width: 80px;
}

.nav__list {
    display: flex;
    align-items: center;
    column-gap: 3rem;
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    transition: none;
    z-index: auto;
    overflow-y: visible;
}

.nav__third {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

#menuBtn {
    display: none;
}

.order__btn {
    color: var(--white-color);
    background-color: var(--accent-color);
    padding: 8px 9px;
    border-radius: var(--radius);
    border: none;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    column-gap: 0.3rem;
    transition: 0.3s all linear;
}

.order__btn i {
    transition: 0.3s all linear;
}

.order__btn:is(:hover, :focus) {
    background-color: transparent;
    color: var(--accent-color);
}

.order__btn:is(:hover, :focus) i {
    transform: rotate(-20deg);
}

.contact__btn {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    padding: 8px 11px;
    border-radius: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    column-gap: 0.3rem;
    transition: 0.3s all linear;
}

.contact__btn i {
    transition: 0.3s all linear;
}

.contact__btn:is(:hover, :focus) {
    background-color: var(--main-color);
    color: var(--white-color);
}

.contact__btn:is(:hover, :focus) i {
    transform: translateX(5px);
}


.slide-btn {
  height: 48px; /* Tailwind h-12 */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem; /* rounded-2xl */
  background-color: #000;
  padding: 0.5rem 0.75rem; /* py-2 px-3 */
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.slide-btn:active {
  transform: scale(0.95); /* active:scale-95 */
}

.text-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.text {
  color: white;
  font-size: 1rem; /* text-base */
  font-weight: 500; /* font-medium */
  cursor: pointer;
  transition: all 0.3s ease;
}

.text-top {
  transform: translateY(0);
  opacity: 1;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.text-bottom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
}

.slide-btn:hover .text-top {
  transform: translateY(-100%);
  opacity: 0;
}

.slide-btn:hover .text-bottom {
  transform: translateY(0);
}


/* ====================================== SECTION-1 ====================================== */


.section-1 {
    width: 100%;
    padding: 5rem 0;
    background-image: url(../img/section-1-background.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 103vh;
    background-position: center;
    font-family: var(--body-font-2);
    margin-bottom: 30px;
    box-sizing: border-box;
}


.section-1__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.section-1__left--side {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.section-1__right--side {
    width: 45%;
}

.banners__content {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    column-gap: 0.85rem;
}

.banners__content * {
    color: var(--text-color);
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 15px;
}

.new__box,
.security__box {
    padding: 4px 12px;
}

.section__1-title {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-style: normal;
    font-weight: 700;
    background: linear-gradient(
    to bottom, /* Yuxarıdan aşağıya keçid */
    #0C1014 0%, /* Tünd rəng yuxarıda (0% mövqeyində) */
    #385A78 100% /* Açıq rəng aşağıda (100% mövqeyində) */
  );

  -webkit-background-clip: text;
  background-clip: text;
  
  /* Mətnin öz rəngini şəffaf etmək üçün (qradientin görünməsi üçün) */
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-1__description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: #6C757D;
    font-weight: 400;
    line-height: 1.75rem;
}


.swiper {
    width: 100%;
    height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    /* Swiper theming overrides */
    --swiper-navigation-color: #fff; /* default arrow color */
    box-shadow: 0 18px 40px rgba(10, 25, 47, .12);
    --swiper-navigation-size: 20px; /* base arrow size (not the button size) */
}

.swiper-slide {
    font-size: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 249, 250, 1));
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Swiper Navigation Buttons (decorative) */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    z-index: 5;
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(2, 8, 20, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    width: 52px !important; /* ensure circle, override Swiper defaults */
    height: 52px !important;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
}

/* Replace default glyph with custom chevron drawn via borders */
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
}

/* Glow ring */
.swiper-button-next::before,
.swiper-button-prev::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    pointer-events: none;
    background:
      radial-gradient(120px 120px at 30% 30%, rgba(0, 123, 255, 0.28), transparent 60%),
      radial-gradient(120px 120px at 70% 70%, rgba(40, 167, 69, 0.22), transparent 60%);
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(0.95);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: translateY(-2px) scale(1.04);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 30px rgba(2, 8, 20, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.swiper-button-next:hover::before,
.swiper-button-prev:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Subtle float animation */
@keyframes floaty {
    0% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
    100% { transform: translateY(0); }
}

.swiper-button-prev { animation: floaty 4s ease-in-out infinite; }
.swiper-button-next { animation: floaty 4s ease-in-out infinite 0.8s; }


.product__mock {
    height: 420px;
    background: linear-gradient(135deg, #eaf2ff, #f0fdf4);
    border-radius: 12px;
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative;
}

.product__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0px;
}

.text__part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-inline: 15px;
}

.swiper__slide-left strong,
.swiper__slide-right strong {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.swiper__slide-left p,
.swiper__slide-right p {
    font-size: 13px;
    color: var(--muted-color);
}


.discover__text {
    font-size: 16px;
    color: #6B7280;
    margin-top: 50px;
    margin-bottom: 150px;
}

/* ====================================== SECTION-2 ====================================== */

.section-2 {
    width: 100%;
    padding: 6rem 0;
    background-color: var(--background-color);
    font-family: var(--body-font-2);
}

.section-2__container {
    width: 100%;
}

.section-2__boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

.section-2__box {
    position: relative;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    cursor: pointer;
    transition: 0.3s all linear;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.section-2__box--apple {
    background-image: url(../img/apple-m4.png);
}

.section-2__box--camera {
    background-image: url(../img/camera-img.png);
}

.section-2__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    transition: 0.3s all linear;
    z-index: 1;
}

.section-2__box:hover .section-2__overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.section-2__content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: var(--white-color);
    transform: translateY(0);
    transition: 0.3s all linear;
}

.section-2__box:hover .section-2__content {
    transform: translateY(-8px);
}

.section-2__box-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white-color);
    line-height: 1.3;
    transition: all 0.3s ease;
}

.section-2__box:hover .section-2__box-title {
    color: var(--white-color);
}

.section-2__box-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    transition: all 0.3s ease;
}

.section-2__box:hover .section-2__box-description {
    color: rgba(255, 255, 255, 0.95);
}

.learn__more-btn {
    display: inline-flex;
    align-items: center;
    column-gap: 0.5rem;
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 24px;
    background-color: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn__row {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.learn__more-btn i {
    transition: transform 0.3s ease;
}

.learn__more-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.learn__more-btn:hover i {
    transform: translateX(4px);
}

.section-2__box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* ====================================== SECTION-3 ====================================== */

.section-3 {
    width: 100%;
    padding: 5rem 0;
    background-color: var(--white-color);
    font-family: var(--body-font-2);
}

.section-3__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-3__container .title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.section-3__container .title span {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--gray-color);
    display: block;
    margin-top: 0.25rem;
}

.section-3__description {
    font-size: 0.95rem;
    color: var(--gray-color);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.section-3__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.section-3__card {
    background-color: var(--white-color);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.section-3__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.section-3__card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 24px;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.section-3__card:hover .section-3__card-icon {
    transform: scale(1.08);
}

.section-3__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.625rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.section-3__card-description {
    font-size: 0.875rem;
    color: var(--gray-color);
    line-height: 1.6;
    font-weight: 400;
}

/* ====================================== SECTION-4 ====================================== */

.section-4 {
    width: 100%;
    padding: 5rem 0;
    background-color: var(--background-color);
    font-family: var(--body-font-2);
}

.section-4__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.section-4__left {
    width: 52%;
    display: flex;
    flex-direction: column;
}

.section-4__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.section-4__description {
    font-size: 0.95rem;
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 90%;
}

.section-4__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.section-4__stat-card {
    background-color: var(--white-color);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.section-4__stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.03) 0%, rgba(0, 123, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-4__stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.section-4__stat-card:hover::before {
    opacity: 1;
}

.section-4__stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.375rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.section-4__stat-label {
    font-size: 0.875rem;
    color: var(--gray-color);
    font-weight: 400;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.section-4__right {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-4__graphic {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.section-4__graphic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(74, 144, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-4__wave {
    width: 100%;
    height: 100%;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.section-4__wave path {
    stroke: #4A90E2;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.85;
}




/* ====================================== SECTION-7 ====================================== */

.section-7__container-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.section-7__container {
    margin-top: 30px;
    margin-bottom: 20px;
    display:flow-root;
}

.section-7__faq {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.section-7__faq-question i {
    transition: transform 0.3s ease;
}

.section-7__faq-item.open .section-7__faq-question i {
    transform: rotateY(180deg);
}

.section-7__faq-question {
    background-color: var(--white-color);
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}


.section-7__faq-answer {
   max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.active {
   display: block;
}

.section-7__faq-question h5 {
    font-size: 15px;
    font-weight: 500;
}

/* Base styling for Section-7 */
.section-7 {
    width: 100%;
    padding: 5rem 0;
    background-color: var(--background-color);
    font-family: var(--body-font-2);
}

/* Improve FAQ layout */
.section-7__faq-answer p {
    padding: 0 16px 16px;
    font-size: 0.95rem;
    color: var(--gray-color);
    line-height: 1.6;
}

/* Better spacing and icon sizing */
.section-7__faq-question { gap: 0.75rem; }
.section-7__faq-question i { font-size: 20px; flex-shrink: 0; color: var(--text-color); }
.section-7__faq-question h5 { line-height: 1.4; flex: 1; word-break: break-word; }

/* ====================================== SECTION-8 ====================================== */
 .section-8 { width: 100%; padding: 6rem 0; background-color: var(--background-color); font-family: var(--body-font-2); scroll-margin-top: 90px; }
 .section-8__container { max-width: 1100px; margin: 0 auto; }
 .order__header { margin-bottom: 1.75rem; }
 .order__header h2 { font-size: 2rem; font-weight: 700; color: var(--text-color); line-height: 1.3; letter-spacing: -0.02em; }
 .order__header p { margin-top: 0.5rem; color: var(--gray-color); font-size: 1rem; }
 
 .order__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.5rem; align-items: start; }
 .order__card { background-color: var(--white-color); border-radius: 16px; border: 0.5px solid rgba(0,0,0,.06); box-shadow: 0 10px 30px rgba(2,8,20,.06); padding: 1.5rem; }
 .order__form { width: 100%; }
 .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
 .form__group { display: flex; flex-direction: column; gap: 0.5rem; }
 .form__group label { font-size: 0.95rem; font-weight: 600; color: var(--text-color); }
 .form__group input,
 .form__group select { width: 100%; height: 48px; border-radius: 12px; border: 1px solid rgba(0,0,0,.1); padding: 0 14px; font-size: 0.95rem; background-color: var(--white-color); transition: border-color .2s ease, box-shadow .2s ease; }
 .form__group input::placeholder { color: #9aa3af; }
 .form__group input:focus,
 .form__group select:focus { border-color: var(--accent-color); box-shadow: 0 0 0 4px rgba(0,123,255,.12); }
 .form__group select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #9aa3af 50%), linear-gradient(135deg, #9aa3af 50%, transparent 50%); background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px); background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
 
 .radio__group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
 .radio__item { display: inline-flex; align-items: center; gap: 0.4rem; padding: 8px 12px; border: 1px solid rgba(0,0,0,.1); border-radius: 10px; -webkit-user-select: none; user-select: none; }
 .radio__item input { accent-color: var(--accent-color); }
 
 .form__actions { display: flex; align-items: center; gap: 1rem; margin-top: 0.5rem; }
 .form__hint { color: var(--gray-color); font-size: 0.9rem; }
 .form__message { margin-top: 0.75rem; font-size: 0.95rem; font-weight: 600; }
 .form__message.success { color: var(--accent-2); }
 .form__message.error { color: #dc3545; }
 .muted { color: var(--gray-color); }
 
 .contact__card { background-color: var(--white-color); border-radius: 16px; border: 0.5px solid rgba(0,0,0,.06); box-shadow: 0 10px 30px rgba(2,8,20,.06); }
 .contact__card-inner { padding: 1.25rem 1.25rem; }
 .contact__card h4 { font-size: 1.125rem; color: var(--text-color); margin-bottom: 0.25rem; }
 .contact__card h5 { font-size: 1rem; margin-top: 1rem; color: var(--text-color); }
 .contact__line { display: block; color: var(--main-color); margin-top: 0.25rem; }
 .benefits { margin-top: 1rem; display: grid; row-gap: 0.4rem; }
 .benefits li { display: flex; align-items: center; gap: 0.5rem; color: var(--text-color); font-size: 0.95rem; }
 .benefits i { color: var(--accent-color); }
 
 @media screen and (max-width: 1024px) {
   .order__grid { grid-template-columns: 1.2fr 1fr; gap: 1.25rem; }
 }
 
 @media screen and (max-width: 768px) {
   .section-8 { padding: 4.5rem 0; }
   .order__header h2 { font-size: 1.625rem; }
   .order__header p { font-size: 0.95rem; }
   .order__grid { grid-template-columns: 1fr; }
   .form__row { grid-template-columns: 1fr; }
   .form__actions { flex-direction: column; align-items: stretch; }
   .form__actions .order__btn { width: 100%; justify-content: center; padding: 12px 16px; }
 }
 
 @media screen and (max-width: 480px) {
   .section-8 { padding: 3.5rem 0; }
   .order__card, .contact__card-inner { padding: 1rem; }
 }

/* ====================================== RESPONSIVE STYLES ====================================== */

/* Mobile Menu Styles - will be applied via media queries */

#menuBtn {
    font-size: 24px;
    cursor: pointer;
    color: var(--main-color);
    transition: transform 0.3s ease;
    z-index: 1000;
}

#menuBtn.active {
    transform: rotate(90deg);
}

/* Overlay for mobile menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ====================================== RESPONSIVE BREAKPOINTS ====================================== */

/* Large Tablets and Small Desktops (1024px and below) - Keep side-by-side layout */
@media screen and (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 35px;
    }

    .nav__list {
        column-gap: 2rem;
    }

    .section-1__container {
        gap: 1.5rem;
    }

    /* Keep side-by-side layout at laptop sizes */
    .section-1__left--side {
        width: 48%;
        flex: 0 0 48%;
    }

    .section-1__right--side {
        width: 48%;
        flex: 0 0 48%;
    }

    .section__1-title {
        font-size: 2.8rem;
    }

    .section-1__description {
        font-size: 1rem;
    }

    .swiper {
        height: 450px;
    }

    .product__mock {
        height: 380px;
    }

    /* Section-2 Tablet Styles */
    .section-2 {
        padding: 5rem 0;
    }

    .section-2__boxes {
        gap: 1.75rem;
    }

    .section-2__box {
        min-height: 480px;
        padding: 2.5rem;
    }

    .section-2__box-title {
        font-size: 1.875rem;
    }

    /* Section-3 Tablet Styles */
    .section-3 {
        padding: 4.5rem 0;
    }

    .section-3__container .title {
        font-size: 1.875rem;
    }

    .section-3__container .title span {
        font-size: 1.625rem;
    }

    .section-3__description {
        font-size: 0.9375rem;
        margin-bottom: 2.5rem;
    }

    .section-3__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-3__card {
        padding: 1.75rem 1.5rem;
    }

    .section-3__card-title {
        font-size: 1.125rem;
    }

    .section-3__card-description {
        font-size: 0.8125rem;
    }

    /* Section-4 Tablet Styles */
    .section-4 {
        padding: 4.5rem 0;
    }

    .section-4__container {
        gap: 3.5rem;
    }

    .section-4__title {
        font-size: 1.875rem;
    }

    .section-4__description {
        font-size: 0.9375rem;
        margin-bottom: 1.75rem;
    }

    .section-4__stats {
        gap: 1.125rem;
    }

    .section-4__stat-card {
        padding: 1.375rem 1.125rem;
    }

    .section-4__stat-number {
        font-size: 1.625rem;
    }

    .section-4__stat-label {
        font-size: 0.8125rem;
    }

    .section-4__graphic {
        height: 160px;
    }
    /* Section-7 tablet (≤1024px) */
    .section-7 { padding: 4.5rem 0; }
    .section-7__faq-question { padding: 14px; }
    .section-7__faq-answer p { font-size: 0.9375rem; }
}

/* Medium Laptops (1200px and below) - Adjust container padding */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 50px;
    }

    /* Section-3 Medium Laptop Styles */
    .section-3__grid {
        gap: 1.75rem;
    }

    .section-3__card {
        padding: 1.875rem 1.625rem;
    }

    /* Section-4 Medium Laptop Styles */
    .section-4__container {
        gap: 4rem;
    }

    .section-4__title {
        font-size: 1.9375rem;
    }
}

/* Large Desktops (1400px and above) - Extra padding */
@media screen and (min-width: 1400px) {
    .container {
        padding: 0 10px;
    }
}

/* Tablets (768px and below) - Stack layout vertically */
@media screen and (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 25px;
    }

    .nav {
        padding: 15px 20px;
    }

    .nav > .nav__logo img {
        width: 60px;
    }

    .nav__list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white-color);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        display: flex;
    }

    .nav__list.active {
        right: 0;
    }

    .nav__list .nav__item {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .nav__list .nav__link {
        display: block;
        padding: 12px 0;
        font-size: 18px;
        font-weight: 500;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
    }

    #menuBtn {
        display: block;
    }

    .nav__third {
        column-gap: 0.75rem;
    }

    .order__btn,
    .contact__btn {
        font-size: 13px;
        padding: 6px 8px;
    }

    .contact__btn {
        display: none;
    }

    .section-1 {
        padding: 5rem 0 3rem;
        height: auto;
        min-height: 100vh;
    }

    .section-1__container {
        flex-direction: column;
    }

    .section-1__left--side {
        width: 100%;
        margin-bottom: 2.5rem;
    }

    .section-1__right--side {
        width: 100%;
    }

    .section__1-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .section-1__description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .banners__content {
        margin-bottom: 12px;
    }

    .banners__content * {
        font-size: 13px;
        padding: 3px 10px;
    }

    .btn__row {
        flex-direction: column;
        row-gap: 1rem;
        width: 100%;
    }

    .btn__row .order__btn,
    .btn__row .contact__btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 15px;
    }

    .swiper {
        height: 400px;
    }

    .product__mock {
        height: 320px;
    }

    .product__image {
        padding: 15px;
    }

    .text__part {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 10px;
        padding-inline: 10px;
    }

    .swiper__slide-left strong,
    .swiper__slide-right strong {
        font-size: 15px;
    }

    .swiper__slide-left p,
    .swiper__slide-right p {
        font-size: 13px;
    }

    .discover__text {
        font-size: 14px;
        margin-top: 30px;
        margin-bottom: 50px;
        text-align: center;
    }

    /* Swiper navigation buttons - smaller on mobile */
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }

    /* Section-2 Responsive Styles */
    .section-2 {
        padding: 4rem 0;
    }

    .section-2__boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-2__box {
        min-height: 450px;
        padding: 2rem;
    }

    .section-2__box-title {
        font-size: 1.75rem;
    }

    .section-2__box-description {
        font-size: 1rem;
    }

    .learn__more-btn {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    /* Section-3 Mobile Styles */
    .section-3 {
        padding: 3.5rem 0;
    }

    .section-3__container {
        padding: 0 25px;
    }

    .section-3__container .title {
        font-size: 1.625rem;
        margin-bottom: 0.5rem;
    }

    .section-3__container .title span {
        font-size: 1.5rem;
        margin-top: 0.25rem;
    }

    .section-3__description {
        font-size: 0.9375rem;
        margin-bottom: 2.5rem;
        padding: 0 10px;
    }

    .section-3__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .section-3__card {
        padding: 1.625rem 1.375rem;
    }

    .section-3__card-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
        margin-bottom: 1rem;
    }

    .section-3__card-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .section-3__card-description {
        font-size: 0.8125rem;
    }

    /* Section-4 Mobile Styles */
    .section-4 {
        padding: 3.5rem 0;
    }

    .section-4__container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .section-4__left {
        width: 100%;
    }

    .section-4__right {
        width: 100%;
    }

    .section-4__title {
        font-size: 1.625rem;
        margin-bottom: 0.875rem;
    }

    .section-4__description {
        font-size: 0.9375rem;
        margin-bottom: 1.75rem;
        line-height: 1.65;
        max-width: 100%;
    }

    .section-4__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-4__stat-card {
        padding: 1.375rem 1.125rem;
    }

    .section-4__stat-number {
        font-size: 1.5rem;
    }

    .section-4__stat-label {
        font-size: 0.8125rem;
    }

    .section-4__graphic {
        height: 150px;
        padding: 1.5rem;
    }
    /* Section-7 mobile (≤768px) */
    .section-7 { padding: 4rem 0; }
    .section-7__faq-question { padding: 12px; }
    .section-7__faq-question i { font-size: 18px; }
    .section-7__faq-question h5 { font-size: 14px; }
    .section-7__faq-answer p { padding: 0 12px 12px; font-size: 0.9rem; }
}

/* Mobile Phones (480px and below) */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .nav {
        padding: 12px 15px;
    }

    .nav > .nav__logo img {
        width: 50px;
    }

    .order__btn {
        font-size: 12px;
        padding: 6px 10px;
    }

    .section-1 {
        padding: 4rem 0 2rem;
    }

    .section__1-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-1__description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .banners__content {
        flex-wrap: wrap;
        row-gap: 0.5rem;
    }

    .banners__content * {
        font-size: 12px;
        padding: 3px 8px;
    }

    .swiper {
        height: 350px;
    }

    .product__mock {
        height: 280px;
    }

    .product__image {
        padding: 10px;
    }

    .swiper__slide-left strong,
    .swiper__slide-right strong {
        font-size: 14px;
    }

    .swiper__slide-left p,
    .swiper__slide-right p {
        font-size: 12px;
    }

    .discover__text {
        font-size: 13px;
        margin-top: 25px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    /* Even smaller navigation buttons on very small screens */
    .swiper-button-next,
    .swiper-button-prev {
        width: 36px !important;
        height: 36px !important;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 12px;
    }

    /* Section-2 Mobile Styles */
    .section-2 {
        padding: 3rem 0;
    }

    .section-2__box {
        min-height: 400px;
        padding: 1.5rem;
        border-radius: 20px;
    }

    .section-2__box-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .section-2__box-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }

    .learn__more-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }

    /* Section-3 Small Mobile Styles */
    .section-3 {
        padding: 3rem 0;
    }

    .section-3__container {
        padding: 0 20px;
    }

    .section-3__container .title {
        font-size: 1.5rem;
    }

    .section-3__container .title span {
        font-size: 1.375rem;
    }

    .section-3__description {
        font-size: 0.875rem;
        margin-bottom: 2rem;
    }

    .section-3__card {
        padding: 1.5rem 1.125rem;
    }

    .section-3__card-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-bottom: 0.875rem;
    }

    .section-3__card-title {
        font-size: 1.0625rem;
    }

    .section-3__card-description {
        font-size: 0.8125rem;
    }

    /* Section-4 Small Mobile Styles */
    .section-4 {
        padding: 3rem 0;
    }

    .section-4__container {
        gap: 2rem;
    }

    .section-4__title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .section-4__description {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .section-4__stats {
        gap: 0.875rem;
    }

    .section-4__stat-card {
        padding: 1.25rem 1rem;
    }

    .section-4__stat-number {
        font-size: 1.375rem;
    }

    .section-4__stat-label {
        font-size: 0.8125rem;
    }

    .section-4__graphic {
        height: 130px;
        padding: 1.25rem;
    }
    /* Section-7 small phones (≤480px) */
    .section-7 { padding: 3rem 0; }
    .section-7__faq { row-gap: 0.75rem; }
    .section-7__faq-question { padding: 10px 12px; }
    .section-7__faq-question i { font-size: 18px; }
    .section-7__faq-question h5 { font-size: 13px; }
    .section-7__faq-answer p { padding: 0 12px 12px; font-size: 0.875rem; }
}

/* Extra Small Devices (360px and below) */
@media screen and (max-width: 360px) {
    .section__1-title {
        font-size: 1.5rem;
    }

    .section-1__description {
        font-size: 0.85rem;
    }

    .swiper {
        height: 320px;
    }

    .product__mock {
        height: 250px;
    }

    .btn__row .order__btn,
    .btn__row .contact__btn {
        font-size: 14px;
        padding: 10px 15px;
    }

    /* Section-2 Extra Small Styles */
    .section-2 {
        padding: 2.5rem 0;
    }

    .section-2__box {
        min-height: 380px;
        padding: 1.25rem;
        border-radius: 16px;
    }

    .section-2__box-title {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }

    .section-2__box-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .learn__more-btn {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    /* Section-3 Extra Small Styles */
    .section-3__container .title {
        font-size: 1.375rem;
    }

    .section-3__container .title span {
        font-size: 1.25rem;
    }

    .section-3__description {
        font-size: 0.8125rem;
    }

    .section-3__card {
        padding: 1.375rem 0.875rem;
    }

    .section-3__card-icon {
        width: 38px;
        height: 38px;
        font-size: 19px;
    }

    .section-3__card-title {
        font-size: 1rem;
    }

    .section-3__card-description {
        font-size: 0.75rem;
    }

    /* Section-4 Extra Small Styles */
    .section-4 {
        padding: 2.5rem 0;
    }

    .section-4__title {
        font-size: 1.375rem;
    }

    .section-4__description {
        font-size: 0.8125rem;
    }

    .section-4__stat-card {
        padding: 1.125rem 0.875rem;
    }

    .section-4__stat-number {
        font-size: 1.25rem;
    }

    .section-4__stat-label {
        font-size: 0.75rem;
    }

    .section-4__graphic {
        height: 110px;
        padding: 1rem;
    }
    /* Section-7 extra small (≤360px) */
    .section-7 { padding: 2.5rem 0; }
    .section-7__faq-question { padding: 10px; }
    .section-7__faq-question i { font-size: 16px; }
    .section-7__faq-question h5 { font-size: 12px; }
}

/* Landscape Orientation for Tablets and Phones */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .section-1 {
        height: auto;
        min-height: 0;
        padding: 3rem 0;
    }

    .section-1__container {
        flex-direction: row;
        align-items: center;
    }

    .section-1__left--side {
        width: 48%;
        margin-bottom: 0;
    }

    .section-1__right--side {
        width: 48%;
    }

    .swiper {
        height: 380px;
    }

    .product__mock {
        height: 300px;
    }

    /* Section-4 Landscape Styles */
    .section-4__container {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .section-4__left {
        width: 50%;
    }

    .section-4__right {
        width: 48%;
    }

    .section-4__graphic {
        height: 160px;
    }
}

/* High DPI Displays */
@media screen and (-webkit-min-device-pixel-ratio: 2),
       screen and (min-resolution: 192dpi) {
    .product__image {
        -webkit-image-rendering: crisp-edges;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ====================================== SECTION-5 ====================================== */

.section-5 {
    width: 100%;
    padding: 6rem 0;
    background-color: var(--background-color);
    font-family: var(--body-font-2);
    text-align: center;
}

.section-5__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-5__title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.section-5__subtitle {
    font-size: 3rem;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-5__description {
    font-size: 1.125rem;
    color: #6C757D;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.section-5__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem; /* Vertical gap, horizontal gap */
    width: 100%;
    margin-bottom: 3rem;
    position: relative;
}

.section-5__card {
    background-color: var(--white-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.section-5__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.section-5__card-image {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.section-5__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-5__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.section-5__card-description {
    font-size: 1rem;
    color: var(--gray-color);
    line-height: 1.6;
    font-weight: 400;
}

/* Specific positioning for the cards as per the image */
.section-5__card--1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.section-5__card--2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin-top: 5rem; /* Adjust to match visual offset */
}

.section-5__card--3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.section-5__card--4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    margin-top: 5rem; /* Adjust to match visual offset */
}

/* Button styling for section-5 */
.section-5__learn-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* gap-2 */
    position: relative;
    padding: 0.5rem 1.5rem; /* px-6 py-2 */
    height: 3rem; /* h-12 (3rem) */
    border-radius: 1rem; /* rounded-2xl */
    cursor: pointer;
    border: calc(0.08 * 1rem) solid transparent; /* border:calc(0.08*1rem)_solid_transparent */
    transition: transform 0.15s ease-in-out, background-color 0.3s;
    background-size: 200%; /* bg-[length:200%] */
    background-origin: border-box; /* [background-origin:border-box] */
    background-clip: padding-box, border-box, border-box; /* [background-clip:padding-box,border-box,border-box] */
    background-image: linear-gradient(#121213, #121213),
                      linear-gradient(#121213 50%, rgba(18, 18, 19, 0.6) 80%, rgba(18, 18, 19, 0)),
                      linear-gradient(90deg, hsl(0,100%,63%), hsl(90,100%,63%), hsl(210,100%,63%), hsl(195,100%,63%), hsl(270,100%,63%)); /* bg-[linear-gradient(#121213,#121213),linear-gradient(#121213_50%,rgba(18,18,19,0.6)_80%,rgba(18,18,19,0)),linear-gradient(90deg,hsl(0,100%,63%),hsl(90,100%,63%),hsl(210,100%,63%),hsl(195,100%,63%),hsl(270,100%,63%))] */
    color: var(--white-color); /* text-white */
    font-size: 1rem; /* text-base */
    font-weight: 500; /* font-medium */
    outline: none; /* focus-visible:outline-none */
}

.section-5__learn-more-button:focus-visible {
    outline: 2px solid var(--accent-color); /* focus-visible:ring-1 focus-visible:ring-ring */
    outline-offset: 2px;
}

.section-5__learn-more-button:disabled {
    pointer-events: none; /* disabled:pointer-events-none */
    opacity: 0.5; /* disabled:opacity-50 */
}

.section-5__learn-more-button:active {
    transform: scale(0.95); /* active:scale-95 */
}

.section-5__learn-more-button i {
    transition: transform 0.3s ease;
}

.section-5__learn-more-button:hover {
    background-position: 100% 0;
}

/* Keyframes for rainbow animation */
@keyframes animateRainbow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.section-5__learn-more-button.animateRainbow {
    animation: animateRainbow 5s linear infinite;
}

/* Responsive adjustments for section-5 */
@media screen and (max-width: 1024px) {
    .section-5 {
        padding: 5rem 0;
    }

    .section-5__container {
        padding: 0 35px;
    }

    .section-5__title {
        font-size: 1.875rem;
    }

    .section-5__subtitle {
        font-size: 2.5rem;
    }

    .section-5__description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .section-5__grid {
        gap: 2.5rem 1.5rem;
        margin-bottom: 2.5rem;
    }

    .section-5__card {
        padding: 1.75rem;
    }

    .section-5__card-image {
        height: 220px;
        margin-bottom: 1.25rem;
    }

    .section-5__card-title {
        font-size: 1.375rem;
    }

    .section-5__card-description {
        font-size: 0.9375rem;
    }

    .section-5__card--2,
    .section-5__card--4 {
        margin-top: 4rem;
    }

    .section-5__learn-more-button {
        padding: 0.45rem 1.4rem;
        height: 2.875rem;
        font-size: 0.96rem;
    }
}

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

    .section-5__container {
        padding: 0 25px;
    }

    .section-5__title {
        font-size: 1.625rem;
    }

    .section-5__subtitle {
        font-size: 2.25rem;
    }

    .section-5__description {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .section-5__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .section-5__card {
        padding: 1.5rem;
    }

    .section-5__card-image {
        height: 200px;
        margin-bottom: 1rem;
    }

    .section-5__card-title {
        font-size: 1.25rem;
    }

    .section-5__card-description {
        font-size: 0.875rem;
    }

    .section-5__card--2,
    .section-5__card--4 {
        margin-top: 0; /* Reset margin for single column layout */
    }

    .section-5__learn-more-button {
        padding: 0.4rem 1.25rem;
        height: 2.75rem;
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 480px) {
    .section-5 {
        padding: 3rem 0;
    }

    .section-5__container {
        padding: 0 20px;
    }

    .section-5__title {
        font-size: 1.5rem;
    }

    .section-5__subtitle {
        font-size: 2rem;
    }

    .section-5__description {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .section-5__grid {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section-5__card {
        padding: 1.25rem;
    }

    .section-5__card-image {
        height: 180px;
        margin-bottom: 0.75rem;
    }

    .section-5__card-title {
        font-size: 1.125rem;
    }

    .section-5__card-description {
        font-size: 0.8125rem;
    }

    .section-5__learn-more-button {
        padding: 0.3rem 1rem;
        height: 2.5rem;
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 360px) {
    .section-5 {
        padding: 2.5rem 0;
    }

    .section-5__container {
        padding: 0 15px;
    }

    .section-5__title {
        font-size: 1.375rem;
    }

    .section-5__subtitle {
        font-size: 1.75rem;
    }

    .section-5__description {
        font-size: 0.8125rem;
        margin-bottom: 1.25rem;
    }

    .section-5__grid {
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .section-5__card {
        padding: 1rem;
    }

    .section-5__card-image {
        height: 150px;
    }

    .section-5__card-title {
        font-size: 1rem;
    }

    .section-5__card-description {
        font-size: 0.75rem;
    }

    .section-5__learn-more-button {
        padding: 0.25rem 0.8rem;
        height: 2.25rem;
        font-size: 0.8125rem;
    }
}

.section-6 {
    width: 100%;
    padding: 6rem 0;
    background-color: var(--white-color);
    font-family: var(--body-font-2);
}

.section-6__container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-6__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-6__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.section-6__description {
    font-size: 1.0625rem;
    color: var(--gray-color);
    line-height: 1.7;
    margin-top: 0.5rem;
}

.section-6__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.section-6__card {
    position: relative;
    background-color: var(--white-color);
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1.5rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(2, 8, 20, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.section-6__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(2, 8, 20, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

.section-6__badge {
    flex: 0 0 44px;
    height: 44px;
    width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0A192F 0%, #2F3F66 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.0625rem;
    box-shadow: 0 6px 14px rgba(10, 25, 47, 0.25);
}

.section-6__card-content { flex: 1; }

.section-6__card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.375rem;
}

.section-6__card-text {
    font-size: 0.95rem;
    color: var(--gray-color);
    line-height: 1.6;
}

@media screen and (max-width: 1024px) {
    .section-6 { padding: 5rem 0; }
    .section-6__grid { gap: 1.25rem; }
}

@media screen and (max-width: 768px) {
    .section-6 { padding: 4rem 0; }
    .section-6__header { margin-bottom: 2rem; }
    .section-6__title { font-size: 1.625rem; }
    .section-6__description { font-size: 0.9375rem; }
    .section-6__grid { grid-template-columns: 1fr; gap: 1rem; }
    .section-6__card { padding: 1.25rem; }
    .section-6__badge { width: 40px; height: 40px; font-size: 1rem; }
}

@media screen and (max-width: 480px) {
    .section-6 { padding: 3rem 0; }
    .section-6__title { font-size: 1.5rem; }
    .section-6__description { font-size: 0.875rem; }
    .section-6__card-title { font-size: 1.0625rem; }
    .section-6__card-text { font-size: 0.875rem; }
}

@media screen and (max-width: 360px) {
    .section-6 { padding: 2.5rem 0; }
    .section-6__title { font-size: 1.375rem; }
}

.section-cta { width: 100%; padding: 5rem 0; font-family: var(--body-font-2); }
.section-cta__container { max-width: 1100px; margin: 0 auto; padding-block: 2.75rem; padding-inline: clamp(1rem, 5vw, 2rem); border-radius: 20px; background: linear-gradient(135deg, #0A192F 0%, #2F3F66 100%); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 18px 40px rgba(10,25,47,0.18); color: var(--white-color); text-align: center; }
.section-cta__title { font-size: 2rem; font-weight: 700; line-height: 1.3; letter-spacing: -0.02em; }
.section-cta__subtitle { margin-top: 0.5rem; font-size: 1.0625rem; color: rgba(255,255,255,0.9); line-height: 1.7; }
.section-cta__actions { margin-top: 1.25rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.section-cta .order__btn { box-shadow: 0 8px 20px rgba(0,123,255,0.25); }
.section-cta .contact__btn { color: var(--white-color); border-color: rgba(255,255,255,0.85); }
.section-cta .contact__btn:is(:hover, :focus) { background-color: var(--white-color); color: var(--main-color); }
.section-cta__badges { margin-top: 1.25rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.section-cta__badges li { display: inline-flex; align-items: center; gap: 0.5rem; padding: 8px 12px; border-radius: 9999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.95); font-size: 0.95rem; }
.section-cta__badges i { color: var(--accent-color); }
@media screen and (max-width: 1024px) { .section-cta { padding: 4.5rem 0; } .section-cta__title { font-size: 1.875rem; } }
@media screen and (max-width: 768px) { .section-cta { padding: 4rem 0; } .section-cta__container { padding-block: 2rem; padding-inline: clamp(1rem, 6vw, 1.25rem); } .section-cta__title { font-size: 1.625rem; } .section-cta__subtitle { font-size: 0.9375rem; } .section-cta__actions { flex-direction: column; } .section-cta__actions .order__btn, .section-cta__actions .contact__btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: 15px; } }
@media screen and (max-width: 480px) { .section-cta { padding: 3rem 0; } .section-cta__title { font-size: 1.5rem; } .section-cta__subtitle { font-size: 0.875rem; } .section-cta__badges li { font-size: 0.875rem; padding: 7px 10px; } }
@media screen and (max-width: 360px) { .section-cta { padding: 2.5rem 0; } .section-cta__container { padding-block: 1.5rem; padding-inline: 1rem; } }

.footer { width: 100%; padding: 4rem 0; background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%); border-top: 0.5px solid rgba(0,0,0,0.06); font-family: var(--body-font-2); color: var(--text-color); }
.footer__top { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr; gap: 2rem; align-items: start; }
.footer__brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__logo img { width: 80px; }
.footer__tagline { color: var(--gray-color); font-size: 0.95rem; }
.footer__social { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.25rem; }
.footer__social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 9999px; background-color: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.08); color: var(--text-color); transition: background-color .2s ease, color .2s ease, transform .15s ease; }
.footer__social a:hover { background-color: var(--main-color); color: var(--white-color); transform: translateY(-2px); }
.footer__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text-color); }
.footer__list { display: grid; row-gap: 0.5rem; }
.footer__list a { color: var(--gray-color); font-size: 0.95rem; transition: color .2s ease, transform .15s ease; }
.footer__list a:hover { color: var(--accent-color); transform: translateX(2px); }
.footer__newsletter { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__text { color: var(--gray-color); font-size: 0.95rem; }
.footer__form { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.footer__input { flex: 1 1 220px; height: 48px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.1); padding: 0 14px; background-color: var(--white-color); font-size: 0.95rem; transition: border-color .2s ease, box-shadow .2s ease; }
.footer__input::placeholder { color: #9aa3af; }
.footer__input:focus { border-color: var(--accent-color); box-shadow: 0 0 0 4px rgba(0,123,255,.12); }
.footer__bottom { margin-top: 2rem; padding-top: 1.25rem; border-top: 0.5px solid rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--gray-color); }
.footer__legal { display: flex; align-items: center; gap: 1rem; }
.footer__legal a { color: var(--gray-color); transition: color .2s ease; }
.footer__legal a:hover { color: var(--accent-color); }

@media screen and (max-width: 1200px) { .footer__top { grid-template-columns: 1fr 1fr 1fr; } }
@media screen and (max-width: 1024px) { .footer { padding: 3.5rem 0; } }
@media screen and (max-width: 768px) { .footer { padding: 3rem 0; } .footer__top { grid-template-columns: 1fr; gap: 1.25rem; } .footer__form { flex-direction: column; align-items: stretch; } .footer__form .order__btn { width: 100%; justify-content: center; padding: 12px 20px; } .footer__bottom { flex-direction: column; text-align: center; } }
@media screen and (max-width: 480px) { .footer { padding: 2.5rem 0; } .footer__logo img { width: 64px; } }
