:root {
    --ork-red: #ed0c4f;
    --ork-red-dark: #c9003b;
    --ork-red-soft: #fff1f5;
    --ork-navy: #111b35;
    --ork-navy-soft: #1d2948;
    --ork-text: #5d6472;
    --ork-muted: #8d94a3;
    --ork-bg: #f7f9fd;
    --ork-border: #e9edf4;
    --ork-white: #ffffff;
    --ork-shadow: 0 22px 60px rgba(17, 27, 53, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    font-family: "Nunito", sans-serif;
    color: var(--ork-text);
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.nav-link,
.btn,
.section-label {
    font-family: "Rajdhani", sans-serif;
}

.top-red-line {
    position: fixed;
    z-index: 1040;
    top: 0;
    left: 0;
    width: 100%;
    height: 9px;
    background: linear-gradient(90deg, var(--ork-red), var(--ork-red-dark));
}

.section-padding {
    padding: 105px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 54px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ork-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 15px;
    margin-bottom: 12px;
}

.section-label::before {
    content: "";
    width: 30px;
    height: 3px;
    border-radius: 20px;
    background: var(--ork-red);
}

.section-title {
    color: var(--ork-navy);
    font-weight: 700;
    line-height: 1.05;
    font-size: clamp(34px, 4vw, 54px);
    margin-bottom: 18px;
}

.section-desc,
.section-text {
    font-size: 17px;
    line-height: 1.8;
}

.btn {
    border-radius: 999px;
    padding: 13px 27px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.btn-primary-ork {
    color: #fff;
    background: var(--ork-red);
    border: 1px solid var(--ork-red);
    box-shadow: 0 14px 28px rgba(237, 12, 79, 0.18);
}

.btn-primary-ork:hover {
    color: #fff;
    background: var(--ork-navy);
    border-color: var(--ork-navy);
    transform: translateY(-2px);
}

.btn-outline-ork {
    color: var(--ork-navy);
    background: #fff;
    border: 1px solid rgba(17, 27, 53, 0.16);
}

.btn-outline-ork:hover {
    color: #fff;
    background: var(--ork-navy);
    border-color: var(--ork-navy);
    transform: translateY(-2px);
}

.btn-light-ork {
    color: var(--ork-navy);
    background: #fff;
    border: 1px solid #fff;
}

.btn-light-ork:hover {
    color: #fff;
    background: var(--ork-red);
    border-color: var(--ork-red);
}

/* Navbar */
.navbar-ork {
    top: 9px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(233, 237, 244, 0.9);
    padding: 17px 0;
    transition: all 0.25s ease;
}

.navbar-ork.scrolled {
    padding: 10px 0;
    box-shadow: 0 12px 36px rgba(17, 27, 53, 0.08);
}

.navbar-brand img {
    height: 46px;
}

.navbar-toggler {
    color: var(--ork-navy);
}

.navbar-nav .nav-link {
    color: var(--ork-navy);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.35px;
    padding: 10px 13px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--ork-red);
}

.btn-nav {
    color: #fff;
    background: var(--ork-navy);
    border: 1px solid var(--ork-navy);
    padding: 10px 22px;
}

.btn-nav:hover {
    color: #fff;
    background: var(--ork-red);
    border-color: var(--ork-red);
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 155px 0 95px;
    background:
        radial-gradient(circle at 10% 15%, rgba(237, 12, 79, 0.08), transparent 34%),
        radial-gradient(circle at 90% 20%, rgba(17, 27, 53, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(17, 27, 53, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 27, 53, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 80%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--ork-red-soft);
    color: var(--ork-red);
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 22px;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.hero-title {
    color: var(--ork-navy);
    font-weight: 700;
    line-height: 0.98;
    font-size: clamp(43px, 6vw, 76px);
    margin-bottom: 24px;
}

.hero-text {
    font-size: 18px;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-visual {
    position: relative;
    z-index: 2;
    padding: 16px;
    border-radius: 38px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(233, 237, 244, 0.9);
    box-shadow: var(--ork-shadow);
}

.hero-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.hero-image-wrap img {
    width: 100%;
    min-height: 510px;
    object-fit: cover;
    border-radius: 30px;
    transform: scale(1.02);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(17,27,53,.36), rgba(237,12,79,.16)),
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(17,27,53,.18));
    pointer-events: none;
}

.visual-glow {
    position: absolute;
    inset: auto auto -26px 44px;
    width: 70%;
    height: 60px;
    background: rgba(237,12,79,.18);
    filter: blur(30px);
    z-index: -1;
}

.visual-panel {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 17px;
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.7);
    box-shadow: 0 18px 44px rgba(17,27,53,.14);
}

.panel-icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: var(--ork-red-soft);
    color: var(--ork-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.panel-icon svg {
    width: 21px;
    height: 21px;
}

.visual-panel strong {
    display: block;
    color: var(--ork-navy);
    font-family: "Rajdhani", sans-serif;
    font-size: 21px;
    line-height: 1;
}

.visual-panel span {
    display: block;
    font-size: 13px;
    color: var(--ork-muted);
    font-weight: 800;
    white-space: nowrap;
}

.panel-one {
    left: -20px;
    top: 58px;
}

.panel-two {
    right: -18px;
    bottom: 72px;
}

.panel-three {
    left: 48px;
    bottom: -22px;
}

/* About */
.about-section {
    background: #fff;
}

.about-unified-card {
    position: relative;
    overflow: hidden;
    padding: 56px;
    border-radius: 40px;
    background:
        radial-gradient(circle at top right, rgba(237,12,79,.10), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border: 1px solid var(--ork-border);
    box-shadow: var(--ork-shadow);
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-content .section-title {
    margin-bottom: 22px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.about-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--ork-border);
    color: var(--ork-navy);
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 10px 26px rgba(17,27,53,.04);
}

.about-tags svg {
    width: 17px;
    height: 17px;
    color: var(--ork-red);
}

.about-timeline {
    position: relative;
    z-index: 2;
    padding: 34px;
    border-radius: 32px;
    background: rgba(255,255,255,.76);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(233,237,244,.9);
}

.timeline-item {
    display: flex;
    gap: 18px;
    position: relative;
    padding-bottom: 28px;
}

.timeline-item:not(:last-of-type)::after {
    content: "";
    position: absolute;
    left: 38px;
    top: 50px;
    width: 2px;
    height: calc(100% - 34px);
    background: var(--ork-border);
}

.timeline-year {
    position: relative;
    z-index: 2;
    min-width: 76px;
    height: 44px;
    border-radius: 16px;
    background: var(--ork-navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.timeline-content h5 {
    color: var(--ork-navy);
    font-weight: 700;
    font-size: 23px;
    margin-bottom: 6px;
}

.timeline-content p {
    line-height: 1.65;
    margin: 0;
}

.timeline-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.timeline-summary div {
    padding: 18px 14px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--ork-border);
    text-align: center;
    box-shadow: 0 10px 26px rgba(17,27,53,.04);
}

.timeline-summary strong {
    display: block;
    color: var(--ork-navy);
    font-family: "Rajdhani", sans-serif;
    font-size: 21px;
    line-height: 1;
    margin-bottom: 7px;
}

.timeline-summary span {
    display: block;
    color: var(--ork-muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.about-bg-icon {
    position: absolute;
    right: -45px;
    bottom: -55px;
    color: rgba(237,12,79,.055);
    transform: rotate(-12deg);
}

.about-bg-icon svg {
    width: 240px;
    height: 240px;
}

/* Services */
.services-section {
    background: var(--ork-bg);
}

.service-mobile {
    display: none;
}

.service-card {
    position: relative;
    height: 100%;
    padding: 38px;
    border-radius: 34px;
    background: #fff;
    border: 1px solid var(--ork-border);
    box-shadow: 0 16px 45px rgba(17,27,53,.055);
    transition: all .25s ease;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    right: -80px;
    top: -80px;
    background: rgba(237,12,79,.07);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--ork-shadow);
}

.service-card.featured {
    background:
        radial-gradient(circle at top right, rgba(237,12,79,.17), transparent 38%),
        var(--ork-navy);
    border-color: var(--ork-navy);
    color: rgba(255,255,255,.78);
}

.service-icon {
    position: relative;
    z-index: 2;
    width: 66px;
    height: 66px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ork-red-soft);
    color: var(--ork-red);
    margin-bottom: 26px;
}

.service-card.featured .service-icon {
    background: rgba(255,255,255,.1);
    color: #fff;
}

.service-icon svg {
    width: 29px;
    height: 29px;
}

.service-card h3 {
    position: relative;
    z-index: 2;
    color: var(--ork-navy);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 16px;
}

.service-card.featured h3 {
    color: #fff;
}

.service-card p {
    position: relative;
    z-index: 2;
    line-height: 1.75;
    margin-bottom: 22px;
}

.service-card ul {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ork-navy);
    font-weight: 800;
    font-size: 14px;
}

.service-card.featured li {
    color: rgba(255,255,255,.9);
}

.service-card li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--ork-red);
    flex: 0 0 auto;
}

.service-slider-top {
    display: none;
}

/* Brand */
.product-section {
    background: #fff;
}

.brand-card {
    position: relative;
    min-height: 430px;
    border-radius: 36px;
    overflow: hidden;
    background-position: center;
    background-size: 108%;
    background-repeat: no-repeat;
    border: 1px solid var(--ork-border);
    box-shadow: var(--ork-shadow);
    transition: background-size .45s ease, transform .25s ease, box-shadow .25s ease;
}

.brand-card:hover {
    background-size: 116%;
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(17,27,53,.12);
}

.brand-overlay {
    position: absolute;
    inset: 0;
    transition: opacity .35s ease;
}

.brand-card:hover .brand-overlay {
    opacity: .96;
}

.brand-dark .brand-overlay {
    background:
        linear-gradient(135deg, rgba(17,27,53,.92), rgba(17,27,53,.62)),
        radial-gradient(circle at top right, rgba(237,12,79,.4), transparent 36%);
}

.brand-light .brand-overlay {
    background:
        linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.74)),
        radial-gradient(circle at top right, rgba(237,12,79,.16), transparent 38%);
}

.brand-content {
    position: relative;
    z-index: 2;
    padding: 46px;
    max-width: 560px;
}

.brand-icon {
    width: 64px;
    height: 64px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}

.brand-dark .brand-icon {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.brand-light .brand-icon {
    background: var(--ork-red-soft);
    color: var(--ork-red);
}

.brand-icon svg {
    width: 30px;
    height: 30px;
}

.brand-card h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 14px;
}

.brand-dark h3 {
    color: #fff;
}

.brand-light h3 {
    color: var(--ork-navy);
}

.brand-card p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.brand-dark p {
    color: rgba(255,255,255,.8);
}

.brand-light p {
    color: var(--ork-text);
}

/* Portfolio */
.portfolio-section {
    background: var(--ork-bg);
}

.portfolio-card {
    height: 100%;
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--ork-border);
    box-shadow: 0 14px 42px rgba(17,27,53,.045);
    transition: all .25s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ork-shadow);
}

.portfolio-card span {
    display: inline-flex;
    padding: 6px 13px;
    border-radius: 999px;
    color: var(--ork-red);
    background: var(--ork-red-soft);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
}

.portfolio-card h5 {
    color: var(--ork-navy);
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 10px;
}

.portfolio-card p {
    line-height: 1.75;
    margin: 0;
}

/* CTA */
.contact-section {
    background: #fff;
}

.cta-box {
    position: relative;
    overflow: hidden;
    padding: 56px;
    border-radius: 40px;
    background:
        radial-gradient(circle at top right, rgba(237,12,79,.13), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f7f9fd 100%);
    border: 1px solid var(--ork-border);
    box-shadow: var(--ork-shadow);
}

.cta-shape {
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    bottom: -120px;
    border-radius: 999px;
    background: rgba(237,12,79,.08);
}

.cta-box p {
    font-size: 17px;
    line-height: 1.8;
    max-width: 660px;
}

.cta-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.cta-points div {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--ork-border);
    color: var(--ork-navy);
    font-weight: 800;
    font-size: 14px;
}

.cta-points svg {
    width: 17px;
    height: 17px;
    color: var(--ork-red);
}

.contact-card {
    position: relative;
    z-index: 2;
    padding: 30px;
    border-radius: 30px;
    background: var(--ork-navy);
    box-shadow: 0 20px 50px rgba(17,27,53,.16);
}

.contact-card h4 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-list {
    display: grid;
    gap: 12px;
}

.contact-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.88);
    font-weight: 800;
}

.contact-list a:hover {
    background: rgba(255,255,255,.13);
    color: #fff;
}

.contact-list svg {
    width: 20px;
    height: 20px;
    color: var(--ork-red);
}

/* Footer */
.footer-main {
    padding: 62px 0;
    background: var(--ork-navy);
    color: rgba(255,255,255,.68);
}

.footer-main h4 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-main h5 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-main p {
    max-width: 560px;
    line-height: 1.75;
    margin: 0;
}

.footer-brand-box {
}

.footer-brand-links {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
}

.footer-brand-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.78);
    font-weight: 900;
    transition: all .25s ease;
}

.footer-brand-links a:hover {
    color: #fff;
    background: var(--ork-red);
    transform: translateX(4px);
}

.footer-brand-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding: 18px 0;
    background: #0b1226;
    color: rgba(255,255,255,.58);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    html {
        scroll-padding-top: 84px;
    }

    body {
        background: #f8faff;
        padding-bottom: 0;
    }

    .top-red-line {
        height: 7px;
    }

    .navbar-ork {
        top: 7px;
        padding: 12px 0;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar-toggler {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--ork-red-soft);
        color: var(--ork-red);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-collapse {
        margin-top: 0;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .navbar-collapse.collapsing {
        overflow: hidden;
        transition: height .25s ease;
    }

    .navbar-collapse.show .navbar-nav,
    .navbar-collapse.collapsing .navbar-nav {
        margin-top: 14px;
        padding: 14px;
        border-radius: 28px;
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(18px);
        border: 1px solid var(--ork-border);
        box-shadow: 0 22px 60px rgba(17,27,53,.12);
    }

    .navbar-collapse:not(.show):not(.collapsing) .navbar-nav {
        margin-top: 0;
        padding: 0;
        border: 0;
        box-shadow: none;
    }

    .navbar-nav {
        gap: 6px;
    }

    .navbar-nav .nav-link {
        padding: 13px 16px;
        border-radius: 18px;
        background: #f8faff;
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
        color: #fff;
        background: var(--ork-red);
    }

    .btn-nav {
        width: 100%;
        text-align: center;
        margin-top: 8px;
        border-radius: 18px;
    }

    .section-padding {
        padding: 78px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 125px 0 72px;
    }

    .hero-title {
        font-size: 40px;
    }
    .hero-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-image-wrap img {
        min-height: 380px;
    }

    .panel-one {
        left: 22px;
    }

    .panel-two {
        right: 22px;
    }

    .panel-three {
        left: 34px;
    }
    .about-unified-card,
    .cta-box {
        padding: 34px;
        border-radius: 32px;
    }
    .about-tags {
        gap: 4px;
    }
    .about-tags span {
        gap: 4px;
        padding: 8px 6px;
        font-size: 10px;
        border-radius: 6px;
    }
    .about-tags svg {
        width: 14px;
        height: 14px;
    }
    .about-timeline {
        padding: 24px;
        border-radius: 20px;
    }
    .timeline-content h5 {
        font-size: 20px;
        margin-bottom: 6px;
    }
    .timeline-content p {
        font-size: 14px;
        line-height: 1.3
    }
    .timeline-summary {
        gap: 8px;
    }
    .timeline-summary div {
        padding: 14px 10px;
        border-radius: 10px;
    }
    .timeline-summary strong {
        font-size: 18px;
        margin-bottom: 7px;
    }
    .timeline-summary span {
        font-size: 10px;
        line-height: 1.35;
    }
    .section-heading {
        margin-bottom: 20px
    }
    .service-desktop {
        display: none;
    }
    .service-mobile {
        display: block;
        position: relative;
    }
    .service-mobile .carousel-inner {
        overflow: visible;
    }
    .service-mobile .carousel-item {
        padding: 0 4px 8px;
    }
    .service-mobile .service-card {
        min-height: 560px;
    }
    .service-slider-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 18px;
        padding: 12px;
        border-radius: 24px;
        background: rgba(255,255,255,.85);
        border: 1px solid var(--ork-border);
        box-shadow: 0 14px 36px rgba(17,27,53,.06);
    }

    .service-slider-hint {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--ork-navy);
        font-size: 13px;
        font-weight: 900;
    }

    .service-slider-hint svg {
        width: 18px;
        height: 18px;
        color: var(--ork-red);
    }

    .service-slider-nav {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        flex: 0 0 auto;
    }

    .service-slider-btn {
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 15px;
        background: var(--ork-red-soft);
        color: var(--ork-red);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all .25s ease;
    }

    .service-slider-btn:hover {
        background: var(--ork-red);
        color: #fff;
    }

    .service-slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .service-indicators {
        position: static;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .service-indicators [data-bs-target] {
        width: 9px;
        height: 9px;
        border: 0;
        border-radius: 999px;
        background: rgba(17,27,53,.22);
        opacity: 1;
        margin: 0;
        transition: all .25s ease;
    }

    .service-indicators .active {
        width: 28px;
        background: var(--ork-red);
    }

    .brand-card {
        min-height: 390px;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-padding {
        padding: 50px 0;
    }

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

    .section-desc,
    .section-text {
        font-size: 16px;
        line-height: 1.4
    }

    .hero-section {
        padding-top: 112px;
    }

    .hero-badge {
        font-size: 13px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.3
    }

    .hero-actions .btn {
        width: 47%;
    }

    .hero-visual {
        padding: 11px;
        border-radius: 28px;
    }

    .hero-image-wrap,
    .hero-image-wrap img {
        border-radius: 22px;
    }
    .hero-image-wrap img {
        min-height: 300px;
    }
    .visual-panel {
        position: static;
        margin-top: 12px;
        border-radius: 20px;
    }
    .visual-panel strong {
        font-size: 16px;
    }
    .visual-panel span {
        font-size: 12px;
    }
    .about-unified-card,
    .service-card,
    .brand-card,
    .portfolio-card,
    .cta-box,
    .contact-card {
        border-radius: 10px;
    }
    .about-unified-card,
    .cta-box,
    .contact-card {
        padding: 14px;
    }
    .about-timeline {
        padding: 0;
        border-radius: 0;
        background: none;
        border: none;
    }

    .timeline-item {
        gap: 14px;
    }

    .timeline-year {
        min-width: 68px;
    }


    .service-slider-top {
        align-items: stretch;
        flex-direction: column;
        padding: 14px;
    }

    .service-slider-hint {
        justify-content: center;
        text-align: center;
    }

    .service-slider-nav {
        width: 100%;
        justify-content: space-between;
    }

    .service-mobile .service-card {
        min-height: 590px;
        padding: 24px 20px;
    }

    .service-card h3 {
        font-size: 28px;
    }

    .brand-card {
        min-height: 420px;
        background-size: cover;
    }

    .brand-card:hover {
        background-size: cover;
        transform: none;
    }

    .brand-content {
        padding: 34px;
    }

    .brand-card h3 {
        font-size: 30px;
    }
    .brand-card p {
        font-size: 16px;
        line-height: 1.4;
    }
    .cta-points {
        display: grid;
    }
    .footer-main,
    .footer-bottom {
        text-align: center;
    }
    .footer-main p {
        margin: 0 auto;
    }
    .footer-brand-links a {
        gap: 10px;
        padding: 10px;
        border-radius: 14px;
        font-size: 14px;
        transition: all .25s ease;
        justify-content: center;
    }
}