/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

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

h1, h2, h3, .hero-title, .section-title, .borderheading h2 {
    font-family: "Playfair Display", serif;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== UTILITIES ===== */
.text-blue {
    background: linear-gradient(90deg, #1072FA 0%, #3b82f6 45%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-red {
    color: #C9072A;
}

.required {
    color: #1072FA;
    font-weight: 400;
}

/* ===== BORDER HEADING (Section Divider) ===== */
.borderheading {
    border-top: 1px solid #27293220;
    border-bottom: 1px solid #27293220;
    scroll-margin-top: 80px;
    background-image:
        linear-gradient(to bottom, #27293220, #27293220),
        linear-gradient(to bottom, #27293220, #27293220);
    background-size: 1px 100%;
    background-repeat: no-repeat;
    background-position:
        4% top,
        96% top;
}

.borderheading h2 {
    font-family: "Manrope", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: #D4D4D4;
    margin: 0em 1.05em;
    padding: 0.35em 0.94em;
    overflow-wrap: break-word;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid #27293220;
    padding: 16px 0;
}

.header .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    max-width: 100%;
    padding-left: 4%;
    padding-right: 4%;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-self: start;
}

.logo-icon {
    width: 28px;
    height: 28px;
}

.nav-links {
    display: flex;
    gap: 32px;
    justify-self: center;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: #272932;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a:hover {
    color: #1072FA;
}

.nav-links a.active {
    color: #1072FA;
    font-weight: 700;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1072FA;
    border-radius: 2px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #272932;
}

/* ===== BUTTONS ===== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1.2);
    border: none;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    transform-style: preserve-3d;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover {
    transform: scale(1.05) translateZ(10px);
    letter-spacing: 0.5px;
}

.btn:hover::before {
    opacity: 1;
    animation: magnetic-shift 2s infinite alternate ease-in-out;
}

@keyframes magnetic-shift {
    0% { background-position: 0% 0%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: #1072FA;
    color: #fff;
    box-shadow: 0 4px 12px rgba(16, 114, 250, 0.3);
}

.btn-arrow-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.btn-primary:hover {
    background: #1072FA;
    box-shadow: 
        0 10px 20px rgba(16, 114, 250, 0.4),
        0 6px 8px rgba(16, 114, 250, 0.3);
}

.btn-primary:active {
    box-shadow: 0 2px 6px rgba(16, 114, 250, 0.2);
}

.header-cta {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.btn-outline {
    display: flex;
    width: 240px;
    max-width: 100%;
    height: 42px;
    padding: 8px 12px 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #1072FA;
    background: #FFF;
    color: #1072FA;
    font-family: 'Manrope', sans-serif;
}

.btn-outline:hover {
    border-color: #1072FA;
    color: #1072FA;
    box-shadow: 
        0 10px 20px rgba(16, 114, 250, 0.15),
        0 6px 8px rgba(16, 114, 250, 0.1);
}

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

.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    display: block;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* ===== MYBORDER ===== */
.myborder {
    position: relative;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.myborder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(to bottom, #27293220, #27293220),
        linear-gradient(to bottom, #27293220, #27293220),
        linear-gradient(to bottom, #27293220, #27293220),
        linear-gradient(to bottom, #27293220, #27293220),
        linear-gradient(to bottom, #27293220, #27293220),
        linear-gradient(to bottom, #27293220, #27293220);
    background-size: 1px 100%;
    background-repeat: no-repeat;
    background-position:
        4% top,
        9% top,
        14% top,
        86% top,
        91% top,
        96% top;
}

.myborder-simple::before {
    background-image:
        linear-gradient(to bottom, #27293220, #27293220),
        linear-gradient(to bottom, #27293220, #27293220) !important;
    background-position:
        4% top,
        96% top !important;
}

/* ===== HERO ===== */
.mosadad-hero {
    padding: 0px;
    overflow: visible;
    margin: 0px auto;
    background: radial-gradient(600px 420px at 75% 18%, rgba(16, 114, 250, 0.18), transparent 60%), linear-gradient(180deg, #f8fbff 0%, #ffffff 70%);
}

.mosadad-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8em;
    padding-bottom: 0;
    padding-left: 7%;
    padding-right: 3%;
    gap: 40px;
}

.mosadad-hero-content {
    flex: 1;
    max-width: 550px;
    text-align: left;
}

.hero-title {
    align-self: stretch;
    font-family: 'Merriweather', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-top: 55px;
    margin-bottom: 60px;
    color: #111;
    white-space: nowrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-desc {
    margin: 10px 0;
    max-width: 500px;
    font-size: 20px;
    line-height: 1.65;
    color: #000;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-note {
    color: #1072FA;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    flex-wrap: nowrap;
    white-space: nowrap;
    background: linear-gradient(90deg, #e8f1ff 0%, #f0f7ff 50%, transparent 100%);
    padding: 10px 18px;
    border-radius: 8px;
    width: fit-content;
    position: relative;
    z-index: 2;
}

.hero-note i,
.hero-note-icon {
    color: #1072FA;
    width: 20px;
    height: 20px;
    -webkit-animation: blinker 0.8s infinite alternate;
    animation: blinker 0.8s infinite alternate;
}

.hero-note i:hover,
.hero-note-icon:hover {
    -webkit-animation: blinker 0.4s infinite alternate;
    animation: blinker 0.4s infinite alternate;
}

@keyframes blinker {
    0% { opacity: 1; }
    100% { opacity: 0.2; }
}

@-webkit-keyframes blinker {
    0% { opacity: 1; }
    100% { opacity: 0.2; }
}

.hero-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}

/* ===== TRUSTED ===== */
.trusted {
    padding: 50px 0 20px 0;
    border-top: 1px solid #27293220;
    border-bottom: 1px solid #27293220;
    overflow: hidden;
    background: radial-gradient(44.4% 75.36% at 50.03% 2.78%, #E8F2FF 0%, #FFF 100%);
}

.trusted-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.marquee-wrapper {
    width: 92%;
    margin-left: 4%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.marquee-track img {
    height: 100px;
    width: 180px;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== PARTNER / FORM ===== */
.partner {
    padding: 60px 0;
}

.partner-container {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
    align-items: flex-start;
}

.partner-content h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.35;
    margin: 20px 0;
    color: #111;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.partner-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 18px;
    color: #000;
    font-weight: 300;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.partner-form-wrapper {
    background: #FFF;
    border-radius: 25px;
    padding: 36px;
    box-shadow: none;
    border: 1px solid #AEACFD;
    position: relative;
    max-width: 720px;
}

.partner-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #272932;
    margin-bottom: 6px;
}

.form-group input {
    display: flex;
    height: 50px;
    padding: 10px 16px 10px 12px;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 4px;
    border: 1px solid #AEACFD;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    color: #272932;
    width: 100%;
}

.form-group input:focus {
    outline: none;
    border-color: #1072FA;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-input {
    display: flex;
    height: 50px;
    align-items: center;
    gap: 8px;
    border: 1px solid #AEACFD;
    border-radius: 4px;
    overflow: hidden;
}

.phone-input .country-code {
    padding: 12px 12px;
    border: none;
    border-right: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    outline: none;
}

.phone-input input {
    border: none !important;
    border-radius: 0 !important;
    flex: 1;
}

.phone-input input:focus {
    outline: none;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f9fafb;
}

.captcha-box input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.captcha-img {
    width: 32px;
    height: 32px;
    margin-left: auto;
}

/* ===== SECTIONS SHARED ===== */
.section-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #111;
    font-family: 'Merriweather', serif;
}

.section-subtitle {
    text-align: center;
    color: #000;
    font-size: 18px;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* ===== PROBLEM ===== */
.problem {
    padding: 40px 5%;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.problem-card {
    background: linear-gradient(117deg, #FFE1E6 -11.15%, #FFF 39.46%);
    border: 1px solid #FFD9E0;
    border-radius: 27px;
    padding: 20px 18px;
    transition: all 0.3s;
}

.problem-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: transparent;
}

.card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.card-icon img {
    width: 24px;
    height: 24px;
}

.red-icon { color: #ef4444; }
.blue-icon { color: #1072FA; }
.green-icon { color: #22c55e; }
.purple-icon { color: #8b5cf6; }

.problem-card h4,
.solution-card h4 {
    color: #000;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.problem-card p {
    color: #747474;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.2px;
}

.solution-card p {
    color: #747474;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.2px;
}

/* ===== SOLUTION ===== */
.solution {
    padding: 40px 0;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

.solution-card {
    background: linear-gradient(117deg, #CFE3FF -11.15%, #FFF 39.46%);
    border: 1px solid #CFE3FF;
    border-radius: 27px;
    padding: 20px 18px;
    transition: all 0.3s;
    grid-column: span 2;
}

.solution-card:nth-child(4),
.solution-card:nth-child(5) {
    grid-column: span 3;
}

.solution-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: transparent;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 30px 0;
    position: relative;
}

.timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 100px 0;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #e5e7eb;
    z-index: 0;
    transform: translateY(-50%);
}

.timeline-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #93c5fd;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.timeline.animate .timeline-line::after {
    width: 100%;
    transition: width 7s ease;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    background: #f3f4f6;
    border: 2px solid #d1d5db;
    border-radius: 50%;
}

.step-dot {
    width: 10px;
    height: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
    position: absolute;
    z-index: 2;
}

/* Dots at top-center for steps with label above (child 2,4,6) */
.timeline-step:nth-child(2) .step-dot,
.timeline-step:nth-child(4) .step-dot,
.timeline-step:nth-child(6) .step-dot {
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
    right: auto;
}

/* Dots at bottom-center for steps with label below (child 3,5) */
.timeline-step:nth-child(3) .step-dot,
.timeline-step:nth-child(5) .step-dot {
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    right: auto;
}

.step-circle-bg {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.step-icon i,
.step-svg-icon {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    color: #9ca3af;
    width: 28px;
    height: 28px;
    transition: all 0.5s ease;
    opacity: 0.6;
}

.step-label {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

/* Odd steps (1,3,5): label above */
.timeline-step:nth-child(2) .step-label,
.timeline-step:nth-child(4) .step-label,
.timeline-step:nth-child(6) .step-label {
    bottom: calc(100% - 8px);
}

/* Even steps (2,4): label below */
.timeline-step:nth-child(3) .step-label,
.timeline-step:nth-child(5) .step-label {
    top: calc(100% - 8px);
}

.label-bg {
    width: 248px;
    height: 102.5px;
}

.step-label span {
    position: absolute;
    font-size: 14px;
    font-weight: 500;
    color: #272932;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
}

/* Phase 1: Circle highlights - border and bg turn blue */
.timeline-step.highlight .step-icon {
    border-color: #93c5fd;
    background: #eff6ff;
}

.timeline-step.highlight .step-circle-bg {
    opacity: 1;
}

.timeline-step.highlight .step-icon i,
.timeline-step.highlight .step-svg-icon {
    color: #1072FA;
    opacity: 1;
}

/* Phase 2: Dot + label appear, circle fully colored */
.timeline-step.lit .step-icon {
    border-color: #1072FA;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(16, 114, 250, 0.12);
}

.timeline-step.lit .step-dot {
    opacity: 1;
}

.timeline-step.lit .step-label {
    opacity: 1;
    transform: scale(1);
}

.timeline-step:hover .step-circle-bg {
    opacity: 1;
}

.timeline-step:hover .step-icon i,
.timeline-step:hover .step-svg-icon {
    color: #1072FA;
    opacity: 1;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.timeline-step:hover .step-icon {
    border-color: #1072FA;
    box-shadow: 0 0 0 6px rgba(16, 114, 250, 0.15);
}

/* ===== COMPARE ===== */
.compare {
    padding: 30px 0;
}

.compare .section-title {
    margin-bottom: 40px;
}

.compare-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    max-width: 100%;
    margin: 0 auto;
}

.compare-card {
    border-radius: 28px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    border-top: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.compare-card::after {
    display: none;
}

.compare-card.old-way {
    border-radius: 27px;
    border: 1px solid #FFD9E0;
    background: linear-gradient(117deg, #FFE1E6 -11.15%, #FFF 39.46%);
    max-width: 768px;
}

.compare-card.mosadad-way {
    border-radius: 27px;
    border: 1px solid #CFE3FF;
    background: linear-gradient(117deg, #FFF 40%, #CFE3FF 100%);
    max-width: 768px;
}

.compare-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
    margin-left: -32px;
    margin-right: -32px;
    padding-left: 32px;
    padding-right: 32px;
}

.compare-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.compare-list-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    flex-shrink: 0;
}

.compare-card.old-way .compare-header h3 {
    color: #C9072A;
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0.32px;
}

.compare-card.mosadad-way .compare-header h3 {
    color: #1072FA;
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.07px;
}

.tag {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.tag-red {
    display: inline-flex;
    padding: 6px 26px 5px 25px;
    justify-content: center;
    align-items: center;
    border-radius: 16777200px;
    border: 1px solid #C9072A;
    background: #FFE2E2;
    color: #C9072A;
}

.tag-blue {
    display: inline-flex;
    padding: 6px 22px 5px 21px;
    justify-content: center;
    align-items: center;
    border-radius: 16777200px;
    border: 1px solid #1072FA;
    background: #CFE3FF;
    color: #1072FA;
}

.compare-subtitle {
    font-size: 16px;
    color: #000;
    margin-bottom: 32px;
    font-weight: 300;
}

.compare-card.old-way .compare-subtitle {
    color: #1D293D;
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.07px;
}

.compare-card.mosadad-way .compare-subtitle {
    color: #1D293D;
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.07px;
}

.compare-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    font-size: 16px;
    color: #272932;
    font-weight: 400;
    border: none;
    border-radius: 12px;
    margin-bottom: 12px;
    position: relative;
    background: transparent;
}

.compare-card ul li::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
       mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.compare-card.old-way ul li::before {
    border: 1px solid #f7d0e2;
}

.compare-card.mosadad-way ul li::before {
    border: 1px solid #c6d8f0;
}

.compare-card ul li:last-child {
    margin-bottom: 0;
}

.old-way ul li i {
    color: #ef4444;
}

.mosadad-way ul li i {
    color: #22c55e;
}

/* ===== CTA ===== */
.cta {
    padding: 0px 20px 20px;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.cta .container {
    position: relative;
    max-width: 1677px;
    margin: auto;
    padding: 20px 40px;
    min-height: 355px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    overflow: hidden;
    background: radial-gradient(44.4% 75.36% at 50.03% 2.78%, #E8F2FF 0%, #FFF 100%);
    text-align: center;
    color: #1f2937;
}

.cta h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.25;
    color: #1f2937;
    text-align: center;
    font-family: 'Merriweather', serif;
}

.cta p {
    color: #1f2937;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.6px;
    max-width: 100%;
    margin: 0 auto 28px;
    white-space: nowrap;
}

.cta-highlight {
    color: #1072FA !important;
    font-weight: 900;
    margin-bottom: 28px !important;
    white-space: nowrap;
}

.cta .btn-primary {
    display: flex;
    width: 240px;
    height: 50px;
    padding: 10px 12px 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #1072FA;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #071a3a 0%, #04122a 100%);
    padding: 80px 0 0;
    color: #fff;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h3 .logo-icon {
    width: 32px;
    height: 32px;
    filter: invert(1);
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 300;
    color: #fff;
    max-width: 380px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    transition: color 0.3s;
    white-space: nowrap;
}

.footer-col ul li a:hover {
    color: #fff;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    opacity: 0.85;
    transition: all 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

.social-links a[href="javascript:void(0)"] {
    cursor: default;
}

.footer-bottom {
    border-top: 1px solid #ffffff30;
    padding-top: 22px;
    padding-bottom: 22px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-left: 0;
    margin-right: 0;
}

.footer.myborder-simple::before {
    background-image:
        linear-gradient(to bottom, #ffffff30, #ffffff30),
        linear-gradient(to bottom, #ffffff30, #ffffff30) !important;
    background-position:
        4% top,
        96% top !important;
}

.footer-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #1072FA;
    border-radius: 50%;
    margin: 0 16px;
    vertical-align: middle;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .mosadad-hero-inner {
        padding-left: 30px;
        padding-right: 20px;
        margin: 0;
    }

    .header-cta {
        padding: 8px 16px;
        font-size: 13px;
    }

    .header-cta .btn-arrow-icon {
        width: 18px;
        height: 18px;
    }

    .hero-title {
        font-size: 38px;
        white-space: normal;
    }

    .hero-image {
        max-width: 45%;
    }

    .hero-note {
        flex-wrap: wrap;
        white-space: normal;
    }

    .footer-bottom p {
        white-space: normal;
        text-align: center;
    }

    .partner-container {
        grid-template-columns: 1fr;
    }

    .problem-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-card,
    .solution-card:nth-child(4),
    .solution-card:nth-child(5) {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta .container {
        max-width: 100%;
        min-height: auto;
    }

    .cta p {
        white-space: normal;
    }

    .cta-highlight {
        white-space: normal !important;
    }
}

@media (max-width: 768px) {
    .myborder:not(.footer), .mosadad-hero {
        margin: 0em 0em !important;
        border-left: none;
        border-right: none;
        background-image: none;
        border-top: none;
        border-bottom: none;
    }

    .myborder::before {
        display: none;
    }

    .partner-content h2 {
        font-size: 24px;
    }

    .partner-content h2 br,
    .partner-note p br {
        display: none;
    }

    .partner-note {
        font-size: 15px;
        flex-wrap: wrap;
    }

    .partner-note p {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .partner {
        padding: 40px 0;
    }

    .container {
        padding: 0 16px;
    }

    .mosadad-hero-inner {
        flex-direction: column;
        padding: 7em 20px 0;
        text-align: center;
        margin: 0;
        border-left: none;
        border-right: none;
    }

    .mosadad-hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-image {
        max-width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 34px;
        white-space: normal;
    }

    .hero-note {
        flex-wrap: wrap;
        white-space: normal;
        justify-content: center;
        font-size: 13px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        justify-self: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
        justify-self: end;
    }

    .header .container {
        grid-template-columns: 1fr auto;
    }

    .header-cta {
        display: none;
    }

    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .section-subtitle br {
        display: none;
    }

    .borderheading h2 {
        font-size: 24px;
        margin: 0;
        padding: 0.35em 0.4em;
        text-align: left;
    }

    .borderheading {
        background-image: none !important;
    }

    .problem-cards {
        grid-template-columns: 1fr;
    }

    .solution-cards {
        grid-template-columns: 1fr;
    }

    .solution-card,
    .solution-card:nth-child(4),
    .solution-card:nth-child(5) {
        grid-column: span 1;
    }

    .compare-cards {
        grid-template-columns: 1fr;
    }

    .compare-card ul li {
        white-space: normal;
    }

    .timeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 40px 16px;
        max-width: 100%;
        margin: 0 auto;
        position: relative;
    }

    .timeline-line {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 3px;
        height: 100%;
        transform: translateX(-50%);
    }

    .timeline-line::after {
        width: 100% !important;
        height: 0%;
        transition: height 7s ease !important;
    }

    .timeline.animate .timeline-line::after {
        height: 100%;
        width: 100% !important;
    }

    .timeline-step {
        display: flex;
        align-items: center;
        padding: 24px 0;
        width: 100%;
        position: relative;
        justify-content: center;
    }

    .step-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }

    .step-circle-bg {
        width: 48px;
        height: 48px;
    }

    .step-label {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        opacity: 0;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 8px 14px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    .timeline-step.lit .step-label {
        opacity: 1;
    }

    .label-bg {
        display: none;
    }

    .step-label span {
        font-size: 13px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        white-space: nowrap;
        color: #272932;
        font-weight: 500;
    }

    /* Steps 1,3,5 (nth-child 2,4,6): label on LEFT, dot on LEFT of circle */
    .timeline-step:nth-child(2),
    .timeline-step:nth-child(4),
    .timeline-step:nth-child(6) {
        flex-direction: row !important;
        justify-content: flex-start;
        padding-left: 0;
    }

    .timeline-step:nth-child(2) .step-label,
    .timeline-step:nth-child(4) .step-label,
    .timeline-step:nth-child(6) .step-label {
        margin-right: calc(50% - 10px);
        order: 1;
    }

    .timeline-step:nth-child(2) .step-dot,
    .timeline-step:nth-child(4) .step-dot,
    .timeline-step:nth-child(6) .step-dot {
        position: absolute !important;
        left: calc(50% - 28px) !important;
        right: auto !important;
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
        z-index: 3;
    }

    /* Steps 2,4 (nth-child 3,5): label on RIGHT, dot on RIGHT of circle */
    .timeline-step:nth-child(3),
    .timeline-step:nth-child(5) {
        flex-direction: row-reverse !important;
        justify-content: flex-start;
        padding-right: 0;
    }

    .timeline-step:nth-child(3) .step-label,
    .timeline-step:nth-child(5) .step-label {
        margin-left: calc(50% - 10px);
        order: 1;
    }

    .timeline-step:nth-child(3) .step-dot,
    .timeline-step:nth-child(5) .step-dot {
        position: absolute !important;
        right: calc(50% - 28px) !important;
        left: auto !important;
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
        z-index: 3;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col ul li {
        white-space: normal;
    }

    .footer-col ul li a {
        white-space: normal;
    }

    .footer-col p {
        max-width: 100%;
    }

    .footer-col h3 {
        font-size: 1.3rem;
    }

    .footer-col h3 .logo-icon {
        width: 28px;
        height: 28px;
    }

    .footer-bottom {
        padding: 18px 16px;
    }

    .footer-bottom p {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.8;
    }

    .marquee-track img {
        height: 60px;
        width: auto !important;
    }

    .marquee-wrapper {
        width: 100%;
        margin-left: 0;
    }

    .cta .container {
        padding: 60px 24px;
        min-height: auto;
    }

    .cta p {
        white-space: normal;
        font-size: 16px;
    }

    .cta h2 {
        font-size: 32px;
    }

    .cta .btn-primary {
        width: auto;
        padding: 12px 24px;
    }

    .cta-highlight {
        white-space: normal !important;
    }

    .compare-card.old-way .compare-header h3,
    .compare-card.mosadad-way .compare-header h3 {
        font-size: 18px;
    }

    .compare-card.old-way .compare-subtitle,
    .compare-card.mosadad-way .compare-subtitle {
        font-size: 18px;
    }

    .compare-header {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .compare-card {
        padding: 20px 16px;
    }

    .compare-card ul li::before {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

@media (max-width: 480px) {
    .mosadad-hero-inner {
        padding-top: 6em;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: 28px;
        white-space: normal;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-note {
        font-size: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-buttons .btn {
        font-size: 14px;
        padding: 10px 18px;
    }

    .section-title {
        font-size: 24px;
    }

    .borderheading h2 {
        font-size: 24px;
        margin: 0em 0.1em;
        padding: 0.3em 0.3em;
    }

    .partner-content h2 {
        font-size: 22px;
    }

    .partner-form-wrapper {
        padding: 24px;
    }

    .problem-card h4,
    .solution-card h4 {
        font-size: 20px;
        white-space: normal;
    }

    .problem-card p,
    .solution-card p {
        font-size: 16px;
    }

    .compare-header h3 {
        font-size: 18px;
    }

    .compare-card ul li {
        font-size: 14px;
        padding: 10px 12px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .cta p {
        font-size: 14px;
        white-space: normal;
    }

    .cta-highlight {
        white-space: normal !important;
        font-size: 14px !important;
    }

    .cta .btn-primary {
        width: 100%;
        max-width: 240px;
    }

    .compare-card.old-way .compare-header h3,
    .compare-card.mosadad-way .compare-header h3 {
        font-size: 16px;
    }

    .compare-card.old-way .compare-subtitle,
    .compare-card.mosadad-way .compare-subtitle {
        font-size: 16px;
    }

    .tag-red,
    .tag-blue {
        padding: 4px 14px 3px 13px;
        font-size: 11px;
    }

    .footer-bottom {
        font-size: 14px;
        padding: 16px 12px;
    }

    .footer-dot {
        margin: 0 8px;
    }

    .footer-col p {
        font-size: 16px;
    }

    .footer-col ul li a {
        font-size: 16px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .trusted-title {
        font-size: 12px;
    }

    .marquee-track img {
        height: 50px;
        width: auto !important;
    }

    .timeline {
        padding: 30px 12px;
    }

    .timeline-line {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .timeline-step {
        padding: 12px 0;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-circle-bg {
        width: 40px;
        height: 40px;
    }

    .label-bg {
        display: none;
    }

    .step-label span {
        font-size: 11px;
    }

    .step-label {
        padding: 6px 10px;
    }

    .timeline-step:nth-child(2) .step-label,
    .timeline-step:nth-child(4) .step-label,
    .timeline-step:nth-child(6) .step-label {
        margin-right: calc(50% - 20px + 12px);
    }

    .timeline-step:nth-child(3) .step-label,
    .timeline-step:nth-child(5) .step-label {
        margin-left: calc(50% - 20px + 12px);
    }

    .timeline-step:nth-child(2) .step-dot,
    .timeline-step:nth-child(4) .step-dot,
    .timeline-step:nth-child(6) .step-dot {
        left: calc(50% - 24px) !important;
    }

    .timeline-step:nth-child(3) .step-dot,
    .timeline-step:nth-child(5) .step-dot {
        right: calc(50% - 24px) !important;
    }

    .step-svg-icon {
        width: 20px !important;
        height: 20px !important;
    }
}
