/* ============================================
   INOWAVE VIP HOMEPAGE STYLES
   Colors: --color-third: #e6ff7b; --color-primary: #2d3c58; --blue: #2d3c58;
   ============================================ */

:root {
    --color-third: #e6ff7b;
    --color-primary: #2d3c58;
    --blue: #2d3c58;
    --gray-light: #f8f9fa;
    --gray-dark: #6c757d;
    --cursor-accent: rgba(25, 163, 140, 0.45);
}

/* Global Styles */
.homepage {
    background: #fff;
    overflow-x: hidden;
    cursor: auto;
}

.section-head {
    text-align: center;
    margin-bottom: 38px;
}

.section-head__content-eng {
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-head__content-title {
    color: var(--color-primary);
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

/* Hero Section */
.hero {
    /* background: linear-gradient(135deg, var(--color-primary) 0%, #1a2538 100%); */
    background: #fff;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero .container{
    width:100%;
    max-width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(230,255,123,0.1)"/></svg>');
    opacity: 0.3;
}
.col-lg-6.order-lg-2.order-2 {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a2538 100%);
    height: stretch;
    padding: 80px 50px;
    border-radius: 0 0 24px 24px;
    margin-bottom: 30px;
    margin-right:-50px;
}
.col-lg-6.order-lg-2.order-2.hero-content::before {
  background: url(https://inowave.org/assets/img/hero-content-bg.png);
    background-position-x: 0%;
    background-position-y: 0%;
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  overflow: hidden;
  margin-right: -50px;
  opacity: 0.1;
  background-position: bottom;
}

@keyframes fadeLoop {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.2;
  }
  75% {
    opacity: 0.3;
  }
    100% {
    opacity: 0.2;
  }
}
.col-lg-6.order-lg-2.order-2.hero-content * {
  z-index: 2;
}

.col-lg-6.order-lg-2.order-2.hero-content::before {
  animation: fadeLoop 2s infinite;
}


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

.hero__title h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.hero__sub-title {
    font-size: 24px;
    color: var(--color-third);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero__desc {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.hero__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero__buttons .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero__buttons .btn-primary {
    background: var(--color-third);
    color: var(--color-primary);
    border: none;
}

.hero__buttons .btn-primary:hover {
    background: #d4ed5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230,255,123,0.3);
}

.hero__buttons .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero__buttons .btn-outline:hover {
    background: #fff;
    color: var(--color-primary);
}

.hero__image {
    text-align: center;
}

.hero__image img {
    max-width: fit-content;
    height: 60vh;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Order Steps Section */
.order-steps {
    padding: 64px 0;
    background: var(--gray-light);
}

.order-step {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    position: relative;
}

.order-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(30, 46, 73, 0.16);
}

.order-step__number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--color-third);
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.order-step__icon {
    font-size: 48px;
    color: var(--blue);
    margin-bottom: 20px;
}

.order-step__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.order-step__desc {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 64px 0;
    background: #fff;
}

.services-tabs__nav {
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 28px;
    justify-content: center;
    flex-wrap: wrap;
}



.services-tabs__nav .nav-link {
    color: var(--color-primary);
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    background: transparent;
}

.services-tabs__nav .nav-link:hover {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

.services-tabs__nav .nav-link.active {
    color: var(--blue);
    background: var(--gray-light);
    border-bottom-color: var(--blue);
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px 22px;
    transition: all 0.3s ease;
    min-height: 100%;
    display: grid;
    grid-template-columns: 64px 1fr auto;
    grid-template-areas:
        "icon title price"
        "icon desc desc"
        "icon cta cta";
    align-items: center;
    column-gap: 16px;
    row-gap: 10px;
}

.service-card:hover {
    border-color: var(--blue);
    box-shadow: 0 12px 30px rgb(25 71 163 / 18%);
    transform: translateY(-5px);
}

.service-card__icon {
    grid-area: icon;
    font-size: 30px;
    color: var(--blue);
    width: 54px;
    height: 54px;
    margin: 0;
    border-radius: 12px;
    background: #f2f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__title {
    grid-area: title;
    font-size: 19px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.service-card__desc {
    grid-area: title;
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.8;
    margin: 0;
    min-height: calc(1.8em * 3);
    text-align: justify;
}

.service-card__price {
    grid-area: price;
    margin: 0;
    padding: 4px 0;
    border: 0;
    text-align: left;
}

.service-card__price .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
}

.service-card__price .period {
    font-size: 13px;
    color: var(--gray-dark);
}

.service-card .btn {
    min-width: 180px;
}

.service-card__actions {
    grid-area: cta;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 320px;
}

.service-card__actions .btn {
    justify-self: auto;
    width: 100%;
}

/* Iran Services Section */
.iran-services {
    padding: 64px 0;
    background: var(--gray-light);
}

.iran-service-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.iran-service-card:hover {
    border-color: var(--color-third);
    box-shadow: 0 10px 30px rgba(230,255,123,0.2);
    transform: translateY(-5px);
}

.iran-service-card__icon {
    font-size: 56px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.iran-service-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.iran-service-card__desc {
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.iran-service-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: right;
}

.iran-service-card__features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-primary);
}

.iran-service-card__features li i {
    color: var(--color-third);
    margin-left: 10px;
}

/* Solutions Section */
.solutions {
    padding: 64px 0;
    background: #fff;
}

.solution-card {
    display: flex;
    align-items: center;
    background: var(--gray-light);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.solution-card:hover {
    background: var(--color-primary);
    color: #fff;
}

.solution-card:hover .solution-card__icon {
    color: var(--color-third);
}

.solution-card:hover .solution-card__title,
.solution-card:hover .solution-card__desc {
    color: #fff;
}

.solution-card:hover .solution-card__link {
    color: var(--color-third);
}

.solution-card:hover .solution-card__link i {
    transform: translateX(-4px);
}

.solution-card__icon {
    font-size: 56px;
    color: var(--blue);
    margin-left: 25px;
    transition: all 0.3s ease;
}

.solution-card__content {
    flex: 1;
}

.solution-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.solution-card__desc {
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.solution-card__link {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.solution-card__link i {
    margin-right: 5px;
    transition: transform 0.25s ease;
}

/* CTA Box Section */
.cta-box {
    padding: 64px 0;
    background: linear-gradient(135deg, #0f5378 0%, var(--blue) 48%, #2d3c58 100%);
}

.cta-box__wrapper {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.cta-box__title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cta-box__desc {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.cta-box .btn-light {
    background: var(--color-third);
    color: var(--color-primary);
    border: none;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-box .btn-light:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Portfolio Section */
.portfolio {
    padding: 64px 0;
    background: var(--gray-light);
}

.portfolio-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.portfolio-card__image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-card__image img {
    transform: scale(1.1);
}

.portfolio-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(51 102 162 / 48%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-card__overlay {
    opacity: 1;
}

.portfolio-card__link {
    color: #fff;
    font-size: 32px;
    transition: all 0.3s ease;
}

.portfolio-card__link:hover {
    transform: scale(1.2);
}

.portfolio-card__content {
    padding: 25px;
}

.portfolio-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.portfolio-card__category {
    font-size: 14px;
    color: var(--gray-dark);
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 64px 0;
    background: #fff;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item__header {
    background: var(--gray-light);
}

.faq-item__button {
    width: 100%;
    text-align: right;
    padding: 20px 25px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item__button:hover {
    color: var(--blue);
}

.faq-item__button i {
    transition: all 0.3s ease;
}

.faq-item__button:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-item__body {
    padding: 20px 25px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-dark);
}

/* Customers Section */
.customers {
    padding: 80px 0;
    background: var(--gray-light);
}

.customer-logo {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s ease;
}

.customer-logo:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* Premium Visual Layer (Non-Hero) */
.order-steps,
.services,
.iran-services,
.solutions,
.portfolio,
.faq,
.customers {
    position: relative;
    overflow: hidden;
}

.order-steps::before,
.services::before {
    content: "";
    position: absolute;
    inset: -80px auto auto -110px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, #7bb2ff12 0%, rgba(25, 163, 140, 0) 70%);
    transform: translate3d(0, calc(var(--sy, 0) * -48px), 0);
    pointer-events: none;
}

.order-steps::after,
.services::after {
    content: "";
    position: absolute;
    inset: auto -90px -90px auto;
    width: 240px;
    height: 240px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(230,255,123,0.2), rgba(230,255,123,0));
    transform: translate3d(0, calc(var(--sy, 0) * 42px), 0) rotate(28deg);
    pointer-events: none;
}

.iran-services::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -100px;
    width: 360px;
    height: 360px;
    background: conic-gradient(from 110deg, rgba(45,60,88,0.18), rgba(25,163,140,0.08), rgba(230,255,123,0.2), rgba(45,60,88,0.18));
    border-radius: 50%;
    filter: blur(2px);
    transform: translate3d(calc(var(--sy, 0) * 30px), calc(var(--sy, 0) * -52px), 0);
    pointer-events: none;
}

.iran-services::after {
    content: "";
    position: absolute;
    left: 5%;
    bottom: -120px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(25,163,140,0.18);
    border-radius: 38% 62% 54% 46% / 48% 40% 60% 52%;
    transform: translate3d(0, calc(var(--sy, 0) * 58px), 0) rotate(6deg);
    pointer-events: none;
}

.solutions::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    width: 460px;
    height: 180px;
    background: linear-gradient(90deg, rgba(25, 163, 140, 0), rgb(25 36 163 / 9%), rgba(230, 255, 123, 0));
    transform: translate3d(-50%, calc(var(--sy, 0) * -46px), 0);
    filter: blur(22px);
    pointer-events: none;
}

.solutions::after {
    content: "";
    position: absolute;
    right: 6%;
    bottom: -90px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at 40% 40%, rgba(230,255,123,0.26), rgba(230,255,123,0));
    border-radius: 24px;
    transform: translate3d(calc(var(--sy, 0) * -22px), calc(var(--sy, 0) * 46px), 0) rotate(-12deg);
    pointer-events: none;
}

.portfolio::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 12%;
    width: 300px;
    height: 300px;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(45,60,88,0.15), rgba(25,163,140,0.08));
    transform: translate3d(calc(var(--sy, 0) * 26px), calc(var(--sy, 0) * -54px), 0) rotate(22deg);
    pointer-events: none;
}

.portfolio::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(25 70 163 / 20%) 0%, rgba(25, 163, 140, 0) 68%);
    transform: translate3d(0, calc(var(--sy, 0) * 56px), 0);
    pointer-events: none;
}

.faq::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -30px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1px dashed rgba(45,60,88,0.18);
    transform: translate3d(calc(var(--sy, 0) * -30px), calc(var(--sy, 0) * -40px), 0);
    pointer-events: none;
}

.faq::after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: -110px;
    width: 280px;
    height: 220px;
    background: linear-gradient(120deg, rgba(230,255,123,0.18), rgba(25,163,140,0));
    clip-path: polygon(15% 0, 100% 12%, 84% 100%, 0 86%);
    transform: translate3d(0, calc(var(--sy, 0) * 40px), 0);
    pointer-events: none;
}

.customers::before {
    content: "";
    position: absolute;
    top: -140px;
    left: 50%;
    width: 520px;
    height: 320px;
    background: radial-gradient(ellipse at center, rgb(25 60 163 / 20%) 0%, rgba(25, 163, 140, 0) 68%);
    transform: translate3d(-50%, calc(var(--sy, 0) * -50px), 0);
    pointer-events: none;
}

.customers::after {
    content: "";
    position: absolute;
    right: 10%;
    bottom: -80px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(230,255,123,0.3);
    border-radius: 18px;
    transform: translate3d(calc(var(--sy, 0) * 24px), calc(var(--sy, 0) * 36px), 0) rotate(32deg);
    pointer-events: none;
}

.order-step,
.service-card,
.iran-service-card,
.solution-card,
.portfolio-card,
.faq-item,
.customer-logo {
    position: relative;
    isolation: isolate;
}

.order-step::before,
.service-card::before,
.iran-service-card::before,
.solution-card::before,
.portfolio-card::before,
.faq-item::before,
.customer-logo::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(132deg, rgb(25 89 163 / 45%), rgba(230, 255, 123, 0.08), rgba(45, 60, 88, 0.26));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.order-step:hover::before,
.service-card:hover::before,
.iran-service-card:hover::before,
.solution-card:hover::before,
.portfolio-card:hover::before,
.faq-item:hover::before,
.customer-logo:hover::before {
    opacity: 1;
}

.order-step::after,
.service-card::after,
.iran-service-card::after,
.solution-card::after,
.portfolio-card::after {
    content: "";
    position: absolute;
    left: var(--mx, 50%);
    top: var(--my, 50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(230,255,123,0.34) 0%, rgba(230,255,123,0) 62%);
    transform: translate(-50%, -50%);
    transition: width 0.35s ease, height 0.35s ease;
    pointer-events: none;
    z-index: -1;
}

.order-step:hover::after,
.service-card:hover::after,
.iran-service-card:hover::after,
.solution-card:hover::after,
.portfolio-card:hover::after {
    width: 220px;
    height: 220px;
}

.services-tabs__nav .nav-link {
    position: relative;
    overflow: hidden;
}

.services-tabs__nav .nav-link::after {
    content: "";
    position: absolute;
    right: 12px;
    left: 12px;
    bottom: -1px;
    height: 3px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--blue), var(--color-third));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
}

.services-tabs__nav .nav-link:hover::after,
.services-tabs__nav .nav-link.active::after {
    transform: scaleX(1);
}

.cta-box__wrapper {
    border: 1px solid rgba(230,255,123,0.28);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255,255,255,0.2);
}

.faq-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(22, 34, 53, 0.12);
}

.reveal-item {
    opacity: 0;
    transform: translate3d(0, 44px, 0) scale(0.97);
    transition: opacity 0.95s ease, transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.reveal-item[data-reveal-style="rise"] {
    transform: translate3d(0, 50px, 0) scale(0.98);
}

.reveal-item[data-reveal-style="drift-left"] {
    transform: translate3d(48px, 20px, 0) scale(0.98);
}

.reveal-item[data-reveal-style="drift-right"] {
    transform: translate3d(-48px, 20px, 0) scale(0.98);
}

.reveal-item[data-reveal-style="zoom-in"] {
    transform: translate3d(0, 28px, 0) scale(0.92);
}

.reveal-item[data-reveal-style="tilt-up"] {
    transform: perspective(1000px) rotateX(9deg) translate3d(0, 34px, 0) scale(0.97);
}

.reveal-item[data-reveal-style="soft-pop"] {
    transform: translate3d(0, 18px, 0) scale(0.9);
}

.reveal-item[data-reveal-style="skew-lift"] {
    transform: translate3d(0, 42px, 0) skewY(1.4deg) scale(0.97);
}

.customer-logo img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.customer-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .order-steps::before,
    .services::before,
    .iran-services::before,
    .solutions::before,
    .portfolio::before,
    .faq::before,
    .customers::before,
    .order-steps::after,
    .services::after,
    .iran-services::after,
    .solutions::after,
    .portfolio::after,
    .faq::after,
    .customers::after {
        display: none;
    }

    .homepage {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    .hero__title h1 {
        font-size: 36px;
    }
    
    .hero__sub-title {
        font-size: 20px;
    }
    
    .section-head__content-title {
        font-size: 28px;
    }
    
    .cta-box__wrapper {
        padding: 30px;
    }
    
    .cta-box__title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 60px 0;
    }

    .hero__title h1 {
        font-size: 28px;
    }
    
    .hero__sub-title {
        font-size: 18px;
    }
    
    .hero__desc {
        font-size: 16px;
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .hero__buttons .btn {
        width: 100%;
    }
    
    .order-steps,
    .services,
    .iran-services,
    .solutions,
    .cta-box,
    .portfolio,
    .faq,
    .customers {
        padding: 50px 0;
    }
    
    .section-head__content-title {
        font-size: 24px;
    }
    
    .cta-box .btn-light {
        width: 100%;
        margin-top: 20px;
    }

    .service-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "icon"
            "title"
            "desc"
            "price"
            "cta";
        text-align: right;
        row-gap: 12px;
    }

    .service-card__price {
        text-align: right;
    }

    .service-card .btn {
        width: 100%;
        min-width: 0;
    }
}
.service-card__actions {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-top: 12px;
}

.btn:active {
    transform: translateY(1px) scale(0.99);
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    transform: scale(0);
    animation: buttonRipple 0.55s ease-out forwards;
    pointer-events: none;
    z-index: 0;
}

.btn-ripple--primary {
    background: rgba(45, 60, 88, 0.26);
}

.btn-ripple--outline {
    background: rgba(25, 163, 140, 0.28);
}

.btn-ripple--light {
    background: rgba(255, 255, 255, 0.5);
}

.btn-ripple--default {
    background: rgba(25, 163, 140, 0.2);
}

.btn > span,
.btn > i {
    position: relative;
    z-index: 1;
}

@keyframes buttonRipple {
    to {
        transform: scale(2.4);
        opacity: 0;
    }
}

.order-steps.rhythm-alt .section-head,
.services.rhythm-alt .section-head,
.iran-services.rhythm-alt .section-head,
.solutions.rhythm-alt .section-head,
.portfolio.rhythm-alt .section-head,
.faq.rhythm-alt .section-head,
.customers.rhythm-alt .section-head {
    transform: translateX(-16px);
}

.order-steps.rhythm-main .section-head,
.services.rhythm-main .section-head,
.iran-services.rhythm-main .section-head,
.solutions.rhythm-main .section-head,
.portfolio.rhythm-main .section-head,
.faq.rhythm-main .section-head,
.customers.rhythm-main .section-head {
    transform: translateX(16px);
}

.vip-marquee {
    padding: 10px 0 18px;
    background: linear-gradient(90deg, #eff4fb 0%, #ffffff 50%, #eff4fb 100%);
    border-top: 1px solid rgba(45, 60, 88, 0.08);
    border-bottom: 1px solid rgba(45, 60, 88, 0.08);
    overflow: hidden;
}

.vip-marquee__track {
    display: inline-flex;
    align-items: center;
    width: 200%;
    animation: marqueeFlow 32s linear infinite;
    will-change: transform;
}

.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: rgba(25, 163, 140, 0.85);
}

.cursor-ring {
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border-radius: 50%;
    border: 1px solid rgba(25, 163, 140, 0.45);
    background: rgba(25, 163, 140, 0.07);
    box-shadow: 0 0 16px rgba(25, 163, 140, 0.12);
}

body.homepage.has-custom-cursor .cursor-dot,
body.homepage.has-custom-cursor .cursor-ring {
    opacity: 0;
}

.cursor-ring.is-hover {
    width: 42px;
    height: 42px;
    margin: -21px 0 0 -21px;
    border-color: rgba(230, 255, 123, 0.72);
    background: rgba(230, 255, 123, 0.08);
}

.cursor-ring.is-down {
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
}

body.homepage[data-cursor-mode="link"] .cursor-ring {
    border-color: var(--cursor-accent);
    background: color-mix(in srgb, var(--cursor-accent) 22%, transparent);
}

body.homepage[data-cursor-mode="cta"] .cursor-ring {
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
    border-color: rgba(230, 255, 123, 0.78);
    box-shadow: 0 0 16px rgba(230, 255, 123, 0.12);
}

body.homepage[data-cursor-mode="media"] .cursor-ring {
    width: 54px;
    height: 54px;
    margin: -27px 0 0 -27px;
    border-color: rgba(45, 60, 88, 0.5);
    background: rgba(45, 60, 88, 0.08);
}

* {
    scrollbar-width: thin;
    scrollbar-color: #2d3c58 #e8edf3;
}

*::-webkit-scrollbar {
    width: 11px;
    height: 11px;
}

*::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #eef2f8, #e5ebf2);
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2d3c58, #2d3c58);
    border-radius: 20px;
    border: 2px solid #e8edf3;
}

*::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2d3c58, #e6ff7b);
}

.vip-marquee__lane {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 50%;
    min-width: 50%;
    justify-content: space-around;
    padding: 0 28px;
    white-space: nowrap;
}

.vip-marquee__item {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.vip-marquee__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(130deg, var(--blue), var(--color-third));
    box-shadow: 0 0 0 4px rgba(25, 163, 140, 0.14);
}

@keyframes marqueeFlow {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vip-marquee__track {
        animation: none;
    }

    .btn-ripple {
        animation: none;
        opacity: 0;
    }

    .reveal-item,
    .reveal-item[data-reveal-style] {
        transform: none;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

.nav-link.btn.btn-primary-nav {
  max-width: 135px;
  width: 135px;
}
