.irdm {
    --bg: #071224;
    --bg-soft: #0b1730;
    --bg-card: rgba(11, 24, 49, 0.85);
    --line: rgba(148, 163, 184, 0.16);
    --line-strong: rgba(56, 189, 248, 0.26);
    --text: #e5eefb;
    --muted: #9bb0cf;
    --white: #ffffff;
    --primary: #38bdf8;
    --primary-2: #60a5fa;
    --accent: #22d3ee;
    --success: #22c55e;
    --shadow: 0 28px 80px rgba(2, 8, 23, 0.45);
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 28%),
        radial-gradient(circle at 20% 0%, rgba(14, 165, 233, 0.16), transparent 24%),
        linear-gradient(180deg, #050d19 0%, #071224 38%, #081326 100%);
}

.irdm * { box-sizing: border-box; }
.irdm-container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.irdm-section { position: relative; padding: 96px 0; }
.irdm-section--alt { background: linear-gradient(180deg, rgba(8, 18, 36, 0.65), rgba(7, 18, 36, 0.9)); }
.irdm-section--dark { background: linear-gradient(180deg, #081122 0%, #060d18 100%); }
.irdm-section--request { padding-top: 72px; }

.irdm-heading { max-width: 850px; margin-bottom: 34px; }
.irdm-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.08);
    color: #8ad9ff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}
.irdm-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.18;
    color: var(--white);
}
.irdm-heading p { margin: 0; color: var(--muted); font-size: 1.03rem; line-height: 1.9; }
.irdm-heading--light span { background: rgba(255,255,255,0.06); color: #d5ecff; }

.irdm-kicker {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.24);
    color: #8be7f4;
    font-size: 0.88rem;
    font-weight: 700;
}

.irdm-hero {
    position: relative;
    overflow: clip;
    padding: 74px 0 72px;
    isolation: isolate;
    z-index: 0;
}
.irdm-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 32px;
    align-items: center;
}
.irdm-hero__content h1 {
    margin: 0 0 20px;
    font-size: clamp(2.35rem, 4vw, 4.45rem);
    line-height: 1.08;
    color: var(--white);
}
.irdm-hero__content h1 em {
    font-style: normal;
    color: #8be7f4;
    text-shadow: 0 0 40px rgba(56, 189, 248, 0.25);
}
.irdm-hero__content p {
    margin: 0;
    max-width: 690px;
    color: #bfd1ec;
    font-size: 1.07rem;
    line-height: 2;
}
.irdm-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.irdm-hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.irdm-hero__chips span,
.irdm-pulse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(7, 18, 36, 0.78);
    color: #d4e4f8;
    font-size: 0.88rem;
    font-weight: 700;
}
.irdm-pulse {
    background: rgba(34, 197, 94, 0.1);
    color: #9cf0bc;
    border-color: rgba(34, 197, 94, 0.2);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35);
    animation: irdmPulse 2.4s infinite;
}

.irdm-btn {
    appearance: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 18px;
    font-size: 0.98rem;
    font-weight: 800;
}
.irdm-btn:hover { transform: translateY(-2px); }
.irdm-btn--primary {
    color: #041422;
    background: linear-gradient(135deg, #7dd3fc, #38bdf8 56%, #22d3ee);
    box-shadow: 0 18px 46px rgba(56, 189, 248, 0.28);
}
.irdm-btn--ghost {
    color: var(--white);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.irdm-hero__lines {
    position: absolute;
    inset: -10% -5% auto;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.irdm-hero__lines span {
    position: absolute;
    left: -10%;
    right: -10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96,165,250,.32), transparent);
    animation: irdmLineMove 10s linear infinite;
}
.irdm-hero__lines span:nth-child(1) { top: 12%; animation-delay: 0s; }
.irdm-hero__lines span:nth-child(2) { top: 26%; animation-delay: 1.5s; }
.irdm-hero__lines span:nth-child(3) { top: 41%; animation-delay: 3s; }
.irdm-hero__lines span:nth-child(4) { top: 58%; animation-delay: 4.5s; }
.irdm-hero__lines span:nth-child(5) { top: 74%; animation-delay: 6s; }

.irdm-commandboard {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: linear-gradient(180deg, rgba(8, 17, 34, 0.92), rgba(10, 23, 45, 0.82));
    box-shadow: var(--shadow);
}
.irdm-commandboard::before,
.irdm-commandboard::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.24), transparent 70%);
    pointer-events: none;
}
.irdm-commandboard::before { width: 220px; height: 220px; top: -90px; left: -70px; }
.irdm-commandboard::after { width: 180px; height: 180px; bottom: -70px; right: -50px; }
.irdm-commandboard__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}
.irdm-commandboard__top small { display: block; color: #81d8ff; margin-bottom: 6px; font-size: 0.85rem; }
.irdm-commandboard__top strong { color: var(--white); font-size: 1.1rem; }

.irdm-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.irdm-metric-grid article,
.irdm-fact-card,
.irdm-stack-card,
.irdm-plan-card,
.irdm-faq-card,
.irdm-step,
.irdm-lane,
.irdm-request__notes article,
.irdm-estimate-box {
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(7, 16, 32, 0.72);
    box-shadow: 0 18px 42px rgba(2, 8, 23, 0.24);
}
.irdm-metric-grid article {
    position: relative;
    padding: 18px 18px 16px;
    border-radius: 22px;
    overflow: hidden;
}
.irdm-metric-grid article::after {
    content: "";
    position: absolute;
    inset: auto -20% -70% auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18), transparent 72%);
}
.irdm-metric-grid span { color: #86cfff; font-size: 0.82rem; font-weight: 700; }
.irdm-metric-grid strong { display: block; margin: 8px 0 5px; color: #fff; font-size: clamp(1.45rem, 2vw, 2rem); }
.irdm-metric-grid small { color: var(--muted); }

.irdm-commandboard__flow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 16px;
}
.irdm-commandboard__flow div,
.irdm-tab {
    cursor: pointer;
    transition: all .22s ease;
}
.irdm-commandboard__flow div {
    padding: 11px 14px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    color: #c3d4ea;
    background: rgba(255,255,255,0.03);
    font-weight: 700;
}
.irdm-commandboard__flow div:hover,
.irdm-commandboard__flow .is-active {
    color: #031320;
    background: linear-gradient(135deg, #8be7f4, #60a5fa);
    border-color: transparent;
}
.irdm-commandboard__story {
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(255,255,255,0.03);
}
.irdm-commandboard__story strong { display: block; margin-bottom: 8px; color: #fff; }
.irdm-commandboard__story p { margin: 0; color: var(--muted); line-height: 1.9; }

.irdm-stack-grid,
.irdm-facts-grid,
.irdm-faq-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.irdm-stack-card,
.irdm-fact-card,
.irdm-faq-card {
    padding: 22px;
    border-radius: 24px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.irdm-stack-card:hover,
.irdm-fact-card:hover,
.irdm-faq-card:hover,
.irdm-step:hover,
.irdm-plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 28px 60px rgba(2, 8, 23, 0.34);
}
.irdm-stack-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 54px;
    margin-bottom: 16px;
    padding: 0 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(96,165,250,.2), rgba(34,211,238,.2));
    color: #c8ecff;
    font-weight: 800;
    font-size: .88rem;
}
.irdm-stack-card h3,
.irdm-faq-card h3 { margin: 0 0 10px; color: #fff; font-size: 1.08rem; }
.irdm-stack-card p,
.irdm-faq-card p,
.irdm-fact-card small,
.irdm-lane p,
.irdm-step p,
.irdm-request__intro p,
.irdm-request__notes span,
.irdm-estimate-box small { margin: 0; color: var(--muted); line-height: 1.9; }
.irdm-fact-card span { display: block; margin-bottom: 10px; color: #89d5ff; font-weight: 700; }
.irdm-fact-card strong { display: block; color: #fff; font-size: 1.45rem; margin-bottom: 6px; }

.irdm-lanes {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 24px;
    align-items: stretch;
}
.irdm-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.irdm-tab {
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(255,255,255,0.03);
    color: #bfd1ec;
    font-weight: 700;
}
.irdm-tab:hover,
.irdm-tab.is-active {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(96,165,250,.92), rgba(34,211,238,.92));
    color: #031320;
    border-color: transparent;
}
.irdm-lanes__panel { display: grid; }
.irdm-lane {
    display: none;
    padding: 28px;
    border-radius: 28px;
}
.irdm-lane.is-active { display: block; }
.irdm-lane h3 { margin: 0 0 14px; color: #fff; font-size: clamp(1.35rem, 2vw, 2rem); }
.irdm-lane ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.irdm-lane li {
    position: relative;
    padding-right: 24px;
    color: #d9e7f8;
    line-height: 1.9;
}
.irdm-lane li::before {
    content: "";
    position: absolute;
    top: 11px;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8be7f4, #60a5fa);
    box-shadow: 0 0 0 5px rgba(96,165,250,.12);
}

.irdm-plan-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}
.irdm-plan-card {
    position: relative;
    padding: 24px 22px 22px;
    border-radius: 28px;
}
.irdm-plan-card.is-featured {
    background: linear-gradient(180deg, rgba(56,189,248,.14), rgba(7, 16, 32, 0.92));
    border-color: rgba(56, 189, 248, 0.28);
}
.irdm-plan-card__badge {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7dd3fc, #22d3ee);
    color: #031320;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 14px;
}
.irdm-plan-card h3 { margin: 0 0 12px; color: #fff; font-size: 1.12rem; }
.irdm-plan-card__price { margin-bottom: 18px; }
.irdm-plan-card__price strong { display: block; color: #fff; font-size: 1.6rem; }
.irdm-plan-card__price span { color: #9dc5ea; font-size: 0.9rem; }
.irdm-plan-card ul { margin: 0 0 22px; padding: 0; list-style: none; display: grid; gap: 10px; }
.irdm-plan-card li { position: relative; padding-right: 20px; color: #d8e7f8; line-height: 1.75; }
.irdm-plan-card li::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #68d9ff;
}
.irdm-plan-card__select {
    width: 100%;
    min-height: 50px;
    border: none;
    border-radius: 16px;
    color: #081326;
    background: linear-gradient(135deg, #d4f5ff, #6fd3ff);
    font-weight: 800;
    cursor: pointer;
    transition: transform .22s ease, opacity .22s ease;
}
.irdm-plan-card__select:hover { transform: translateY(-2px); opacity: .95; }

.irdm-roadmap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.irdm-step {
    position: relative;
    padding: 28px;
    border-radius: 26px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.irdm-step.is-active { border-color: rgba(56, 189, 248, 0.32); }
.irdm-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(96,165,250,.22), rgba(34,211,238,.22));
    color: #d5f4ff;
    font-weight: 800;
}
.irdm-step h3 { margin: 0 0 10px; color: #fff; font-size: 1.12rem; }

.irdm-request {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 26px;
    align-items: start;
}
.irdm-request__notes,
.irdm-request__formcard { display: grid; gap: 16px; }
.irdm-request__notes article,
.irdm-estimate-box,
.irdm-request__formcard {
    padding: 22px;
    border-radius: 24px;
}
.irdm-request__notes article { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.irdm-request__notes strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(96,165,250,.22), rgba(34,211,238,.22));
    color: #d6f2ff;
}
.irdm-estimate-box span { display: block; color: #86cfff; font-weight: 700; margin-bottom: 8px; }
.irdm-estimate-box strong { display: block; color: #fff; font-size: 1.6rem; margin-bottom: 8px; }

.irdm-form {
    padding: 26px;
    border-radius: 28px;
    background: rgba(8, 17, 34, 0.92);
    border: 1px solid rgba(148,163,184,0.14);
    box-shadow: var(--shadow);
}
.irdm-honeypot { position: absolute !important; left: -9999px !important; }
.irdm-form__steps { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 22px; }
.irdm-form__steps button {
    min-height: 46px;
    border: 1px solid rgba(148,163,184,0.14);
    background: rgba(255,255,255,0.02);
    color: #9fb6d5;
    border-radius: 14px;
    font-weight: 700;
}
.irdm-form__steps button.is-active { color: #061321; background: linear-gradient(135deg, #9be7ff, #60a5fa); }
.irdm-form__bar {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    display: block;
    height: 4px;
    border-radius: 999px;
    background: rgba(148,163,184,0.16);
    overflow: hidden;
}
.irdm-form__bar i {
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #8be7f4, #60a5fa);
    border-radius: inherit;
    transition: width .24s ease;
}
.irdm-panel { display: none; }
.irdm-panel.is-active { display: block; }
.irdm-field-grid { display: grid; gap: 18px; }
.irdm-field-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.irdm-field--full { grid-column: 1 / -1; }
.irdm-field { display: grid; gap: 10px; }
.irdm-field span,
.irdm-check span { color: #e6effc; font-weight: 700; }
.irdm-field input,
.irdm-field select,
.irdm-field textarea {
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(148,163,184,0.18);
    background: rgba(255,255,255,0.03);
    color: #fff;
    font: inherit;
    outline: none;
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.irdm-field textarea { min-height: 162px; resize: vertical; }
.irdm-field input:focus,
.irdm-field select:focus,
.irdm-field textarea:focus {
    border-color: rgba(56,189,248,0.42);
    box-shadow: 0 0 0 4px rgba(56,189,248,0.12);
    background: rgba(255,255,255,0.045);
}
.irdm-field select option { color: #0f172a; }
.irdm-field small,
.irdm-form__status { min-height: 22px; font-size: 0.88rem; }
.irdm-field small { color: #fca5a5; }
.irdm-form__actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 20px; }
.irdm-form__actions--split { justify-content: space-between; align-items: center; }
.irdm-check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    margin-top: 18px;
    align-items: start;
}
.irdm-check input { margin-top: 4px; }
.irdm-form__status { margin-top: 8px; }
.irdm-form__status.is-success { color: #9cf0bc; }
.irdm-form__status.is-error { color: #fca5a5; }

.irdm-session-debug {
    padding: 18px;
    border-radius: 20px;
    background: rgba(7, 16, 32, 0.78);
    border: 1px dashed rgba(56,189,248,0.24);
}
.irdm-session-debug strong { display: block; margin-bottom: 10px; color: #91dbff; }
.irdm-session-debug pre {
    margin: 0;
    overflow: auto;
    max-height: 320px;
    white-space: pre-wrap;
    color: #d6e7fa;
    font-size: .82rem;
    line-height: 1.8;
}

@keyframes irdmLineMove {
    0% { transform: translateX(-14%); opacity: 0; }
    10%, 80% { opacity: 1; }
    100% { transform: translateX(14%); opacity: 0; }
}
@keyframes irdmPulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.38); }
    70% { box-shadow: 0 0 0 14px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 1180px) {
    .irdm-plan-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .irdm-stack-grid,
    .irdm-facts-grid,
    .irdm-faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
    .irdm-hero__layout,
    .irdm-lanes,
    .irdm-request { grid-template-columns: 1fr; }
    .irdm-roadmap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .irdm-plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
    .irdm-section { padding: 72px 0; }
    .irdm-hero { padding-top: 48px; }
    .irdm-field-grid--two,
    .irdm-roadmap,
    .irdm-stack-grid,
    .irdm-facts-grid,
    .irdm-faq-grid,
    .irdm-plan-grid,
    .irdm-metric-grid { grid-template-columns: 1fr; }
    .irdm-form,
    .irdm-commandboard,
    .irdm-stack-card,
    .irdm-plan-card,
    .irdm-step,
    .irdm-lane,
    .irdm-request__notes article,
    .irdm-estimate-box,
    .irdm-fact-card,
    .irdm-faq-card { padding: 20px; }
    .irdm-form__steps { grid-template-columns: 1fr; }
    .irdm-form__actions,
    .irdm-form__actions--split,
    .irdm-hero__actions { flex-direction: column; }
    .irdm-btn,
    .irdm-plan-card__select { width: 100%; }
}


/* IranNet Digital Marketing Growth Engine V1.1 */

.irdm-why {
    background:
        radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.09), transparent 28%),
        linear-gradient(180deg, rgba(6, 14, 28, 0.96), rgba(8, 18, 36, 0.96));
}
.irdm-why__header,
.irdm-lifecycle__layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: end;
}
.irdm-why__header span,
.irdm-lifecycle__intro > span,
.irdm-request__intro > span {
    display: inline-flex;
    margin-bottom: 15px;
    color: #8cddff;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.irdm-why__header h2,
.irdm-lifecycle__intro h2,
.irdm-strategy .irdm-heading h2,
.irdm-deliverables .irdm-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.2;
}
.irdm-why__header > p,
.irdm-lifecycle__intro > p {
    margin: 0;
    color: var(--muted);
    line-height: 2;
}
.irdm-why__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}
.irdm-why-card,
.irdm-channel-card,
.irdm-strategy-card,
.irdm-deliverables__grid article,
.irdm-growth-stage {
    border: 1px solid rgba(148, 163, 184, .14);
    background: linear-gradient(180deg, rgba(13, 31, 58, .86), rgba(6, 17, 33, .9));
    box-shadow: 0 20px 55px rgba(0, 0, 0, .2);
}
.irdm-why-card {
    padding: 24px;
    border-radius: 24px;
}
.irdm-why-card > span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #92e9ff;
    background: rgba(56, 189, 248, .08);
    font-size: .74rem;
    font-weight: 900;
}
.irdm-why-card h3,
.irdm-channel-card h3,
.irdm-strategy-card h3,
.irdm-deliverables__grid h3 {
    margin: 0 0 10px;
    color: #fff;
}
.irdm-why-card p,
.irdm-channel-card p,
.irdm-strategy-card p,
.irdm-deliverables__grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
}
.irdm-before-after {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}
.irdm-before-after article {
    padding: 26px;
    border-radius: 26px;
    border: 1px solid rgba(248, 113, 113, .18);
    background: linear-gradient(180deg, rgba(81, 22, 35, .2), rgba(7, 17, 33, .92));
}
.irdm-before-after article.is-system {
    border-color: rgba(34, 211, 238, .23);
    background: linear-gradient(180deg, rgba(8, 74, 92, .23), rgba(7, 17, 33, .92));
}
.irdm-before-after small {
    color: #f9a8b8;
    font-weight: 800;
}
.irdm-before-after .is-system small {
    color: #8ff2e2;
}
.irdm-before-after h3 {
    margin: 12px 0 16px;
    color: #fff;
}
.irdm-before-after ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.irdm-before-after li {
    position: relative;
    padding-right: 20px;
    color: #cbd9eb;
}
.irdm-before-after li::before {
    content: "";
    position: absolute;
    right: 0;
    top: .65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fb7185;
}
.irdm-before-after .is-system li::before {
    background: #5eead4;
}

.irdm-section--channels {
    background:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px),
        #071326;
    background-size: 46px 46px;
}
.irdm-channel-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.irdm-channel-card {
    min-height: 220px;
    padding: 22px;
    border-radius: 22px;
    transition: transform .24s ease, border-color .24s ease;
}
.irdm-channel-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, .3);
}
.irdm-channel-card > span {
    display: inline-flex;
    margin-bottom: 16px;
    color: #7bdcff;
    font-size: .77rem;
    font-weight: 800;
}

.irdm-lifecycle {
    background:
        radial-gradient(circle at 88% 12%, rgba(59, 130, 246, .12), transparent 30%),
        linear-gradient(180deg, #08172d, #071326);
}
.irdm-lifecycle__layout {
    align-items: stretch;
}
.irdm-lifecycle__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.irdm-lifecycle__tabs button {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, .16);
    background: rgba(255, 255, 255, .03);
    color: #bdd0e9;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
.irdm-lifecycle__tabs button.is-active {
    color: #041522;
    background: linear-gradient(135deg, #8be7f4, #60a5fa);
    border-color: transparent;
}
.irdm-lifecycle__panels {
    display: grid;
}
.irdm-growth-stage {
    display: none;
    padding: 30px;
    border-radius: 30px;
}
.irdm-growth-stage.is-active {
    display: block;
    animation: irdmStageIn .25s ease;
}
.irdm-growth-stage > span {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    color: #8fe7f7;
    background: rgba(34, 211, 238, .08);
    font-size: .8rem;
    font-weight: 800;
}
.irdm-growth-stage h3 {
    margin: 18px 0 12px;
    color: #fff;
    font-size: clamp(1.5rem, 2.3vw, 2.35rem);
}
.irdm-growth-stage p {
    margin: 0;
    color: var(--muted);
    line-height: 2;
}
.irdm-growth-stage > div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.irdm-growth-stage strong {
    padding: 10px 12px;
    border-radius: 12px;
    color: #dbeafe;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(148,163,184,.13);
    font-size: .85rem;
}

.irdm-strategy {
    background:
        radial-gradient(circle at 12% 18%, rgba(34, 211, 238, .08), transparent 28%),
        #071326;
}
.irdm-strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}
.irdm-strategy-card {
    padding: 23px;
    border-radius: 23px;
}
.irdm-strategy-card > span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 14px;
    color: #051522;
    background: linear-gradient(135deg, #8be7f4, #60a5fa);
    font-weight: 900;
}
.irdm-objective-cascade {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    margin-top: 22px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(56, 189, 248, .17);
    background: rgba(7, 17, 33, .82);
}
.irdm-objective-cascade article {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.035);
}
.irdm-objective-cascade small {
    display: block;
    margin-bottom: 7px;
    color: #81d8ff;
    font-weight: 800;
}
.irdm-objective-cascade strong {
    color: #fff;
    line-height: 1.7;
}
.irdm-objective-cascade i {
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #22d3ee);
}

.irdm-deliverables {
    background: linear-gradient(180deg, #08172d, #071326);
}
.irdm-deliverables__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.irdm-deliverables__grid article {
    padding: 24px;
    border-radius: 24px;
}
.irdm-command-center {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 24px;
    align-items: center;
    margin-top: 22px;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(34, 211, 238, .22);
    background:
        radial-gradient(circle at 90% 15%, rgba(34, 211, 238, .17), transparent 30%),
        linear-gradient(180deg, rgba(13, 31, 58, .92), rgba(6, 17, 33, .94));
}
.irdm-command-center > div > span {
    color: #8fe7f7;
    font-weight: 800;
}
.irdm-command-center h3 {
    margin: 12px 0;
    color: #fff;
    font-size: clamp(1.45rem, 2vw, 2.2rem);
}
.irdm-command-center p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
}
.irdm-command-center__signals {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.irdm-command-center__signals article {
    padding: 18px 12px;
    border-radius: 18px;
    text-align: center;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(148,163,184,.13);
}
.irdm-command-center__signals strong,
.irdm-command-center__signals span {
    display: block;
}
.irdm-command-center__signals strong {
    color: #8fe7f7;
}
.irdm-command-center__signals span {
    margin-top: 6px;
    color: #d6e4f4;
    font-size: .83rem;
}

@keyframes irdmStageIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
    .irdm-why__grid,
    .irdm-channel-grid,
    .irdm-strategy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .irdm-objective-cascade {
        grid-template-columns: 1fr;
    }
    .irdm-objective-cascade i {
        width: 2px;
        height: 20px;
        margin-inline: auto;
    }
}

@media (max-width: 820px) {
    .irdm-why__header,
    .irdm-lifecycle__layout,
    .irdm-command-center {
        grid-template-columns: 1fr;
    }
    .irdm-deliverables__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .irdm-why__grid,
    .irdm-before-after,
    .irdm-channel-grid,
    .irdm-strategy-grid,
    .irdm-deliverables__grid,
    .irdm-command-center__signals {
        grid-template-columns: 1fr;
    }
}

/* End IranNet Digital Marketing Growth Engine V1.1 */


/* ==========================================================================
   IranNet Digital Marketing Visual System V1.2
   Mixed light/dark rhythm aligned with IranNet service pages.
   ========================================================================== */

.irdm-page {
    background: #fff;
}

.irdm {
    --irdm-ink: #101a31;
    --irdm-muted-light: #627089;
    --irdm-line-light: #e1e8f2;
    --irdm-blue: #4c6ff4;
    --irdm-blue-2: #5d8dff;
    --irdm-green: #55d7aa;
    --irdm-soft: #f5f8fd;
    --irdm-dark: #071225;
    --irdm-dark-2: #0b1933;
    color: var(--irdm-ink);
    background: #fff;
    overflow: clip;
}

.irdm svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.irdm-scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20000;
    height: 3px;
    pointer-events: none;
}

.irdm-scroll-progress i {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: right center;
    background: linear-gradient(90deg, var(--irdm-blue), var(--irdm-green));
    box-shadow: 0 0 16px rgb(76 111 244 / 32%);
}

/* Hero */
.irdm-hero.irdm-hero--v2 {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 84px 0 34px;
    color: var(--irdm-ink);
    background:
        radial-gradient(circle at 10% 12%, rgb(93 141 255 / 17%), transparent 25%),
        radial-gradient(circle at 88% 15%, rgb(85 215 170 / 18%), transparent 24%),
        linear-gradient(145deg, #ffffff, #f4f8ff 58%, #effbf7);
}

.irdm-hero__grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: .58;
    background-image:
        linear-gradient(rgb(75 108 180 / 7%) 1px, transparent 1px),
        linear-gradient(90deg, rgb(75 108 180 / 7%) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, #000 0 72%, transparent);
}

.irdm-hero__aurora {
    position: absolute;
    z-index: -2;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(1px);
    opacity: .65;
    animation: irdmAurora 12s ease-in-out infinite;
}

.irdm-hero__aurora--1 {
    top: -310px;
    right: 24%;
    background: radial-gradient(circle, rgb(76 111 244 / 25%), transparent 68%);
}

.irdm-hero__aurora--2 {
    right: -260px;
    bottom: -300px;
    background: radial-gradient(circle, rgb(85 215 170 / 30%), transparent 68%);
    animation-delay: -5s;
}

.irdm-hero__particles i {
    position: absolute;
    z-index: -1;
    width: 9px;
    height: 9px;
    border: 2px solid rgb(76 111 244 / 24%);
    border-radius: 50%;
    animation: irdmParticleFloat 8s ease-in-out infinite;
}

.irdm-hero__particles i:nth-child(1) { top: 16%; right: 5%; }
.irdm-hero__particles i:nth-child(2) { top: 26%; left: 7%; animation-delay: -2s; }
.irdm-hero__particles i:nth-child(3) { top: 70%; right: 43%; animation-delay: -4s; }
.irdm-hero__particles i:nth-child(4) { bottom: 18%; left: 4%; animation-delay: -1s; }
.irdm-hero__particles i:nth-child(5) { top: 8%; left: 37%; animation-delay: -6s; }
.irdm-hero__particles i:nth-child(6) { bottom: 28%; right: 8%; animation-delay: -3s; }

.irdm-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
    gap: 64px;
    align-items: center;
}

.irdm-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 9px 14px;
    color: #2553cf;
    background: rgb(76 111 244 / 8%);
    border: 1px solid rgb(76 111 244 / 15%);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .04em;
}

.irdm-kicker i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--irdm-green);
    box-shadow: 0 0 0 6px rgb(85 215 170 / 13%), 0 0 18px rgb(85 215 170 / 42%);
}

.irdm-hero__content h1 {
    max-width: 790px;
    margin: 23px 0 0;
    color: var(--irdm-ink);
    font-size: clamp(45px, 5.5vw, 76px);
    line-height: 1.22;
    letter-spacing: -.055em;
    font-weight: 950;
}

.irdm-hero__content h1 em {
    display: block;
    color: var(--irdm-blue);
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: none;
}

.irdm-hero__content > p {
    max-width: 750px;
    margin: 24px 0 0;
    color: var(--irdm-muted-light);
    font-size: 13px;
    line-height: 2.1;
}

.irdm-hero__actions {
    margin-top: 30px;
}

.irdm-btn {
    border-radius: 15px;
    font-size: 10px;
    font-weight: 950;
    will-change: transform;
}

.irdm-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--irdm-blue), #5d8dff);
    box-shadow: 0 18px 42px rgb(76 111 244 / 24%);
}

.irdm-btn--primary svg,
.irdm-btn--secondary svg {
    width: 18px;
    height: 18px;
}

.irdm-btn--secondary {
    color: #1d3157;
    background: rgb(255 255 255 / 76%);
    border: 1px solid #dce5f1;
    box-shadow: 0 12px 28px rgb(31 56 105 / 7%);
    backdrop-filter: blur(12px);
}

.irdm-hero__proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.irdm-hero__proof article {
    padding: 15px;
    border: 1px solid #e0e8f2;
    border-radius: 16px;
    background: rgb(255 255 255 / 68%);
    box-shadow: 0 12px 32px rgb(38 65 117 / 5%);
    backdrop-filter: blur(10px);
}

.irdm-hero__proof strong,
.irdm-hero__proof span {
    display: block;
}

.irdm-hero__proof strong {
    color: #20365d;
    font-size: 9px;
    font-weight: 950;
}

.irdm-hero__proof span {
    margin-top: 6px;
    color: #74829a;
    font-size: 7px;
    line-height: 1.8;
}

.irdm-growth-visual {
    position: relative;
    min-height: 630px;
    overflow: hidden;
    border: 1px solid rgb(76 111 244 / 13%);
    border-radius: 34px;
    background:
        radial-gradient(circle at 85% 8%, rgb(85 215 170 / 23%), transparent 28%),
        radial-gradient(circle at 15% 80%, rgb(76 111 244 / 18%), transparent 30%),
        linear-gradient(160deg, rgb(255 255 255 / 92%), rgb(244 248 255 / 92%));
    box-shadow: 0 38px 90px rgb(31 61 119 / 14%);
    transform:
        perspective(1200px)
        rotateX(calc(var(--pointer-y, 0) * -1.5deg))
        rotateY(calc(var(--pointer-x, 0) * 1.8deg));
    transform-style: preserve-3d;
    transition: transform .22s ease-out;
}

.irdm-growth-visual__chrome {
    display: flex;
    min-height: 51px;
    align-items: center;
    gap: 9px;
    padding: 0 18px;
    border-bottom: 1px solid #e5ebf4;
    background: rgb(255 255 255 / 70%);
    backdrop-filter: blur(14px);
}

.irdm-growth-visual__chrome > span {
    display: flex;
    gap: 6px;
}

.irdm-growth-visual__chrome i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff7f79;
}

.irdm-growth-visual__chrome i:nth-child(2) { background: #f6c65d; }
.irdm-growth-visual__chrome i:nth-child(3) { background: #62d49b; }

.irdm-growth-visual__chrome code {
    color: #8290a6;
    font-size: 7px;
}

.irdm-growth-visual__chrome b {
    margin-right: auto;
    border-radius: 999px;
    padding: 7px 10px;
    color: #1f7b5b;
    background: rgb(85 215 170 / 14%);
    font-size: 7px;
    font-weight: 950;
}

.irdm-growth-visual__stage {
    position: relative;
    min-height: 579px;
}

.irdm-growth-orbit {
    position: absolute;
    top: 54px;
    right: 50%;
    width: 310px;
    height: 310px;
    transform: translateX(50%);
}

.irdm-growth-orbit__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgb(76 111 244 / 22%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.irdm-growth-orbit__ring--1 {
    width: 214px;
    height: 214px;
    animation: irdmSpin 20s linear infinite;
}

.irdm-growth-orbit__ring--2 {
    width: 298px;
    height: 298px;
    animation: irdmSpin 31s linear infinite reverse;
}

.irdm-growth-orbit__core {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 126px;
    height: 126px;
    place-items: center;
    border: 1px solid rgb(76 111 244 / 18%);
    border-radius: 38px;
    background: linear-gradient(145deg, #ffffff, #eef4ff);
    box-shadow:
        0 28px 55px rgb(76 111 244 / 16%),
        inset 0 0 0 8px rgb(76 111 244 / 4%);
    transform: translate(-50%, -50%) rotate(45deg);
}

.irdm-growth-orbit__core small,
.irdm-growth-orbit__core strong {
    transform: rotate(-45deg);
}

.irdm-growth-orbit__core small {
    margin-top: 22px;
    color: #8190a6;
    font-size: 7px;
}

.irdm-growth-orbit__core strong {
    margin-top: -31px;
    color: var(--irdm-blue);
    font-size: 17px;
    transition: opacity .18s, transform .18s;
}

.irdm-growth-orbit__core strong.is-changing,
.irdm-growth-chart__header strong.is-changing {
    opacity: 0;
    transform: translateY(5px) rotate(-45deg);
}

.irdm-growth-chart__header strong.is-changing {
    transform: translateY(5px);
}

.irdm-growth-node {
    position: absolute;
    display: grid;
    min-width: 62px;
    height: 42px;
    place-items: center;
    border: 1px solid #dde6f2;
    border-radius: 13px;
    color: #395076;
    background: rgb(255 255 255 / 88%);
    box-shadow: 0 12px 25px rgb(31 58 105 / 9%);
    font-size: 7px;
    font-weight: 950;
    animation: irdmNodeFloat 5.2s ease-in-out infinite;
}

.irdm-growth-node--seo { top: 2px; right: 50%; transform: translateX(50%); }
.irdm-growth-node--ads { top: 77px; right: 1px; animation-delay: -.8s; }
.irdm-growth-node--crm { right: 25px; bottom: 29px; animation-delay: -1.6s; }
.irdm-growth-node--email { bottom: 3px; right: 50%; transform: translateX(50%); animation-delay: -2.4s; }
.irdm-growth-node--sms { bottom: 29px; left: 25px; animation-delay: -3.2s; }
.irdm-growth-node--web { top: 77px; left: 1px; animation-delay: -4s; }

.irdm-growth-chart {
    position: absolute;
    right: 28px;
    bottom: 26px;
    left: 28px;
    overflow: hidden;
    border: 1px solid #e0e8f2;
    border-radius: 24px;
    padding: 18px;
    background: rgb(255 255 255 / 86%);
    box-shadow: 0 24px 50px rgb(31 59 111 / 10%);
    backdrop-filter: blur(14px);
}

.irdm-growth-chart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.irdm-growth-chart__header span {
    display: block;
    color: #8b98aa;
    font-size: 7px;
}

.irdm-growth-chart__header strong {
    display: block;
    margin-top: 5px;
    color: #263b5f;
    font-size: 9px;
    transition: opacity .18s, transform .18s;
}

.irdm-growth-chart__header em {
    color: #248963;
    font-size: 15px;
    font-style: normal;
    font-weight: 950;
}

.irdm-growth-chart svg {
    display: block;
    width: 100%;
    height: 125px;
    margin-top: 8px;
}

.irdm-growth-chart__gridline {
    fill: none;
    stroke: #e8edf4;
    stroke-width: 1;
}

.irdm-growth-chart__area {
    fill: url(#irdmChartFill);
    stroke: none;
}

.irdm-growth-chart__line {
    fill: none;
    stroke: url(#irdmChartLine);
    stroke-width: 5;
    stroke-dasharray: 620;
    stroke-dashoffset: 620;
    filter: drop-shadow(0 6px 6px rgb(76 111 244 / 18%));
    transition: stroke-dashoffset 1.5s cubic-bezier(.2,.8,.2,1);
}

.irdm-growth-chart__line.is-drawn {
    stroke-dashoffset: 0;
}

.irdm-growth-chart__dot {
    fill: var(--irdm-green);
    stroke: #fff;
    stroke-width: 4;
    animation: irdmDotPulse 2s infinite;
}

.irdm-growth-chart__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.irdm-growth-chart__legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #7c899d;
    font-size: 6px;
}

.irdm-growth-chart__legend i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--irdm-blue);
}

.irdm-growth-chart__legend span:nth-child(2) i { background: #78a3ff; }
.irdm-growth-chart__legend span:nth-child(3) i { background: var(--irdm-green); }

.irdm-float-card {
    position: absolute;
    z-index: 4;
    display: grid;
    gap: 5px;
    border: 1px solid #dfe7f1;
    border-radius: 17px;
    padding: 13px 15px;
    background: rgb(255 255 255 / 88%);
    box-shadow: 0 18px 38px rgb(31 58 106 / 13%);
    backdrop-filter: blur(12px);
    will-change: transform;
    transition: transform .18s ease-out;
}

.irdm-float-card span {
    color: #8a97a9;
    font-size: 6px;
}

.irdm-float-card strong {
    color: #21385d;
    font-size: 9px;
}

.irdm-float-card small {
    color: #77859a;
    font-size: 6px;
}

.irdm-float-card--lead { top: 93px; right: 14px; }
.irdm-float-card--automation { top: 204px; left: 11px; }
.irdm-float-card--roi { top: 327px; right: 20px; }

.irdm-channel-marquee {
    overflow: hidden;
    margin-top: 48px;
    border-block: 1px solid rgb(76 111 244 / 10%);
    padding: 15px 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.irdm-channel-marquee > div {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 16px;
    animation: irdmMarquee 27s linear infinite;
}

.irdm-channel-marquee span {
    color: #5e6f88;
    font-size: 8px;
    font-weight: 900;
    white-space: nowrap;
}

.irdm-channel-marquee i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--irdm-blue), var(--irdm-green));
}

/* Light/dark section rhythm */
.irdm-surface {
    color: var(--irdm-ink);
}

.irdm-surface--white {
    background: #fff;
}

.irdm-surface--soft {
    background:
        radial-gradient(circle at 85% 10%, rgb(76 111 244 / 7%), transparent 25%),
        var(--irdm-soft);
}

.irdm-surface--dark,
.irdm-section--dark {
    color: #fff;
    background:
        radial-gradient(circle at 14% 18%, rgb(76 111 244 / 21%), transparent 28%),
        radial-gradient(circle at 87% 82%, rgb(85 215 170 / 10%), transparent 24%),
        linear-gradient(145deg, var(--irdm-dark), var(--irdm-dark-2));
}

.irdm-heading {
    max-width: 850px;
}

.irdm-heading span,
.irdm-why__header span,
.irdm-lifecycle__intro > span,
.irdm-request__intro > span {
    color: #315ed3;
    background: rgb(76 111 244 / 7%);
    border-color: rgb(76 111 244 / 12%);
}

.irdm-heading h2,
.irdm-why__header h2,
.irdm-lifecycle__intro h2,
.irdm-strategy .irdm-heading h2,
.irdm-deliverables .irdm-heading h2 {
    color: var(--irdm-ink);
}

.irdm-heading p,
.irdm-why__header > p,
.irdm-lifecycle__intro > p,
.irdm-stack-card p,
.irdm-channel-card p,
.irdm-strategy-card p,
.irdm-deliverables__grid p,
.irdm-step p,
.irdm-faq-card p {
    color: var(--irdm-muted-light);
}

.irdm-surface--dark .irdm-heading span,
.irdm-section--dark .irdm-heading span,
.irdm-action-ribbon span {
    color: #79e8ba;
    background: transparent;
    border-color: transparent;
}

.irdm-surface--dark .irdm-heading h2,
.irdm-section--dark .irdm-heading h2,
.irdm-surface--dark .irdm-lanes__intro h2 {
    color: #fff;
}

.irdm-surface--dark .irdm-heading p,
.irdm-section--dark .irdm-heading p,
.irdm-surface--dark .irdm-lanes__intro p {
    color: #aebbd2;
}

.irdm-stack-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.irdm-stack-card,
.irdm-channel-card,
.irdm-why-card,
.irdm-fact-card,
.irdm-strategy-card,
.irdm-step,
.irdm-deliverables__grid article,
.irdm-faq-card {
    border-color: var(--irdm-line-light);
    background: #fff;
    box-shadow: 0 17px 48px rgb(29 54 112 / 6%);
}

.irdm-stack-card h3,
.irdm-channel-card h3,
.irdm-why-card h3,
.irdm-fact-card strong,
.irdm-strategy-card h3,
.irdm-step h3,
.irdm-deliverables__grid h3,
.irdm-faq-card h3 {
    color: var(--irdm-ink);
}

.irdm-stack-card__icon {
    color: #315ed3;
    background: linear-gradient(135deg, #edf2ff, #eafbf5);
}

.irdm-channel-card {
    min-height: 205px;
}

.irdm-before-after article {
    border-color: #efdfdf;
    background: linear-gradient(180deg, #fff8f8, #fff);
    box-shadow: 0 17px 45px rgb(108 45 59 / 5%);
}

.irdm-before-after article.is-system {
    border-color: #d8eee7;
    background: linear-gradient(180deg, #f2fcf8, #fff);
}

.irdm-before-after h3,
.irdm-before-after li {
    color: var(--irdm-ink);
}

.irdm-lanes-section .irdm-tab {
    color: #a9b6ca;
    background: rgb(255 255 255 / 4%);
    border-color: rgb(150 170 214 / 15%);
}

.irdm-lanes-section .irdm-tab.is-active {
    color: #071f18;
    background: linear-gradient(135deg, #7aebb9, #4fd3ba);
}

.irdm-lanes-section .irdm-lane {
    border-color: rgb(142 162 213 / 16%);
    background:
        radial-gradient(circle at 100% 0, rgb(76 111 244 / 19%), transparent 38%),
        rgb(255 255 255 / 4%);
    box-shadow: 0 30px 70px rgb(0 0 0 / 18%);
}

.irdm-lanes-section .irdm-lane h3,
.irdm-lanes-section .irdm-lane li {
    color: #fff;
}

.irdm-lanes-section .irdm-lane p {
    color: #aebbd2;
}

.irdm-lifecycle {
    background: var(--irdm-soft);
}

.irdm-growth-stage {
    border-color: var(--irdm-line-light);
    background:
        radial-gradient(circle at 90% 10%, rgb(85 215 170 / 11%), transparent 28%),
        #fff;
    box-shadow: 0 22px 55px rgb(29 54 112 / 8%);
}

.irdm-growth-stage h3 {
    color: var(--irdm-ink);
}

.irdm-growth-stage p {
    color: var(--irdm-muted-light);
}

.irdm-growth-stage strong {
    color: #344d73;
    background: #f5f8fd;
    border-color: #e1e8f2;
}

.irdm-lifecycle__tabs button {
    color: #53657e;
    background: #fff;
    border-color: #dfe7f1;
}

.irdm-lifecycle__tabs button.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--irdm-blue), #648fff);
}

.irdm-objective-cascade {
    border-color: #dfe7f1;
    background: #fff;
    box-shadow: 0 22px 58px rgb(29 54 112 / 7%);
}

.irdm-objective-cascade article {
    background: #f6f8fc;
}

.irdm-objective-cascade strong {
    color: var(--irdm-ink);
}

.irdm-plan-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.irdm-plan-card {
    border-color: rgb(151 171 218 / 16%);
    background: rgb(255 255 255 / 5%);
}

.irdm-plan-card.is-featured {
    border-color: rgb(104 143 255 / 42%);
    background:
        radial-gradient(circle at 100% 0, rgb(76 111 244 / 25%), transparent 40%),
        rgb(255 255 255 / 7%);
    transform: translateY(-8px);
}

.irdm-plan-card__select {
    color: #fff;
    background: linear-gradient(135deg, var(--irdm-blue), #5f8dff);
}

.irdm-command-center {
    border-color: #dfe7f1;
    background:
        radial-gradient(circle at 90% 15%, rgb(85 215 170 / 10%), transparent 30%),
        #fff;
    box-shadow: 0 24px 60px rgb(29 54 112 / 8%);
}

.irdm-command-center h3 {
    color: var(--irdm-ink);
}

.irdm-command-center p {
    color: var(--irdm-muted-light);
}

.irdm-command-center__signals article {
    background: #f5f8fd;
    border-color: #e1e8f2;
}

.irdm-command-center__signals span {
    color: #66758a;
}

/* CTA ribbons */
.irdm-action-ribbon {
    position: relative;
    overflow: hidden;
    padding: 34px 0;
}

.irdm-action-ribbon::before,
.irdm-action-ribbon::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.irdm-action-ribbon::before {
    top: -120px;
    right: 12%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgb(255 255 255 / 15%), transparent 68%);
}

.irdm-action-ribbon::after {
    bottom: -160px;
    left: 8%;
    width: 330px;
    height: 330px;
    background: radial-gradient(circle, rgb(85 215 170 / 18%), transparent 68%);
}

.irdm-action-ribbon--blue {
    color: #fff;
    background: linear-gradient(135deg, #395dd6, #4f7cff 55%, #2f94ce);
}

.irdm-action-ribbon--gradient {
    color: #fff;
    background: linear-gradient(135deg, #071225, #112b50 55%, #0a5f5f);
}

.irdm-action-ribbon__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.irdm-action-ribbon h2 {
    margin: 7px 0;
    color: #fff;
    font-size: clamp(25px, 3vw, 40px);
    line-height: 1.35;
}

.irdm-action-ribbon p {
    margin: 0;
    color: rgb(255 255 255 / 72%);
    font-size: 9px;
}

.irdm-ribbon-cta {
    display: inline-flex;
    min-width: 225px;
    min-height: 60px;
    align-items: center;
    justify-content: space-between;
    gap: 17px;
    border-radius: 18px;
    padding: 0 19px;
    color: #1f3760;
    background: #fff;
    box-shadow: 0 18px 45px rgb(0 0 0 / 17%);
    font-size: 9px;
    font-weight: 950;
    text-decoration: none;
    will-change: transform;
}

.irdm-ribbon-cta.is-light {
    color: #071f18;
    background: linear-gradient(135deg, #86edc2, #53dbb1);
}

.irdm-ribbon-cta i {
    position: relative;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: rgb(76 111 244 / 10%);
}

.irdm-ribbon-cta i::before,
.irdm-ribbon-cta i::after {
    position: absolute;
    content: "";
}

.irdm-ribbon-cta i::before {
    top: 16px;
    left: 8px;
    width: 17px;
    height: 2px;
    background: currentcolor;
}

.irdm-ribbon-cta i::after {
    top: 11px;
    left: 8px;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentcolor;
    border-left: 2px solid currentcolor;
    transform: rotate(-45deg);
}

/* Form: light, like the AI and WordPress service pages */
.irdm-section--request {
    background:
        radial-gradient(circle at 10% 10%, rgb(76 111 244 / 8%), transparent 27%),
        #f5f8fd;
}

.irdm-request__intro {
    align-self: start;
    border-radius: 27px;
    padding: 29px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgb(76 111 244 / 26%), transparent 38%),
        linear-gradient(145deg, var(--irdm-dark), var(--irdm-dark-2));
    box-shadow: 0 30px 75px rgb(13 32 70 / 18%);
}

.irdm-request__intro > span {
    color: #79e8ba;
    background: transparent;
}

.irdm-request__intro h2 {
    color: #fff;
}

.irdm-request__intro > p {
    color: #aebbd2;
}

.irdm-request__notes article,
.irdm-estimate-box {
    border-color: rgb(142 162 212 / 15%);
    background: rgb(255 255 255 / 5%);
    box-shadow: none;
}

.irdm-request__notes span,
.irdm-estimate-box small {
    color: #9eacc2;
}

.irdm-estimate-box strong {
    color: #76e5b6;
}

.irdm-request__formcard {
    border: 1px solid #dee7f2;
    background: #fff;
    box-shadow: 0 28px 70px rgb(29 54 112 / 10%);
}

.irdm-form {
    color: var(--irdm-ink);
    background: #fff;
    border: 0;
    box-shadow: none;
}

.irdm-form__steps button {
    color: #6c7a8f;
    background: #f6f8fc;
    border-color: #e1e8f2;
}

.irdm-form__steps button.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--irdm-blue), #648fff);
}

.irdm-field span,
.irdm-check span {
    color: #31435f;
}

.irdm-field input,
.irdm-field select,
.irdm-field textarea {
    color: #172b49;
    background: #fbfcff;
    border-color: #dce5f0;
}

.irdm-field input:focus,
.irdm-field select:focus,
.irdm-field textarea:focus {
    border-color: rgb(76 111 244 / 48%);
    box-shadow: 0 0 0 4px rgb(76 111 244 / 10%);
}

/* Floating CTA */
.irdm-floating-cta {
    position: fixed;
    z-index: 9990;
    right: 22px;
    bottom: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px) scale(.96);
    transition: opacity .24s, transform .24s;
}

.irdm-floating-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.irdm-floating-cta a {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 11px;
    align-items: center;
    min-width: 214px;
    border: 1px solid rgb(76 111 244 / 16%);
    border-radius: 18px;
    padding: 12px 14px;
    color: #263b60;
    background: rgb(255 255 255 / 90%);
    box-shadow: 0 24px 60px rgb(25 51 105 / 18%);
    text-decoration: none;
    backdrop-filter: blur(16px);
}

.irdm-floating-cta__pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--irdm-green);
    box-shadow: 0 0 0 0 rgb(85 215 170 / 40%);
    animation: irdmDotPulse 2s infinite;
}

.irdm-floating-cta small,
.irdm-floating-cta strong {
    display: block;
}

.irdm-floating-cta small {
    color: #8a97aa;
    font-size: 6px;
}

.irdm-floating-cta strong {
    margin-top: 3px;
    font-size: 8px;
}

.irdm-floating-cta i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: var(--irdm-blue);
    font-style: normal;
}

/* Reveal */
.irdm-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity .58s ease var(--reveal-delay, 0ms),
        transform .58s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms);
}

.irdm-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes irdmAurora {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(24px, 16px, 0) scale(1.08); }
}

@keyframes irdmParticleFloat {
    0%, 100% { transform: translateY(0) rotate(0); opacity: .45; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: .9; }
}

@keyframes irdmSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes irdmNodeFloat {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -7px; }
}

@keyframes irdmDotPulse {
    0% { box-shadow: 0 0 0 0 rgb(85 215 170 / 40%); }
    70% { box-shadow: 0 0 0 12px rgb(85 215 170 / 0%); }
    100% { box-shadow: 0 0 0 0 rgb(85 215 170 / 0%); }
}

@keyframes irdmMarquee {
    to { transform: translateX(18%); }
}

/* Header stays above the page visual system */
body.irdm-page .irh2-header,
body.irdm-page .irh2-site-header,
body.irdm-page .site-header,
body.irdm-page header[role="banner"],
body.irdm-page > header {
    z-index: 10000 !important;
}

body.irdm-page .irh2-mega,
body.irdm-page .irh2-mega-panel,
body.irdm-page .irh2-dropdown,
body.irdm-page .irh2-account-popover {
    z-index: 10001 !important;
}

@media (max-width: 1180px) {
    .irdm-hero__layout {
        grid-template-columns: 1fr;
    }

    .irdm-growth-visual {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .irdm-plan-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .irdm-action-ribbon__layout {
        grid-template-columns: 1fr;
    }

    .irdm-ribbon-cta {
        width: min(100%, 360px);
    }

    .irdm-plan-grid,
    .irdm-stack-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .irdm-hero.irdm-hero--v2 {
        padding: 58px 0 25px;
    }

    .irdm-hero__content h1 {
        font-size: 39px;
    }

    .irdm-hero__proof {
        grid-template-columns: 1fr;
    }

    .irdm-growth-visual {
        min-height: 560px;
        border-radius: 26px;
    }

    .irdm-growth-visual__stage {
        min-height: 510px;
    }

    .irdm-growth-orbit {
        top: 35px;
        transform: translateX(50%) scale(.85);
    }

    .irdm-growth-chart {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }

    .irdm-float-card--lead { top: 80px; right: 5px; }
    .irdm-float-card--automation { top: 190px; left: 4px; }
    .irdm-float-card--roi { top: 297px; right: 6px; }

    .irdm-plan-grid,
    .irdm-stack-grid {
        grid-template-columns: 1fr;
    }

    .irdm-plan-card.is-featured {
        transform: none;
    }

    .irdm-floating-cta {
        right: 10px;
        bottom: 12px;
        left: 10px;
    }

    .irdm-floating-cta a {
        min-width: 0;
        width: 100%;
    }

    .irdm-action-ribbon {
        padding: 29px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .irdm *,
    .irdm *::before,
    .irdm *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* End IranNet Digital Marketing Visual System V1.2 */


/* ==========================================================================
   IranNet Digital Marketing UI Fixes V1.2.1
   ========================================================================== */

/* Roadmap icons are inline SVG, so they cannot fail because of an external asset. */
.irdm-roadmap .irdm-step {
    overflow: hidden;
}

.irdm-step__visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.irdm-step__icon {
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    place-items: center;
    border: 1px solid rgb(76 111 244 / 13%);
    border-radius: 18px;
    color: #4165d8;
    background:
        radial-gradient(circle at 80% 15%, rgb(85 215 170 / 18%), transparent 42%),
        linear-gradient(145deg, #f7f9ff, #edf3ff);
    box-shadow: 0 14px 30px rgb(38 70 142 / 9%);
}

.irdm-step__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentcolor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.irdm-step__number {
    display: inline-flex;
    width: auto;
    min-width: 43px;
    height: 43px;
    margin: 0;
    padding: 0 10px;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, #4c6ff4, #5f8dff);
    box-shadow: 0 11px 24px rgb(76 111 244 / 20%);
    font-size: 8px;
    font-weight: 950;
}

.irdm-step:hover .irdm-step__icon,
.irdm-step.is-active .irdm-step__icon {
    color: #18765a;
    border-color: rgb(85 215 170 / 28%);
    background:
        radial-gradient(circle at 80% 15%, rgb(85 215 170 / 24%), transparent 42%),
        linear-gradient(145deg, #f7fffb, #eaf9f3);
}

/* Keep all CTA label colours explicit; generic section span rules must not override them. */
.irdm-btn--primary > span,
.irdm-hero .irdm-btn--primary > span {
    color: #fff !important;
    background: transparent !important;
    border: 0 !important;
    text-shadow: 0 1px 1px rgb(0 0 0 / 15%);
}

.irdm-btn--secondary > span {
    color: #1d3157 !important;
    background: transparent !important;
    border: 0 !important;
}

.irdm-ribbon-cta > span {
    color: #1f3760 !important;
    background: transparent !important;
    border: 0 !important;
}

.irdm-ribbon-cta.is-light > span {
    color: #071f18 !important;
}

.irdm-plan-card__select {
    color: #fff !important;
    text-shadow: 0 1px 1px rgb(0 0 0 / 15%);
}

/* The form is light, therefore Back must be a visible light-secondary action. */
.irdm-form .irdm-btn--ghost {
    color: #2d456b !important;
    background: #edf2f9 !important;
    border: 1px solid #d2ddea !important;
    box-shadow: 0 9px 20px rgb(38 63 107 / 7%);
}

.irdm-form .irdm-btn--ghost:hover,
.irdm-form .irdm-btn--ghost:focus-visible {
    color: #19345f !important;
    background: #e2eaf5 !important;
    border-color: #becde0 !important;
    box-shadow: 0 12px 28px rgb(38 63 107 / 11%);
}

.irdm-form .irdm-btn--ghost:focus-visible,
.irdm-form .irdm-btn--primary:focus-visible,
.irdm-ribbon-cta:focus-visible {
    outline: 3px solid rgb(76 111 244 / 24%);
    outline-offset: 3px;
}

@media (max-width: 720px) {
    .irdm-step__icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }
}

/* End IranNet Digital Marketing UI Fixes V1.2.1 */
