/* ===== Tokens ===== */
.dev-features {
    --blue: #225D77;
    --gold-1: #C59D63;
    --gold-2: #C59D63;
    --white: #fff;
    --radius: 24px;
    --shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.dev-features * {
    box-sizing: border-box;
}

.dev-features .container {
    width: min(1100px, 96vw);
    margin: 0 auto;
}

/* Title + ink */
.dev-title-features {
    margin: 60px 0 8px;
    text-align: center;
    color: var(--blue);
    font-weight: 800;
    font-size: clamp(22px, 3.2vw, 32px);
    line-height: 1.1;
}

.dev-features-ink {
    display: block;
    width: 312px;
    height: 14px;
    margin: 10px auto 60px;

}

.card-outer {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.dev-left {
    background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
    color: #fff;
    padding: 26px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 3;
}

.dev-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dev-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;


}

.dev-list svg {
    width: 40px;
    height: 40px;
    fill: #fff;
    flex: 0 0 40px;
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .06));
}

/* Button */
.dev-btn {
    display: inline-block;
    align-self: flex-start;
    border-radius: 4px;
    background: #ffffff;
    color: #225D77;
    text-decoration: none;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
    transition: .12s ease;

    font-weight: 700;
    font-size: 16px;

    height: 54px;


    opacity: 1;
    border-radius: 4px;
    padding-top: 13px;
    padding-right: 64px;
    padding-bottom: 8px;
    padding-left: 64px;
    gap: 10px;


}

.dev-btn:hover {
    transform: translateY(-1px);
}

.dev-right {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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



@media (min-width: 761px) and (max-width: 1024px){
    .dev-title-features{ font-size: 28px; }
    .dev-features-ink{ width: 240px; height: 12px; margin: 8px auto 42px; }

    .dev-left{ padding: 22px 26px; gap: 14px; }
    .dev-list{ gap: 12px; }
    .dev-list li{ font-size: 22px; line-height: 130%; }
    .dev-list svg{ width: 36px; height: 36px; flex: 0 0 36px; }

    .dev-btn{
        font-size: 16px;
        height: 48px;
        padding: 8px 28px;
    }

    .dev-right{ min-height: 320px; }
}

@media (max-width: 760px) and (min-width: 569px){
    .dev-title-features{ font-size: 26px; }
    .dev-features-ink{ width: 210px; height: 10px; margin: 6px auto 34px; }

    .dev-left{ padding: 18px 20px; gap: 12px; }
    .dev-list{ gap: 10px; }
    .dev-list li{ font-size: 19px; line-height: 130%; }
    .dev-list svg{ width: 32px; height: 32px; flex: 0 0 32px; }

    .dev-btn{
        width: 100%;
        height: 46px;
        font-size: 15px;
        padding: 8px 22px;
    }

    .dev-right{ min-height: 280px; }
}

@media (max-width: 568px){
    .dev-features .container{ width: min(560px, 94vw); }
    .dev-title-features{ font-size: 22px; }
    .dev-features-ink{ width: 170px; height: 9px; margin: 6px auto 26px; }

    .card-outer{ border-radius: 16px; }
    .dev-left{ padding: 16px; gap: 12px; }

    .dev-list{ gap: 10px; }
    .dev-list li{
        font-size: 16px;
        line-height: 1.5;
    }
    .dev-list svg{ width: 28px; height: 28px; flex: 0 0 28px; }

    .dev-btn{
        display: block;
        width: 100%;
        height: 44px;
        font-size: 14.5px;
        padding: 8px 16px;
    }

    .dev-right{
        min-height: 220px;
        aspect-ratio: 16 / 11;
    }
}



    /* ===== Dev Services (pixel-perfect) ===== */
.dev-services {
    margin-top: 20px;
    background: #f7f9fb;
    padding: 36px 0 48px;
    --gold: #C59D63;
    --ring: 0 6px 18px rgba(15, 24, 36, .06), 0 0 0 4px rgba(197, 157, 99, .08);
    --card-h: 232px;
    --icon-bg: #eff3f6;
    --icon-dim: 92px;
    --ink: #C59D63;
}

.dev-title {
    color: #225D77;
    text-align: center;
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;

}

.dev-ink {
    display: block;
    width: 312px;
    height: 14px;
    margin: 10px auto 18px;
    fill: var(--ink);
    margin-bottom: 45px;

}

/* Grid */
.srv-grid {
    margin-bottom: 25px;

    width: min(1100px, 96vw);
    margin: 0 auto;
    display: grid;
    gap: 16px;
    grid-template-columns:repeat(3, minmax(0, 1fr));
}

/* Card */
.srv-card {
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #e9eef3;
    background: #fff;
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: var(--card-h);
    transition: border-color .16s ease, box-shadow .16s ease, transform .08s ease, background-color .2s ease, filter .16s ease;
}

.srv-card:focus {
    outline: none;
}

.srv-card:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(34, 93, 119, .18);
}

.srv-ico {
    width: var(--icon-dim);
    height: var(--icon-dim);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--icon-bg);
    color: #9aa1a8;
    transition: background-color .16s ease, color .16s ease;
}

.srv-ico svg {
    width: 56px;
    height: 56px;
    fill: currentColor;
}

.srv-title {
    margin: 0;

    font-weight: 400;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;


}

/* Hover/Active */
.srv-card:hover,
.srv-card.is-active {
    background: #f9fbfe;
    filter: saturate(1.02);
    box-shadow: 0px 0px 16px 0px #225D778F;

}

.srv-card:hover .srv-ico,
.srv-card.is-active .srv-ico {
    background: var(--gold);
    color: #fff;
}

.srv-card:active {
    transform: translateY(1px) scale(.985);
    box-shadow: 0 4px 12px rgba(15, 24, 36, .05);
}




@media (min-width: 761px) and (max-width: 1024px){
    .dev-services{ padding: 32px 0 44px; }
    .dev-services .dev-title{ font-size: 36px; }
    .dev-services .dev-ink{ width: 260px; height: 12px; margin-bottom: 36px; }

    .dev-services .srv-grid{
        width: min(980px, 94vw);
        gap: 14px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dev-services .srv-card{
        --card-h: 210px;
        padding: 16px 14px;
    }

    .dev-services .srv-ico{ --icon-dim: 84px; }
    .dev-services .srv-ico svg{ width: 50px; height: 50px; }

    .dev-services .srv-title{
        font-size: 17px;
        line-height: 34px;
    }
}

@media (max-width: 760px) and (min-width: 569px){
    .dev-services{ padding: 28px 0 40px; }
    .dev-services .dev-title{ font-size: 32px; }
    .dev-services .dev-ink{ width: 220px; height: 10px; margin-bottom: 28px; }

    .dev-services .srv-grid{
        width: min(720px, 92vw);
        gap: 14px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dev-services .srv-card{
        --card-h: 200px;
        padding: 16px 12px;
    }

    .dev-services .srv-ico{ --icon-dim: 76px; }
    .dev-services .srv-ico svg{ width: 44px; height: 44px; }

    .dev-services .srv-title{
        font-size: 16.5px;
        line-height: 30px;
    }
}

@media (max-width: 568px){


    .srv-ico {
        width: 75px;
        height: 75px;
    }

    .srv-ico svg {
        width: 56px;
        height: 56px;
    }

    .dev-services{ padding: 24px 0 34px; }
    .dev-services .dev-title{ font-size: 26px; }
    .dev-services .dev-ink{ width: 180px; height: 9px; margin-bottom: 22px; }

    .dev-services .srv-grid{
        width: min(560px, 85vw);
        gap: 12px;
        grid-template-columns: 1fr;
    }

    .dev-services .srv-card{
        --card-h: auto;
        min-height: 180px;
        padding: 14px 12px;
    }

    .dev-services .srv-ico{ --icon-dim: 68px; }
    .dev-services .srv-ico svg{ width: 40px; height: 40px; }

    .dev-services .srv-title{
        font-size: 16px;
        line-height: 28px;
    }
}







:root {
    --nav-h: 56px;
}

/* TOKENS */
.hero-landing {
    --accent: #225D77;
    --ink: #C59D63;
    --overlay: rgba(0, 0, 0, 0.48);
    --glass-bg: rgba(154, 161, 168, 0.6);
    --glass-stroke: rgba(255, 255, 255, .35);
    --field-stroke: rgba(255, 255, 255, .75);
    --placeholder: rgba(255, 255, 255, .80);
    --radius: 20px;
    color: #fff;
}

/* HERO WRAPPER */
.hero-landing {
    position: relative;
    min-height: 100svh; /* smart mobile */
    min-height: 100vh; /* fallback */
    display: grid;
    place-items: center;
    padding-block: clamp(20px, 6vh, 120px);
    background-image: url('../image/44.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--overlay), var(--overlay));
    z-index: 0;
}

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

/* BRAND */
.hero-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem
}

.brand-text {
    margin-top: 10px;
    font-weight: 700;
    font-size: 64px;
    leading-trim: NONE;
    line-height: 56px;
    letter-spacing: 0%;
    text-align: center;

}

.brand-ink {
    width: clamp(110px, 16vw, 200px);
    height: auto;
    display: block
}

.brand-ink path {
    fill: var(--ink)
}

/* TYPOGRAPHY */
.hero-title {
    margin-block: clamp(6px, 0.6vh, 10px) clamp(6px, 0.6vh, 10px);
    font-weight: 800;
    font-size: clamp(22px, 2.4vw + 14px, 54px);
    line-height: 1.1;
}

.hero-subtext {
    margin-top: clamp(6px, .8vh, 12px);
    color: rgba(255, 255, 255, .92);
    font-weight: 400;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 56px;
    letter-spacing: 0%;
    text-align: center;
}

/* GLASS LEAD CARD */
.hero-cta-shell {
    /*width: min(100%, 940px);*/
    padding: clamp(12px, 1.2vw + 6px, 22px) clamp(14px, 1.8vw, 28px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(0px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.lead-title {
    text-align: center;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .95);
    font-weight: 400;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 56px;
    letter-spacing: 0%;

}

.lead-form {

}

.hero-input {
    height: clamp(40px, 1.6vw + 36px, 49px);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 7px;
    padding: 0 14px;
    color: #fff;
    outline: none;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
    width: 100%;

    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;


}

.hero-input::placeholder {
    color: var(--placeholder)
}

.hero-input:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .15);
}

.lead-submit {
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

.btn-submit {
    padding: 0 clamp(22px, 2.2vw, 36px);
    border-radius: 8px;
    border: 1px solid transparent;
    background: var(--ink);
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: #fff;
    cursor: pointer;
    transition: transform .06s ease, filter .15s ease;
    will-change: transform;
    height: 49px;
    width: 292px;
}

.btn-submit:hover {
    filter: brightness(.97)
}

.btn-submit:active {
    transform: translateY(1px)
}





@media (min-width: 761px) and (max-width: 1024px){
    .brand-text{ font-size: 56px; }
    .brand-ink{ width: clamp(110px, 14vw, 180px); }

    .hero-subtext{
        font-size: 24px;
        line-height: 40px;
        margin-top: 10px;
        padding-inline: 10px;
    }

    .hero-cta-shell{
        width: min(100%, 880px);
        padding: 18px 22px;
        border-radius: 18px;
    }

    .lead-title{ font-size: 22px; line-height: 1.5; margin-bottom: 8px; }
    .hero-input{ height: 48px; }
    .btn-submit{ width: 260px; height: 48px; font-size: 16px; }
}


@media (max-width: 760px) and (min-width: 569px){
    .brand-text{ font-size: 44px; line-height: 1.08; }
    .brand-ink{ width: clamp(100px, 22vw, 150px); }

    .hero-subtext{
        font-size: 20px;
        line-height: 34px;
        margin-top: 10px;
        padding-inline: 8px;
    }

    .hero-cta-shell{
        width: 100%;
        padding: 16px 18px;
        border-radius: 16px;
        background: rgba(154,161,168,0.55);
    }

    .lead-title{ font-size: 19px; line-height: 1.5; margin-bottom: 6px; }
    .hero-input{ height: 46px; font-size: 15.5px; }
    .lead-submit{ margin-top: 8px; }
    .btn-submit{ width: 100%; height: 46px; font-size: 15.5px; }
}


@media (max-width: 568px){
    .hero-landing{ padding-block: 18px 28px; }
    .hero-content{ max-width: 100%; padding-inline: 12px; }

    .brand-text{ font-size: 34px; line-height: 1.1; margin-top: 6px; }
    .brand-ink{ width: 120px; }

    .hero-subtext{
        font-size: 18px;
        line-height: 30px;
        margin-top: 8px;
        padding-inline: 2px;
    }

    .hero-cta-shell{
        width: 100%;
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(154,161,168,0.5);
        box-shadow: 0 8px 24px rgba(0,0,0,.16);
    }

    .lead-title{ font-size: 16px; line-height: 28px; margin-bottom: 6px; }
    .hero-input{ height: 44px; font-size: 15px; }
    .lead-submit{ margin-top: 6px; }
    .btn-submit{ width: 100%; height: 44px; font-size: 15px; }
}


.hero-input[name="phone"]{
    direction: ltr;
    text-align: right;
    unicode-bidi: plaintext;
}

html[dir="rtl"] .hero-input[name="phone"]::placeholder{
    direction: rtl;
    text-align: right;
}
html[dir="ltr"] .hero-input[name="phone"]::placeholder{
    direction: ltr;
    text-align: left;
}


/* ==== MASKAN Steps – Mobile-first, RTL/LTR safe ==== */
.steps-maskan {
    position: relative;
    overflow: hidden;
    padding: 44px 0 56px;


    background: #C59D63;

    /* Tokens */
    --blue: #225D77;
    --white: #fff;
    --card: #fff;
    --radius: 24px;
    --shadow: 0 6px 18px rgba(0, 0, 0, .08);

    --row-gap-desktop: clamp(120px, 12vw, 200px);
    --row-gap-tablet: clamp(80px, 9vw, 140px);
    --row-gap-mobile: 70px;

    --step-gap: 20px;
    --step-card-w: 338px;
}

.steps-maskan * {
    box-sizing: border-box;
}

.steps-bg-waves {
    position: absolute;
    inset: 0;
    opacity: .70;
    pointer-events: none;
}

.steps-bg-waves svg {
    width: 100%;
    /*height: 160%;*/
    position: absolute;
    top: -14%;
    right: -15%;
}

.container {
    width: min(1100px, 96vw);
    margin: 0 auto;
}

.steps-title {
    margin: 0 0 clamp(72px, 9vw, 170px);
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: clamp(26px, 4.2vw, 48px);
    line-height: 100%;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
    "s1"
    "s2"
    "s3"
    "sb";
    row-gap: var(--row-gap-mobile);
    align-items: start;
    justify-items: center;
}

.step-1 {
    grid-area: s1;
}

.step-2 {
    grid-area: s2;
}

.step-3 {
    grid-area: s3;
}

.steps-bottom {
    grid-area: sb;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
    justify-items: center;
}

.step-card {
    position: relative;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 16px 14px 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;

    width: min(100%, 360px);
    height: auto;
    min-height: 104px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card:hover,
.step-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.9);
}

.step-card:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.55);
    outline-offset: 4px;
}

.step-pin {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -36px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.steps-maskan[dir="rtl"] .step-pin {
    flex-direction: row-reverse;
}

.step-word {
    color: #fff;
    font-weight: 700;
    font-size: clamp(22px, 5vw, 48px);
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .1));
}

.step-num {
    color: var(--blue);
    -webkit-text-stroke: 1px var(--white);
    text-shadow: 1px 0 0 var(--white), -1px 0 0 var(--white),
    0 1px 0 var(--white), 0 -1px 0 var(--white),
    2px 2px 0 var(--white), -2px 2px 0 var(--white),
    2px -2px 0 var(--white), -2px -2px 0 var(--white);
    font-weight: 700;
    font-size: clamp(46px, 12vw, 180px);
    line-height: 100%;
}

.step-body {
    color: #000;
    font-weight: 700;
    font-size: clamp(18px, 2.6vw, 24px);
    line-height: 1.2;
    word-break: break-word;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
      "s1 s2"
      "s3 s3"
      "sb sb";
        row-gap: var(--row-gap-tablet);
        justify-items: stretch;
    }

    .step-card {
        height: 201px;
        padding: 18px 18px 22px;
    }

    .steps-bottom {
        grid-template-columns: auto auto;
        column-gap: var(--step-gap);
        justify-content: center;
        justify-items: center;
    }

    .steps-bottom .step-card {
        width: clamp(240px, 46vw, 320px);
    }

    .step-pin {
        top: -60px;
    !important;
    }

    .step-word {
        font-size: clamp(28px, 4vw, 42px);
    }

    .step-num {
        font-size: clamp(96px, 12vw, 140px);
        -webkit-text-stroke: 0px var(--white);
    }
}

@media (min-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-areas:
      "s1 s2 s3"
      "sb sb sb";
        column-gap: 20px;
        row-gap: var(--row-gap-desktop);
        justify-items: stretch;
    }

    .steps-bottom {
        grid-template-columns: auto auto;
        column-gap: var(--step-gap);
        justify-content: center;
    }

    .steps-bottom .step-card {
        width: clamp(260px, 44vw, var(--step-card-w));
    }

    .steps-title {
        font-size: 42px;
        margin-bottom: 140px;
    }

    .step-pin {
        top: -90px;
    }

    .step-word {
        font-size: 42px;
    }

    .step-num {
        font-size: 140px;
    }
}

@media (min-width: 1200px) {
    .steps-title {
        font-size: 48px;
        margin-bottom: 170px;
    }

    .step-pin {
        top: -150px;
    }

    .step-word {
        font-size: 48px;
    }

    .step-num {
        font-size: 180px;
        -webkit-text-stroke: 0px var(--white);
    }

    .steps-bottom .step-card {
        width: var(--step-card-w);
    }
}

@media (max-width: 568px) {
    .steps-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
      "s1"
      "s2"
      "s3"
      "sb";
        row-gap: 75px;
        justify-items: center;
    }

    .steps-bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        row-gap: 75px;
        column-gap: 0;
    }

    .steps-bottom .step-card,
    .steps-grid > .step-card {
        width: min(100%, 360px);
        height: auto;
        min-height: 112px;
        padding: 16px 14px;
    }

    .step-pin {
        top: -60px;

    }

    .steps-title {
        font-size: 26px;
        margin-bottom: 72px;
    }

    .step-word {
        font-size: 24px;
    }

    .step-num {
        font-size: 60px;
        -webkit-text-stroke: 0px var(--white);
    }

    .step-body {
        font-size: 18px;
        line-height: 1.35;
    }
}


.hero-input:focus{
    color:black;
}
.steps-maskan-modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background-color: #ffffff;
}

.steps-maskan-modal-header {
    border-bottom: none;
    padding: 25px 25px 10px 25px;
    display: flex;
    justify-content: center;
    position: relative;
}

.steps-maskan-modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a2b49;
    text-align: center;
    width: 100%;
}

.steps-maskan-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.steps-maskan-modal-close:hover {
    opacity: 1;
}

.steps-maskan-modal-body-wrap {
    padding: 10px 30px 40px 30px;
}

.steps-maskan-modal-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.modal.fade .modal-dialog {
    transform: scale(0.9);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}
