/**
 * Jupiter AI Solutions — Inner Pages
 * Iteck style-17 inspired orange theme
 */

:root {
    --jp-orange: #EC6326; --jp-orange-bright: #FF6B2B; --jp-orange-dark: #C94B14; --jp-orange-soft: rgba(236, 99, 38, .12); --jp-orange-faint: rgba(236, 99, 38, .06);
    --jp-ink: #111111; --jp-text: #666666; --jp-muted: #858585; --jp-white: #ffffff; --jp-light: #f8f8f8; --jp-cream: #fff7f1; --jp-border: #e9e9e9; --jp-dark: #0f0f0f;
    --jp-dark-soft: #1a1a1a; --jp-success: #238636; --jp-danger: #c9362b; --jp-shadow-sm: 0 8px 24px rgba(17, 17, 17, .06); --jp-shadow-md: 0 16px 45px rgba(17, 17, 17, .09);
    --jp-shadow-lg: 0 28px 70px rgba(17, 17, 17, .12); --jp-orange-shadow: 0 14px 34px rgba(236, 99, 38, .24); --jp-radius-sm: 10px; --jp-radius-md: 16px; --jp-radius-lg: 24px;
    --jp-radius-xl: 32px; --jp-transition: .3s ease; --primary: var(--jp-orange); --muted: var(--jp-text); --radius-xl: var(--jp-radius-xl); --shadow-lg: var(--jp-shadow-lg);
    --grad-primary-soft: linear-gradient(135deg, var(--jp-orange-soft), rgba(255, 107, 43, .04)); --grad-pastel: linear-gradient(135deg, #fff4ec 0%, #fffaf6 55%, #ffffff 100%);
}

html {
    scroll-behavior: smooth; scroll-padding-top: 100px;
}

body {
    overflow-x: hidden; color: var(--jp-text); background: var(--jp-white); font-family: "Inter", sans-serif; line-height: 1.7;
}

/* Homepage hero heading: keep the left column balanced at all widths */
.tc-header-st17 .info h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.08;
    letter-spacing: -.045em;
}

/* Hero artwork: continuous orbital particles and subtle floating motion */
.tc-header-st17 .hero-visual {
    isolation: isolate;
    min-height: 430px;
}

.tc-header-st17 .hero-visual .hero-arrow,
.tc-header-st17 .hero-visual .hero-core {
    position: relative;
    z-index: 2;
    will-change: transform;
}

.tc-header-st17 .hero-visual .hero-arrow {
    animation: jp-hero-arrow 7s ease-in-out infinite alternate;
}

.tc-header-st17 .hero-visual .hero-core {
    animation: jp-hero-float 5.5s ease-in-out infinite;
}

.hero-particle-orbit {
    position: absolute;
    z-index: 1;
    top: 5%;
    right: -10%;
    width: min(430px, 115%);
    aspect-ratio: 1;
    border: 1px solid rgba(236, 99, 38, .15);
    border-radius: 50%;
    pointer-events: none;
    animation: jp-hero-orbit 18s linear infinite;
    will-change: transform;
}

.hero-particle-orbit::before,
.hero-particle-orbit::after {
    position: absolute;
    inset: 13%;
    border: 1px dashed rgba(17, 17, 17, .11);
    border-radius: 50%;
    content: "";
}

.hero-particle-orbit::after {
    inset: 29%;
    border-style: solid;
    border-color: rgba(236, 99, 38, .18);
}

.hero-particle-orbit span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--jp-orange);
    box-shadow: 0 0 18px rgba(236, 99, 38, .65);
}

.hero-particle-orbit span:nth-child(1) { top: -4px; left: 50%; }
.hero-particle-orbit span:nth-child(2) { top: 18%; right: 8%; width: 5px; height: 5px; background: #7654ff; }
.hero-particle-orbit span:nth-child(3) { top: 50%; right: -4px; width: 11px; height: 11px; }
.hero-particle-orbit span:nth-child(4) { right: 14%; bottom: 12%; width: 6px; height: 6px; background: #7654ff; }
.hero-particle-orbit span:nth-child(5) { bottom: -4px; left: 48%; }
.hero-particle-orbit span:nth-child(6) { bottom: 17%; left: 7%; width: 5px; height: 5px; }
.hero-particle-orbit span:nth-child(7) { top: 48%; left: -4px; width: 10px; height: 10px; background: #7654ff; }
.hero-particle-orbit span:nth-child(8) { top: 13%; left: 15%; width: 6px; height: 6px; }

@keyframes jp-hero-orbit {
    to { transform: rotate(360deg); }
}

@keyframes jp-hero-float {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(0, -16px, 0) rotate(3deg); }
}

@keyframes jp-hero-arrow {
    from { transform: translate3d(-5px, 5px, 0) rotate(-4deg); }
    to { transform: translate3d(7px, -8px, 0) rotate(5deg); }
}

@media (max-width: 991.98px) {
    .tc-header-st17 .hero-visual {
        min-height: 390px;
    }

    .hero-particle-orbit {
        right: 0;
        width: min(390px, 100%);
    }
}

/* Prevent decorative homepage sections from causing horizontal scroll */
.tc-header-st17,
.tc-about-st17,
.tc-portfolio-st17,
.tc-process-st17,
.tc-choose-st17,
.tc-testimonials-st17,
.tc-instagram-st17 {
    overflow-x: clip;
}

/* Hero artwork must scale inside the viewport (theme uses width: max-content) */
.tc-header-st17 .hero-visual img,
.tc-header-st17 .imgs img {
    width: auto !important;
    max-width: 100%;
    height: auto;
}

@media (prefers-reduced-motion: reduce) {
    .tc-header-st17 .hero-visual .hero-arrow,
    .tc-header-st17 .hero-visual .hero-core,
    .hero-particle-orbit {
        animation: none;
    }
}

/* Homepage news cards: equal image and card dimensions */
.tc-blog-st17 .posts .row {
    align-items: stretch;
}

.tc-blog-st17 .posts .row > [class*="col-"] {
    display: flex;
}

.tc-blog-st17 .post-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.tc-blog-st17 .post-card .img {
    width: 100%;
    aspect-ratio: 4 / 3;
    flex: 0 0 auto;
}

.tc-blog-st17 .post-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-blog-st17 .post-card .info {
    flex: 1 1 auto;
}

main {
    overflow: hidden;
}

img,
svg,
video {
    max-width: 100%; height: auto;
}

figure {
    margin: 0;
}

a {
    color: var(--jp-orange); text-decoration: none; transition: color var(--jp-transition);
}

a:hover {
    color: var(--jp-orange-dark);
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a,
input,
select,
textarea,
[tabindex] {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(236, 99, 38, .34); outline-offset: 3px;
}

::selection {
    color: var(--jp-white); background: var(--jp-orange);
}

/* Shared typography and section helpers */
.section-pad {
    padding: 105px 0;
}

.bg-white {
    background-color: var(--jp-white) !important;
}

.bg-light {
    background-color: var(--jp-light) !important;
}

.bg-pastel {
    background: var(--grad-pastel) !important;
}

.bg-dark-grad {
    color: var(--jp-white);
    background:
        radial-gradient(circle at 82% 20%, rgba(236, 99, 38, .18), transparent 30%),
        linear-gradient(135deg, var(--jp-dark), var(--jp-dark-soft));
}

.section-eyebrow {
    display: flex; align-items: center; gap: 10px; margin: 0 0 14px; color: var(--jp-orange); font-size: 12px; font-weight: 800; line-height: 1.4; letter-spacing: .18em;
    text-transform: uppercase;
}

.section-eyebrow::before {
    width: 28px; height: 2px; flex: 0 0 28px; content: ""; background: var(--jp-orange);
}

.text-center .section-eyebrow,
.section-eyebrow[style*="justify-content:center"] {
    justify-content: center !important;
}

.page-hero.dark .section-eyebrow,
.bg-dark-grad .section-eyebrow,
.svc-block.dark .section-eyebrow {
    color: var(--jp-orange-bright) !important;
}

.section-title {
    margin: 0 0 18px; color: var(--jp-ink); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 750; line-height: 1.12; letter-spacing: -.045em;
}

.section-subtitle {
    max-width: 720px; margin: 0 0 24px; color: var(--jp-text); font-size: 1.05rem; line-height: 1.8;
}

.bg-dark-grad .section-title,
.svc-block.dark .section-title {
    color: var(--jp-white);
}

.bg-dark-grad .section-subtitle,
.svc-block.dark .section-subtitle {
    color: rgba(255, 255, 255, .7);
}

.checklist,
.svc-features,
.service-features {
    padding: 0; margin: 26px 0 0; list-style: none;
}

.checklist li,
.svc-features li,
.service-features li {
    display: flex; align-items: flex-start; gap: 12px; margin-bottom: 13px; color: var(--jp-text); line-height: 1.6;
}

.checklist i,
.svc-features i,
.service-features i {
    flex: 0 0 auto; margin-top: 4px; color: var(--jp-orange);
}

.bg-dark-grad .svc-features li,
.svc-block.dark .svc-features li,
.service-block.dark .service-features li {
    color: rgba(255, 255, 255, .78);
}

/* Buttons */
.btn-primary-glow,
.btn.btn-primary-glow {
    display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; padding: 12px 25px; border: 1px solid var(--jp-orange); border-radius: 999px;
    color: var(--jp-white); background: var(--jp-orange); box-shadow: var(--jp-orange-shadow); font-size: 14px; font-weight: 700; line-height: 1.2;
    transition:
        color var(--jp-transition),
        background var(--jp-transition),
        border-color var(--jp-transition),
        box-shadow var(--jp-transition),
        transform var(--jp-transition);
}

.btn-primary-glow:hover,
.btn-primary-glow:focus,
.btn.btn-primary-glow:hover,
.btn.btn-primary-glow:focus {
    color: var(--jp-white); border-color: var(--jp-orange-dark); background: var(--jp-orange-dark); box-shadow: 0 18px 40px rgba(236, 99, 38, .3); transform: translateY(-2px);
}

.btn-primary-glow:active {
    transform: translateY(0);
}

.btn-outline-dark,
.btn.btn-outline-dark {
    display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; padding: 12px 25px; border: 1px solid var(--jp-ink); border-radius: 999px;
    color: var(--jp-ink); background: transparent; font-size: 14px; font-weight: 700; transition: all var(--jp-transition);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn.btn-outline-dark:hover,
.btn.btn-outline-dark:focus {
    color: var(--jp-white); border-color: var(--jp-ink); background: var(--jp-ink); transform: translateY(-2px);
}

.btn-outline-light,
.btn.btn-outline-light {
    min-height: 50px; padding: 12px 25px; border: 1px solid rgba(255, 255, 255, .65); border-radius: 999px; color: var(--jp-white); background: transparent; font-size: 14px;
    font-weight: 700;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    color: var(--jp-ink); border-color: var(--jp-white); background: var(--jp-white);
}

.btn-sm {
    min-height: 42px !important; padding: 9px 20px !important;
}

/* Page hero — light Iteck banner (keeps logo + nav readable) */
.page-hero {
    position: relative; min-height: 340px; display: flex; align-items: center; padding: 165px 0 75px; overflow: hidden; color: var(--jp-ink); text-align: center;
    background:
        radial-gradient(circle at 78% 12%, var(--jp-orange-soft), transparent 34%),
        radial-gradient(circle at 12% 88%, rgba(236, 99, 38, .07), transparent 28%),
        linear-gradient(135deg, var(--jp-cream), var(--jp-white));
}

.page-hero::before {
    position: absolute; top: -120px; right: -80px; width: 360px; height: 360px; border: 1px solid rgba(236, 99, 38, .16); border-radius: 50%; content: "";
}

.page-hero::after {
    position: absolute; right: 10%; bottom: -180px; width: 360px; height: 360px; border: 70px solid rgba(236, 99, 38, .05); border-radius: 50%; content: "";
}

.page-hero > .container {
    position: relative; z-index: 1;
}

.page-hero h1 {
    max-width: 970px; margin: 0 auto 20px; color: var(--jp-ink); font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 800; line-height: 1.04; letter-spacing: -.055em;
}

.page-hero p:not(.section-eyebrow) {
    max-width: 750px; margin: 0 auto 22px; color: var(--jp-text); font-size: 1.08rem;
}

.page-hero.light {
    text-align: left;
}

.page-hero.light h1,
.page-hero.light p:not(.section-eyebrow) {
    margin-right: 0; margin-left: 0;
}

.page-hero.split {
    min-height: 400px; align-items: flex-end;
}

/* Optional dark variant */
.page-hero.dark {
    color: var(--jp-white);
    background:
        radial-gradient(circle at 78% 15%, rgba(236, 99, 38, .28), transparent 32%),
        var(--jp-dark);
}

.page-hero.dark h1 {
    color: var(--jp-white);
}

.page-hero.dark p:not(.section-eyebrow) {
    color: rgba(255, 255, 255, .7);
}

.breadcrumb-nav {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 9px; margin-top: 22px; color: var(--jp-muted); font-size: 13px;
}

.breadcrumb-nav > * + *::before {
    margin-right: 9px; color: #b8b8b8; content: "/";
}

.breadcrumb-nav a {
    color: var(--jp-text);
}

.breadcrumb-nav a:hover {
    color: var(--jp-orange);
}

.breadcrumb-nav .current {
    color: var(--jp-orange);
}

.page-hero.light .breadcrumb-nav {
    justify-content: flex-end;
}

.page-hero.dark .breadcrumb-nav {
    color: rgba(255, 255, 255, .5);
}

.page-hero.dark .breadcrumb-nav > * + *::before {
    color: rgba(255, 255, 255, .3);
}

.page-hero.dark .breadcrumb-nav a {
    color: rgba(255, 255, 255, .76);
}

.page-hero.dark .breadcrumb-nav .current {
    color: var(--jp-orange-bright);
}

/* Shared navigation pills and CTA band */
.svc-nav-pills {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 34px;
}

.svc-nav-pills a {
    padding: 9px 16px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; color: rgba(255, 255, 255, .78); background: rgba(255, 255, 255, .06); font-size: 12px;
    font-weight: 700;
}

.svc-nav-pills a:hover {
    color: var(--jp-white); border-color: var(--jp-orange); background: var(--jp-orange);
}

.cta-band {
    padding: 72px 0; color: var(--jp-white);
    background:
        radial-gradient(circle at 90% 50%, rgba(236, 99, 38, .28), transparent 35%),
        var(--jp-dark-soft);
}

.cta-band h2 {
    margin-bottom: 12px; color: inherit; font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 750; letter-spacing: -.04em;
}

.cta-band p {
    max-width: 680px; margin-bottom: 0; color: rgba(255, 255, 255, .68);
}

.cta-band[style*="grad-pastel"] {
    color: var(--jp-ink);
}

.cta-band[style*="grad-pastel"] p {
    color: var(--jp-text);
}

.cta-actions {
    display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 12px;
}

/* About */
.mv-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 48px;
}

.mv-card {
    position: relative; padding: 38px; overflow: hidden; border: 1px solid var(--jp-border); border-radius: var(--jp-radius-lg); background: var(--jp-white);
    box-shadow: var(--jp-shadow-sm); transition: transform var(--jp-transition), box-shadow var(--jp-transition), border-color var(--jp-transition);
}

.mv-card:hover {
    border-color: rgba(236, 99, 38, .35); box-shadow: var(--jp-shadow-md); transform: translateY(-6px);
}

.mv-card.accent {
    border-color: transparent; background: var(--grad-pastel);
}

.mv-card.accent::after {
    position: absolute; right: -55px; bottom: -75px; width: 180px; height: 180px; border: 35px solid rgba(236, 99, 38, .08); border-radius: 50%; content: "";
}

.mv-card h3 {
    margin-bottom: 12px; color: var(--jp-ink); font-size: 1.5rem;
}

.mv-card p {
    position: relative; z-index: 1; margin-bottom: 0;
}

.mv-icon {
    width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 18px; color: var(--jp-orange); background: var(--jp-orange-soft);
    font-size: 1.45rem;
}

.about-story {
    padding: 105px 0; background: var(--jp-cream);
}

.about-story-visual {
    position: relative;
}

.about-story-visual img {
    width: 100%; min-height: 430px; object-fit: cover; border-radius: var(--jp-radius-xl); box-shadow: var(--jp-shadow-lg);
}

.about-story-badge {
    position: absolute; right: -25px; bottom: 30px; width: 170px; padding: 24px; border: 5px solid var(--jp-cream); border-radius: var(--jp-radius-md); color: var(--jp-white);
    background: var(--jp-orange); box-shadow: var(--jp-orange-shadow);
}

.about-story-badge .badge-num {
    font-size: 2.25rem; font-weight: 800; line-height: 1;
}

.about-story-badge .badge-label {
    margin-top: 8px; font-size: 12px; line-height: 1.4;
}

.about-story-content .checklist {
    margin-top: 28px;
}

.why-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px;
}

.why-item {
    padding: 28px; border: 1px solid var(--jp-border); border-radius: var(--jp-radius-md); background: var(--jp-white); transition: all var(--jp-transition);
}

.why-item:hover {
    border-color: rgba(236, 99, 38, .4); box-shadow: var(--jp-shadow-sm); transform: translateY(-4px);
}

.why-num {
    display: block; margin-bottom: 28px; color: var(--jp-orange); font-size: 12px; font-weight: 800; letter-spacing: .12em;
}

.why-item h3 {
    margin-bottom: 10px; color: var(--jp-ink); font-size: 1.15rem;
}

.why-item p {
    margin-bottom: 0; font-size: 14px;
}

.timeline {
    position: relative; padding-left: 34px;
}

.timeline::before {
    position: absolute; top: 12px; bottom: 12px; left: 7px; width: 2px; content: ""; background: var(--jp-border);
}

.timeline-item {
    position: relative; padding: 0 0 30px 24px; cursor: pointer;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute; top: 7px; left: -33px; width: 14px; height: 14px; border: 3px solid var(--jp-white); border-radius: 50%; background: #c9c9c9;
    box-shadow: 0 0 0 1px var(--jp-border); transition: all var(--jp-transition);
}

.timeline-item:hover .timeline-dot,
.timeline-item.active .timeline-dot {
    background: var(--jp-orange); box-shadow: 0 0 0 6px var(--jp-orange-soft);
}

.timeline-year {
    margin-bottom: 6px; color: var(--jp-orange); font-size: 13px; font-weight: 800; letter-spacing: .08em;
}

.timeline-item h3 {
    margin-bottom: 6px; color: var(--jp-ink); font-size: 1.12rem;
}

.timeline-item p {
    max-width: 580px; margin-bottom: 0; font-size: 14px;
}

/* Services */
.svc-block,
.service-block {
    position: relative; padding: 105px 0; overflow: hidden; background: var(--jp-white);
}

.svc-block:nth-of-type(even),
.service-block:nth-of-type(even) {
    background: var(--jp-light);
}

.svc-block.dark,
.service-block.dark,
.svc-block.bg-dark {
    color: var(--jp-white);
    background:
        radial-gradient(circle at 15% 30%, rgba(236, 99, 38, .16), transparent 28%),
        var(--jp-dark);
}

.svc-visual,
.service-visual {
    position: relative; min-height: 440px; display: grid; place-items: center; overflow: hidden; border-radius: var(--jp-radius-xl); background: var(--grad-pastel);
}

.svc-visual.grad {
    background:
        radial-gradient(circle at 70% 25%, rgba(236, 99, 38, .24), transparent 30%),
        linear-gradient(145deg, #fff5ee, #f4f4f4);
}

.svc-visual.dark {
    background:
        radial-gradient(circle at 50% 50%, rgba(236, 99, 38, .25), transparent 36%),
        var(--jp-dark-soft);
}

.svc-visual img,
.service-visual img {
    width: 100%; min-height: 440px; object-fit: cover;
}

.svc-icon-xl {
    position: relative; z-index: 1; color: var(--jp-orange); font-size: clamp(5rem, 10vw, 8.5rem); filter: drop-shadow(0 18px 30px rgba(236, 99, 38, .22));
}

.svc-visual::before {
    position: absolute; width: 250px; height: 250px; border: 1px solid rgba(236, 99, 38, .25); border-radius: 50%; content: "";
}

.svc-visual::after {
    position: absolute; width: 340px; height: 340px; border: 1px dashed rgba(236, 99, 38, .18); border-radius: 50%; content: "";
}

/* Solutions */
.workflow-track {
    position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; margin-top: 48px;
}

.workflow-track::before {
    position: absolute; top: 73px; right: 8%; left: 8%; height: 2px; content: ""; background: var(--jp-border);
}

.workflow-step {
    position: relative; z-index: 1; min-height: 180px; padding: 22px 16px; border: 1px solid var(--jp-border); border-radius: var(--jp-radius-md); text-align: center;
    background: var(--jp-white); cursor: pointer; transition: all var(--jp-transition);
}

.workflow-step:hover,
.workflow-step.active {
    border-color: var(--jp-orange); box-shadow: var(--jp-shadow-md); transform: translateY(-7px);
}

.wf-num {
    margin-bottom: 18px; color: var(--jp-muted); font-size: 10px; font-weight: 800; letter-spacing: .12em;
}

.wf-icon {
    width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto 16px; border-radius: 50%; color: var(--jp-orange); background: var(--jp-orange-soft);
    font-size: 1.2rem; transition: all var(--jp-transition);
}

.workflow-step.active .wf-icon,
.workflow-step:hover .wf-icon {
    color: var(--jp-white); background: var(--jp-orange);
}

.workflow-step h3 {
    margin-bottom: 6px; color: var(--jp-ink); font-size: 1rem;
}

.workflow-step p {
    margin: 0; color: var(--jp-text); font-size: 12px; line-height: 1.5;
}

.pillar-grid {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 48px;
}

.pillar-card {
    padding: 34px; border: 1px solid var(--jp-border); border-radius: var(--jp-radius-lg); background: var(--jp-white); box-shadow: var(--jp-shadow-sm);
    transition: all var(--jp-transition);
}

.pillar-card:hover {
    border-color: rgba(236, 99, 38, .38); box-shadow: var(--jp-shadow-md); transform: translateY(-6px);
}

.pillar-card .feature-icon {
    color: var(--jp-orange) !important; background: var(--jp-orange-soft) !important;
}

.pillar-card h3 {
    margin: 24px 0 12px; color: var(--jp-ink); font-size: 1.3rem;
}

.pillar-card p {
    margin-bottom: 0;
}

.tech-stack {
    display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}

.tech-stack span {
    padding: 8px 13px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; color: rgba(255, 255, 255, .74); background: rgba(255, 255, 255, .05); font-size: 12px;
}

.platforms-visual {
    position: relative; min-height: 450px; display: grid; place-items: center;
}

.platforms-orbit {
    position: relative; width: 360px; height: 360px; border: 1px solid rgba(236, 99, 38, .35); border-radius: 50%;
}

.platforms-orbit-inner {
    position: absolute; inset: 65px; border: 1px dashed rgba(236, 99, 38, .25); border-radius: 50%;
}

.platform-node {
    position: absolute; width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(236, 99, 38, .25); border-radius: 50%; color: var(--jp-orange-bright);
    background: var(--jp-dark-soft); box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

.platform-node:nth-child(1) {
    top: -29px; left: calc(50% - 29px);
}

.platform-node:nth-child(2) {
    top: calc(50% - 29px); right: -29px;
}

.platform-node:nth-child(3) {
    bottom: -29px; left: calc(50% - 29px);
}

.platform-node:nth-child(4) {
    top: calc(50% - 29px); left: -29px;
}

.platforms-center {
    position: absolute; width: 94px; height: 94px; display: grid; place-items: center; border-radius: 50%; color: var(--jp-white); background: var(--jp-orange);
    box-shadow: 0 0 0 18px rgba(236, 99, 38, .1), var(--jp-orange-shadow); font-size: 2rem;
}

/* Industries */
.industry-panel {
    overflow: hidden;
}

.industry-visual {
    position: relative; min-height: 570px; height: 100%; overflow: hidden; background: var(--jp-dark-soft);
}

.industry-visual img {
    width: 100%; height: 100%; min-height: 570px; object-fit: cover; transition: transform .7s ease;
}

.industry-panel:hover .industry-visual img {
    transform: scale(1.035);
}

.ind-placeholder {
    min-height: 570px; display: grid; place-items: center; color: var(--jp-orange);
    background:
        radial-gradient(circle at 50% 45%, rgba(236, 99, 38, .22), transparent 28%),
        var(--jp-dark-soft); font-size: 7rem;
}

.industry-content {
    max-width: 670px; padding: 90px 10%;
}

.industry-content h2 {
    margin-bottom: 20px; color: var(--jp-ink); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 750; letter-spacing: -.045em;
}

.industry-tags {
    display: flex; flex-wrap: wrap; gap: 9px; margin: 25px 0 30px;
}

.industry-tags span {
    padding: 8px 13px; border: 1px solid rgba(236, 99, 38, .2); border-radius: 999px; color: var(--jp-orange-dark); background: var(--jp-orange-faint); font-size: 12px;
    font-weight: 650;
}

/* Case studies */
.cs-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px;
}

.cs-card {
    display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--jp-border); border-radius: var(--jp-radius-lg); background: var(--jp-white); box-shadow: var(--jp-shadow-sm);
    transition: all var(--jp-transition);
}

.cs-card:hover {
    border-color: rgba(236, 99, 38, .3); box-shadow: var(--jp-shadow-lg); transform: translateY(-7px);
}

.cs-card.featured {
    grid-column: auto;
}

.cs-card-img {
    width: 100%; aspect-ratio: 16 / 10; min-height: 0; flex: 0 0 auto; overflow: hidden; background: var(--jp-light);
}

.cs-card-img img {
    display: block; width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: center; transition: transform .6s ease;
}

.cs-card:hover .cs-card-img img {
    transform: scale(1.04);
}

.cs-card-body {
    height: 100%; padding: 32px;
}

.cs-card-body h2,
.cs-card-body h3 {
    margin: 12px 0 22px; color: var(--jp-ink); font-size: 1.45rem; line-height: 1.3;
}

.cs-meta span {
    display: inline-block; padding: 7px 12px; border-radius: 999px; color: var(--jp-orange-dark); background: var(--jp-orange-soft); font-size: 11px; font-weight: 800;
    letter-spacing: .06em; text-transform: uppercase;
}

.cs-block {
    padding: 16px 0; border-top: 1px solid var(--jp-border);
}

.cs-block h4 {
    margin-bottom: 5px; color: var(--jp-ink); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}

.cs-block p {
    margin: 0; font-size: 14px;
}

.cs-roi {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 20px;
}

.cs-roi-item {
    padding: 16px 10px; border-radius: var(--jp-radius-sm); text-align: center; background: var(--jp-cream);
}

.roi-num {
    color: var(--jp-orange); font-size: 1.5rem; font-weight: 800; line-height: 1.15;
}

.roi-label {
    margin-top: 5px; color: var(--jp-text); font-size: 10px; line-height: 1.35; text-transform: uppercase;
}

/* Blog */
.blog-magazine {
    padding: 105px 0;
}

.blog-featured {
    display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); margin-bottom: 32px; overflow: hidden; border: 1px solid var(--jp-border);
    border-radius: var(--jp-radius-lg); background: var(--jp-white); box-shadow: var(--jp-shadow-md);
}

.blog-featured-img {
    min-height: 430px; overflow: hidden;
}

.blog-featured-img img {
    width: 100%; height: 100%; min-height: 430px; object-fit: cover; transition: transform .6s ease;
}

.blog-featured:hover .blog-featured-img img {
    transform: scale(1.035);
}

.blog-featured-body {
    display: flex; flex-direction: column; justify-content: center; padding: 46px;
}

.blog-list {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
}

.blog-card {
    overflow: hidden; border: 1px solid var(--jp-border); border-radius: var(--jp-radius-md); background: var(--jp-white); box-shadow: var(--jp-shadow-sm);
    transition: all var(--jp-transition);
}

.blog-card:hover {
    border-color: rgba(236, 99, 38, .3); box-shadow: var(--jp-shadow-md); transform: translateY(-6px);
}

.blog-card-img {
    height: 220px; overflow: hidden; background: var(--jp-light);
}

.blog-card-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 25px;
}

.blog-card-body h3 {
    margin: 14px 0 18px; color: var(--jp-ink); font-size: 1.15rem; line-height: 1.4;
}

.blog-card-meta {
    display: flex; align-items: center; flex-wrap: wrap; gap: 10px; color: var(--jp-muted); font-size: 11px;
}

.blog-card-cat {
    padding: 6px 10px; border-radius: 999px; color: var(--jp-orange-dark); background: var(--jp-orange-soft); font-weight: 800; text-transform: uppercase;
}

.blog-card-link {
    display: inline-flex; align-items: center; gap: 8px; color: var(--jp-orange); font-size: 13px; font-weight: 700;
}

.blog-card-link i {
    transition: transform var(--jp-transition);
}

.blog-card-link:hover i {
    transform: translateX(4px);
}

/* Careers */
.culture-strip {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px;
}

.culture-item {
    min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; border-radius: var(--jp-radius-md); color: var(--jp-white);
    background:
        linear-gradient(to top, rgba(15, 15, 15, .9), rgba(15, 15, 15, .1)),
        var(--jp-dark-soft);
}

.culture-item i {
    margin-bottom: auto; color: var(--jp-orange-bright); font-size: 1.8rem;
}

.culture-label {
    font-size: 1rem; font-weight: 700;
}

.benefits-grid {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-top: 45px;
}

.benefit-item {
    padding: 30px 24px; border: 1px solid rgba(236, 99, 38, .12); border-radius: var(--jp-radius-md); background: rgba(255, 255, 255, .8); transition: all var(--jp-transition);
}

.benefit-item:hover {
    background: var(--jp-white); box-shadow: var(--jp-shadow-md); transform: translateY(-5px);
}

.benefit-item > i {
    margin-bottom: 22px; color: var(--jp-orange); font-size: 1.75rem;
}

.benefit-item h3 {
    margin-bottom: 8px; color: var(--jp-ink); font-size: 1.08rem;
}

.benefit-item p {
    margin-bottom: 0; font-size: 13px;
}

.role-list {
    display: grid; gap: 15px; margin-top: 42px;
}

.role-card,
.job-card {
    display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 27px 30px; border: 1px solid var(--jp-border); border-radius: var(--jp-radius-md);
    background: var(--jp-white); transition: all var(--jp-transition);
}

.role-card:hover,
.job-card:hover {
    border-color: rgba(236, 99, 38, .35); box-shadow: var(--jp-shadow-md); transform: translateX(5px);
}

.role-card h3,
.job-card h3 {
    margin-bottom: 9px; color: var(--jp-ink); font-size: 1.2rem;
}

.role-meta,
.job-meta {
    display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--jp-muted); font-size: 12px;
}

.role-meta i,
.job-meta i {
    margin-right: 4px; color: var(--jp-orange);
}

/* Contact */
.contact-section {
    padding: 105px 0; background: var(--jp-light);
}

.contact-info-card,
.contact-form-wrap {
    padding: 35px; border: 1px solid var(--jp-border); border-radius: var(--jp-radius-lg); background: var(--jp-white); box-shadow: var(--jp-shadow-sm);
}

.contact-info-card h2,
.contact-form-wrap h2 {
    color: var(--jp-ink); font-weight: 750; letter-spacing: -.03em;
}

.contact-info-item {
    display: flex; align-items: flex-start; gap: 16px; padding: 21px 0; border-bottom: 1px solid var(--jp-border);
}

.contact-info-item:last-child {
    border-bottom: 0;
}

.ci-icon {
    width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border-radius: 14px; color: var(--jp-orange); background: var(--jp-orange-soft);
    font-size: 1.1rem;
}

.contact-info-item h3 {
    margin: 0 0 4px; color: var(--jp-ink); font-size: .95rem;
}

.contact-info-item p,
.contact-info-item a {
    margin: 0; color: var(--jp-text); font-size: 13px;
}

.contact-info-item a:hover {
    color: var(--jp-orange);
}

.contact-map-wrap {
    min-height: 280px; overflow: hidden; border-radius: var(--jp-radius-lg); background: #e8e8e8; box-shadow: var(--jp-shadow-sm);
}

.contact-map-wrap iframe {
    width: 100%; height: 100%; min-height: 280px; border: 0;
}

.form-group label {
    display: block; margin-bottom: 8px; color: var(--jp-ink); font-size: 12px; font-weight: 700;
}

.form-control-custom,
.form-select-custom {
    width: 100%; min-height: 52px; display: block; padding: 12px 15px; border: 1px solid #dddddd; border-radius: var(--jp-radius-sm); color: var(--jp-ink);
    background-color: var(--jp-white); box-shadow: none; transition: border-color var(--jp-transition), box-shadow var(--jp-transition);
}

.form-control-custom::placeholder {
    color: #a0a0a0;
}

.form-control-custom:hover,
.form-select-custom:hover {
    border-color: #c6c6c6;
}

.form-control-custom:focus,
.form-select-custom:focus {
    border-color: var(--jp-orange); outline: 0; box-shadow: 0 0 0 4px var(--jp-orange-soft);
}

textarea.form-control-custom {
    min-height: 150px; resize: vertical;
}

.form-select-custom {
    padding-right: 42px; appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--jp-text) 50%),
        linear-gradient(135deg, var(--jp-text) 50%, transparent 50%);
    background-position:
        calc(100% - 19px) 50%,
        calc(100% - 14px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}

.captcha-row {
    display: flex; align-items: center; gap: 14px;
}

.captcha-question {
    min-width: 130px; padding: 13px 16px; border: 1px dashed rgba(236, 99, 38, .45); border-radius: var(--jp-radius-sm); color: var(--jp-orange-dark);
    background: var(--jp-orange-faint); text-align: center; font-weight: 800;
}

.captcha-row .form-control-custom {
    max-width: 160px;
}

.hp-field,
.honeypot {
    position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important;
    pointer-events: none !important;
}

.form-message,
.alert-success,
.alert-error,
.alert-danger {
    display: none; margin-top: 18px; padding: 14px 17px; border: 1px solid rgba(35, 134, 54, .22); border-radius: var(--jp-radius-sm); color: #176426;
    background: rgba(35, 134, 54, .09); font-size: 13px;
}

.form-message:not(:empty) {
    display: block;
}

.form-message.error,
.alert-error,
.alert-danger {
    border-color: rgba(201, 54, 43, .22); color: #9b241c; background: rgba(201, 54, 43, .08);
}

/* Legal */
.legal-content {
    padding: 90px 0 110px; background: var(--jp-light);
}

.legal-body {
    max-width: 900px; padding: clamp(28px, 5vw, 60px); margin: 0 auto; border: 1px solid var(--jp-border); border-radius: var(--jp-radius-lg); background: var(--jp-white);
    box-shadow: var(--jp-shadow-sm);
}

.legal-updated {
    display: inline-block; margin-bottom: 30px; padding: 7px 12px; border-radius: 999px; color: var(--jp-orange-dark); background: var(--jp-orange-soft); font-size: 12px;
    font-weight: 700;
}

.legal-body h2 {
    padding-top: 20px; margin: 32px 0 14px; border-top: 1px solid var(--jp-border); color: var(--jp-ink); font-size: clamp(1.35rem, 3vw, 1.75rem); line-height: 1.3;
}

.legal-body h2:first-of-type {
    padding-top: 0; margin-top: 0; border-top: 0;
}

.legal-body h3 {
    margin: 24px 0 10px; color: var(--jp-ink); font-size: 1.1rem;
}

.legal-body p,
.legal-body li {
    color: var(--jp-text); font-size: 15px; line-height: 1.85;
}

.legal-body ul,
.legal-body ol {
    padding-left: 22px; margin-bottom: 22px;
}

.legal-body li {
    margin-bottom: 8px;
}

.legal-body a {
    font-weight: 650; text-decoration: underline; text-decoration-color: rgba(236, 99, 38, .35); text-underline-offset: 3px;
}

.legal-body blockquote {
    padding: 18px 22px; margin: 24px 0; border-left: 4px solid var(--jp-orange); border-radius: 0 var(--jp-radius-sm) var(--jp-radius-sm) 0; background: var(--jp-cream);
}

.legal-body table,
.legal-content table {
    width: 100%; margin: 25px 0; border-collapse: collapse;
}

.legal-body th,
.legal-body td,
.legal-content th,
.legal-content td {
    padding: 13px 15px; border: 1px solid var(--jp-border); text-align: left; vertical-align: top;
}

.legal-body th,
.legal-content th {
    color: var(--jp-ink); background: var(--jp-cream); font-weight: 750;
}

/* Navbar style-17 mobile polish */
.navbar.style-17 {
    z-index: 1030;
}

/* Brand logo — use PNG as provided (do not recolor/crop) */
.navbar.style-17 .navbar-brand {
    display: inline-flex; align-items: center; max-width: min(240px, 58vw);
}

.navbar.style-17 .navbar-brand img {
    width: 210px; max-width: 100%; height: auto; object-fit: contain;
}

.tc-footer-st17 .foot-logo {
    display: inline-block; max-width: 240px;
}

.tc-footer-st17 .foot-logo img.logo {
    width: 220px; max-width: 100%; height: auto; object-fit: contain;
}

.navbar.style-17 .navbar-toggler {
    border: 0; box-shadow: none;
}

/* Dropdown menus (positioned without Popper) */
.navbar.style-17 .nav-item.dropdown {
    position: relative;
}

/* Theme caret uses "Font Awesome 5 pro" (not bundled) and rendered as tofu */
.navbar.style-17 .dropdown-toggle::after {
    position: static; top: auto; display: inline-block; width: 0; height: 0; margin-left: 7px; content: "";
    vertical-align: middle; border-top: 5px solid currentColor; border-right: 4px solid transparent; border-bottom: 0;
    border-left: 4px solid transparent; opacity: .7; transition: transform var(--jp-transition);
}

.navbar.style-17 .nav-item.dropdown.show > .dropdown-toggle::after {
    transform: rotate(180deg);
}

.navbar.style-17 .dropdown-menu {
    padding: 10px; border: 1px solid var(--jp-border); border-radius: 14px; box-shadow: var(--jp-shadow-md);
}

.navbar.style-17 .dropdown-item {
    padding: 9px 14px; border-radius: 9px; color: var(--jp-ink); font-size: 13px; font-weight: 600; text-transform: none;
}

.navbar.style-17 .dropdown-item:hover,
.navbar.style-17 .dropdown-item:focus {
    color: var(--jp-orange); background: var(--jp-orange-soft);
}

@media (min-width: 1200px) {
    .navbar.style-17 .dropdown-menu {
        top: 100%; left: 0; min-width: 232px; margin-top: 8px;
    }
}

.navbar.style-17 .navbar-toggler-icon {
    width: 1.55rem;
    height: 1.55rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23111111' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.style-17 .navbar-toggler:focus {
    box-shadow: 0 0 0 3px var(--jp-orange-soft);
}

.navbar.style-17 .navbar-collapse {
    padding: 1rem; margin-top: 10px; border-radius: 12px; background: var(--jp-white); box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

.navbar.style-17 .navbar-collapse .nav-link {
    min-height: 44px; display: flex; align-items: center;
}

.navbar.style-17 .navbar-collapse .nav-link.active,
.navbar.style-17 .navbar-collapse .nav-link:hover {
    color: var(--jp-orange) !important;
}

.navbar.style-17 .nav-side {
    padding-left: 0 !important; margin-top: 1rem;
}

.navbar.style-17 .nav-side > div {
    padding-left: 0 !important;
}

.navbar.style-17 .nav-side .butn {
    width: 100%; display: inline-block; text-align: center;
}

.navbar.style-17 .bg-orange4 {
    background: var(--jp-orange) !important;
}

/* Tablet */
@media (max-width: 991.98px) {
    .section-pad,
    .about-story,
    .svc-block,
    .service-block,
    .blog-magazine,
    .contact-section {
        padding: 78px 0;
    }

    .page-hero {
        min-height: 330px; padding: 140px 0 62px;
    }

    .page-hero.split {
        min-height: 350px;
    }

    .page-hero.light .breadcrumb-nav {
        justify-content: flex-start; margin-top: 25px;
    }

    .mv-grid,
    .cs-grid {
        grid-template-columns: 1fr;
    }

    .cs-card.featured {
        grid-column: auto; display: block;
    }

    .workflow-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workflow-track::before {
        display: none;
    }

    .pillar-grid,
    .blog-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-featured-img,
    .blog-featured-img img {
        min-height: 340px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-story-badge {
        right: 20px;
    }

    .svc-visual,
    .service-visual,
    .svc-visual img,
    .service-visual img {
        min-height: 370px;
    }

    .industry-visual,
    .industry-visual img,
    .ind-placeholder {
        min-height: 430px;
    }

    .industry-content {
        max-width: none; padding: 65px 8%;
    }

    .platforms-visual {
        min-height: 390px;
    }

    .cta-actions {
        justify-content: flex-start; margin-top: 25px;
    }

    .btn-primary-glow,
    .btn-outline-dark,
    .btn-outline-light {
        min-width: 180px;
    }

    .navbar.style-17 .navbar-nav {
        align-items: stretch;
    }

    .navbar.style-17 .dropdown-menu {
        padding: 8px; border: 0; background: var(--jp-light); box-shadow: none;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .container,
    .container-custom {
        padding-left: max(1rem, env(safe-area-inset-left, 0px));
        padding-right: max(1rem, env(safe-area-inset-right, 0px));
    }

    .navbar.style-17 .navbar-brand img {
        width: 168px;
    }

    .tc-footer-st17 .foot-logo img.logo {
        width: 180px;
    }
    html {
        scroll-padding-top: 80px;
    }

    body {
        font-size: 15px;
    }

    .section-pad,
    .about-story,
    .svc-block,
    .service-block,
    .blog-magazine,
    .contact-section {
        padding: 58px 0;
    }

    .section-title {
        font-size: clamp(1.75rem, 9vw, 2.35rem);
    }

    .section-subtitle {
        font-size: .98rem; line-height: 1.7;
    }

    .section-eyebrow {
        font-size: 10px;
    }

    .page-hero,
    .page-hero.split {
        min-height: 300px; padding: 125px 0 50px;
    }

    .page-hero h1 {
        font-size: clamp(2.2rem, 12vw, 3.35rem); line-height: 1.05;
    }

    .page-hero p:not(.section-eyebrow) {
        font-size: .98rem;
    }

    .page-hero::before {
        width: 250px; height: 250px;
    }

    .breadcrumb-nav {
        gap: 6px; font-size: 12px;
    }

    .breadcrumb-nav > * + *::before {
        margin-right: 6px;
    }

    .svc-nav-pills {
        justify-content: flex-start; flex-wrap: nowrap; padding-bottom: 8px; margin-right: -12px; overflow-x: auto; scrollbar-width: none;
    }

    .svc-nav-pills::-webkit-scrollbar {
        display: none;
    }

    .svc-nav-pills a {
        flex: 0 0 auto;
    }

    .mv-grid,
    .why-grid,
    .pillar-grid,
    .workflow-track,
    .blog-list,
    .benefits-grid,
    .culture-strip {
        grid-template-columns: 1fr;
    }

    .mv-card,
    .pillar-card,
    .cs-card-body,
    .blog-featured-body,
    .contact-info-card,
    .contact-form-wrap {
        padding: 25px;
    }

    .mv-grid,
    .pillar-grid {
        margin-top: 35px;
    }

    .about-story-visual img {
        min-height: 320px;
    }

    .about-story-badge {
        display: none;
    }

    .timeline {
        padding-left: 25px;
    }

    .svc-visual,
    .service-visual,
    .svc-visual img,
    .service-visual img {
        min-height: 300px;
    }

    .svc-icon-xl {
        font-size: 5rem;
    }

    .industry-visual,
    .industry-visual img,
    .ind-placeholder {
        min-height: 320px;
    }

    .industry-content {
        padding: 50px 20px;
    }

    .cs-card-img,
    .cs-card-img img {
        min-height: 0;
    }

    .cs-roi {
        grid-template-columns: 1fr;
    }

    .cs-roi-item {
        display: flex; align-items: center; justify-content: space-between; gap: 10px; text-align: left;
    }

    .blog-featured-img,
    .blog-featured-img img {
        min-height: 250px;
    }

    .blog-card-img {
        height: 230px;
    }

    .culture-item {
        min-height: 170px;
    }

    .role-card,
    .job-card {
        align-items: flex-start; flex-direction: column; padding: 23px;
    }

    .role-card:hover,
    .job-card:hover {
        transform: translateY(-4px);
    }

    .role-card .btn,
    .job-card .btn {
        width: 100%;
    }

    .captcha-row {
        align-items: stretch; flex-direction: column;
    }

    .captcha-question,
    .captcha-row .form-control-custom {
        width: 100%; max-width: none;
    }

    .cta-band {
        padding: 58px 0;
    }

    .cta-actions {
        align-items: stretch; flex-direction: column;
    }

    .cta-actions .btn,
    .btn-primary-glow,
    .btn-outline-dark,
    .btn-outline-light {
        width: 100%;
    }

    .legal-content {
        padding: 55px 0 70px;
    }

    .legal-body {
        padding: 24px 20px; border-radius: var(--jp-radius-md);
    }

    .legal-body table,
    .legal-content table {
        display: block; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch;
    }

    .platforms-visual {
        min-height: 320px; transform: scale(.78);
    }

    .navbar.style-17 .navbar-collapse {
        max-height: calc(100vh - 100px); overflow-y: auto;
    }
}

@media (max-width: 479.98px) {
    .page-hero h1 {
        font-size: 2.15rem;
    }

    .contact-info-card,
    .contact-form-wrap,
    .mv-card,
    .pillar-card {
        padding: 22px 18px;
    }

    .workflow-track {
        gap: 12px;
    }

    .workflow-step {
        min-height: 160px;
    }

    .platforms-visual {
        min-height: 280px; margin: -25px 0; transform: scale(.65);
    }
}

@media (min-width: 992px) {
    .navbar.style-17 .navbar-collapse {
        padding: 0; margin-top: 0; border-radius: 0; background: transparent; box-shadow: none;
    }

    .navbar.style-17 .nav-side {
        margin-top: 0;
    }

    .navbar.style-17 .nav-side .butn {
        width: auto;
    }
}

/* ===== Homepage style-17 + global mobile enhancements ===== */
@media (max-width: 1199.98px) {
    .navbar.style-17 {
        background: rgba(255, 255, 255, .97) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
    }

    .navbar.style-17 .container-custom {
        padding-left: max(1rem, env(safe-area-inset-left, 0px));
        padding-right: max(1rem, env(safe-area-inset-right, 0px));
    }
}

@media (max-width: 991.98px) {
    .section-head.style-16 h2 {
        font-size: clamp(1.85rem, 5vw, 2.5rem);
    }

    .section-head.style-16 h3 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .tc-header-st17 {
        padding: 120px 0 70px;
    }

    .tc-header-st17 .info h6 {
        max-width: 100%;
        font-size: 12px;
        white-space: normal;
    }

    .tc-header-st17 .info .text {
        font-size: 15px;
    }

    .tc-header-st17 .hero-visual,
    .tc-header-st17 .imgs {
        max-width: 420px;
        margin-right: auto;
        margin-left: auto;
    }

    .tc-header-st17 .hero-visual .hero-core {
        margin-top: -40px;
    }

    .tc-header-st17 .btn-wrapper {
        margin-top: 10px;
    }

    .tc-header-st17 .btn-circle {
        width: 120px;
        height: 120px;
        margin-top: 0;
    }

    .tc-features-st17 {
        padding: 70px 0;
    }

    .tc-features-st17 .feature-card {
        min-height: auto;
    }

    .tc-about-st17 {
        padding: 70px 0;
    }

    .tc-about-st17 .main-img {
        height: 360px;
        margin-inline-end: 0;
    }

    .tc-about-st17 .sub-img {
        height: 280px;
    }

    .tc-about-st17 .dots {
        width: 80%;
        opacity: .35;
    }

    .tc-about-st17 .ab-cards .item {
        margin-top: 24px;
    }

    .tc-portfolio-st17 {
        padding: 70px 0;
    }

    .tc-portfolio-st17 .shap1 {
        display: none;
    }

    .tc-portfolio-st17 .social-wrapper {
        margin-top: 40px;
    }

    .tc-portfolio-st17 .social-wrapper .social-icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        text-align: center !important;
    }

    .tc-portfolio-st17 .social-wrapper .social-icons a {
        margin-inline-end: 0 !important;
    }

    .tc-process-st17 {
        padding: 70px 0;
    }

    .tc-process-st17 .lg-title {
        font-size: clamp(2rem, 8vw, 3rem);
        text-align: center;
    }

    .tc-process-st17 .cards::before {
        display: none;
    }

    .tc-choose-st17 {
        padding-bottom: 70px;
    }

    .tc-choose-st17 .img img {
        width: auto;
        max-width: min(100%, 480px);
        height: auto;
    }

    .tc-testimonials-st17 {
        padding: 70px 0;
    }

    .tc-testimonials-st17 .testi-card {
        padding: 28px;
    }

    .tc-testimonials-st17 .arrows {
        margin-left: 0 !important;
    }

    .tc-blog-st17 {
        padding: 70px 0;
    }

    .tc-blog-st17 .post-card {
        margin-bottom: 24px;
    }

    .tc-footer-st17 {
        padding-top: 60px;
    }

    .tc-footer-st17 .foot .foot-links {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 20px;
        text-align: left !important;
    }
}

@media (max-width: 767.98px) {
    .tc-header-st17 {
        padding: 110px 0 50px;
    }

    .tc-header-st17 .info h1 {
        font-size: clamp(2.1rem, 10vw, 2.85rem);
    }

    .tc-header-st17 .info h6 .avts {
        width: 28px;
        height: auto;
    }

    .tc-header-st17 .hero-visual {
        min-height: 300px;
    }

    .hero-particle-orbit {
        right: auto;
        left: 50%;
        width: min(320px, 92vw);
        margin-left: calc(min(320px, 92vw) / -2);
    }

    .tc-header-st17 .info .butn.bg-orange4 {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .tc-process-st17 .cards .row > [class*="col-"] .process-card,
    .tc-process-st17 .cards .row .col-lg-3:nth-of-type(even) .process-card {
        padding-top: 0;
    }

    .tc-process-st17 .cards .row > [class*="col-"] .process-card::after,
    .tc-process-st17 .cards .row .col-lg-3:nth-of-type(even) .process-card::after {
        display: none;
    }

    .tc-process-st17 .process-card {
        margin-bottom: 36px;
        padding: 24px 18px;
        border-radius: 16px;
        background: var(--jp-light);
    }

    .tc-process-st17 .process-card .num {
        width: 60px;
        height: 60px;
        font-size: 48px;
    }

    .tc-process-st17 .process-card h4 {
        font-size: 1.35rem;
    }

    .tc-about-st17 .main-img {
        height: 280px;
    }

    .tc-about-st17 .sub-img {
        height: 220px;
    }

    .tc-portfolio-st17 .card-item .img {
        height: 260px;
    }

    .tc-portfolio-st17 .card-item .info h6 {
        font-size: 1.4rem;
    }

    .tc-choose-st17 .info {
        padding: 0 12px;
    }

    .tc-testimonials-st17 .title-wrapper .row {
        flex-direction: column;
    }

    .tc-testimonials-st17 .arrows {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        gap: 10px;
    }

    .tc-footer-st17 .foot {
        margin-top: 40px;
        text-align: center;
    }

    .tc-footer-st17 .foot .col-lg-6 {
        text-align: center !important;
    }

    .tc-footer-st17 .foot .foot-links {
        justify-content: center;
        margin-top: 16px;
    }

    .tc-header-st17 .butn,
    .tc-footer-st17 .butn,
    .tc-portfolio-st17 .butn,
    .tc-blog-st17 .butn {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .to_top {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 479.98px) {
    .tc-header-st17 .btn-circle {
        width: 100px;
        height: 100px;
        font-size: 11px;
    }

    .tc-features-st17 .feature-card {
        padding: 20px;
    }

    .tc-features-st17 .feature-card .bars {
        overflow: hidden;
        max-width: 100%;
    }

    .tc-portfolio-st17 .card-item .img {
        height: 220px;
    }

    .section-head.style-16 .sub-title {
        padding: 6px 14px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    }
}

@media print {
    .navbar,
    .page-hero::before,
    .page-hero::after,
    .cta-band,
    .btn,
    .svc-nav-pills {
        display: none !important;
    }

    .page-hero {
        min-height: 0; padding: 30px 0; color: var(--jp-ink); background: var(--jp-white);
    }

    .page-hero h1 {
        color: var(--jp-ink);
    }

    .legal-content {
        padding: 0; background: var(--jp-white);
    }

    .legal-body {
        max-width: none; padding: 0; border: 0; box-shadow: none;
    }
}
