 /* ===============================
   SCOTT PREMIUM HEADER
================================ */

:root {
    --scott-blue: #008bd2;
    --scott-blue-dark: #0066a6;
    --scott-black: #070707;
    --scott-soft: #f4f9fd;
}

.scott-header-pro {
    position: relative;
    z-index: 999;
    background: #fff;
    padding: 18px 0;
    overflow: visible;
}

.scott-header-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 38%;
    height: 100%;
    background: linear-gradient(135deg, #07111a, #101820);
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
    z-index: -1;
}

.scott-pro-navbar {
    position: relative;
    min-height: 84px;
    padding: 0;
}

/* Logo */

.scott-pro-logo {
    position: relative;
    min-width: 235px;
    height: 78px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
    overflow: hidden;
}

.scott-pro-logo::before {
    /* content: "";
    position: absolute;
    left: -35px;
    top: 0;
    width: 75px;
    height: 100%;
    background: var(--scott-blue);
    transform: skewX(-24deg); */
}

.scott-pro-logo::after {
    /* content: "";
    position: absolute;
    right: 18px;
    bottom: 12px;
    width: 58px;
    height: 4px;
    background: linear-gradient(90deg, var(--scott-blue), transparent);
    border-radius: 20px; */
}

.scott-pro-logo img {
    position: relative;
    z-index: 2;
    width: 160px;
    height: auto;
}

/* Menü Kapsül */

.scott-pro-menu-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(0, 139, 210, 0.14);
    border-radius: 999px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(14px);
}

.scott-pro-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.scott-pro-menu .nav-link {
    position: relative;
    height: 48px;
    padding: 0 18px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #101820;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -0.2px;
    border-radius: 999px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.scott-pro-menu .nav-link span {
    position: relative;
    z-index: 2;
}

.scott-pro-menu .nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--scott-blue), var(--scott-blue-dark));
    opacity: 0;
    transform: scale(0.75);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.scott-pro-menu .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 7px;
    width: 5px;
    height: 5px;
    background: var(--scott-blue);
    border-radius: 50%;
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
    transition: all 0.3s ease;
}

.scott-pro-menu .nav-link:hover {
    color: var(--scott-blue);
    background: rgba(0, 139, 210, 0.08);
}

.scott-pro-menu .nav-link.active {
    color: #fff !important;
    box-shadow: 0 12px 25px rgba(0, 139, 210, 0.30);
}

.scott-pro-menu .nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.scott-pro-menu .nav-link.active::after {
    opacity: 1;
    background: #fff;
    transform: translateX(-50%) translateY(0);
}

.scott-pro-menu .dropdown-toggle::after {
    position: relative;
    z-index: 3;
    margin-left: 8px;
    border-top-color: currentColor;
}

/* Dropdown */

.scott-mega-menu {
    min-width: 310px;
    padding: 14px;
    border: 0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
    margin-top: 18px !important;
}

.scott-mega-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 42px;
    width: 18px;
    height: 18px;
    background: #fff;
    transform: rotate(45deg);
}

.scott-mega-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    color: #101820;
    transition: all 0.3s ease;
}

.scott-mega-menu .dropdown-item i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 139, 210, 0.10);
    color: var(--scott-blue);
    border-radius: 15px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.scott-mega-menu .dropdown-item strong {
    display: block;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 3px;
}

.scott-mega-menu .dropdown-item small {
    display: block;
    color: #667085;
    font-size: 12px;
    font-weight: 600;
}

.scott-mega-menu .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(0, 139, 210, 0.10), rgba(0, 139, 210, 0.03));
    transform: translateX(5px);
}

.scott-mega-menu .dropdown-item:hover i {
    background: var(--scott-blue);
    color: #fff;
}

/* Sağ Butonlar */

.scott-pro-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.scott-catalog-btn,
.scott-offer-btn {
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 19px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.scott-catalog-btn {
    color: #101820;
    background: #f1f6fa;
}

.scott-catalog-btn:hover {
    color: var(--scott-blue);
    background: rgba(0, 139, 210, 0.10);
}
 
.hc-gallery-card {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.hc-gallery-card a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.hc-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s ease;
}

.hc-gallery-overlay {
    position: absolute;
    inset: 0;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.78) 100% );
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

    .hc-gallery-overlay span {
        display: inline-block;
        width: fit-content;
        margin-bottom: 10px;
        padding: 7px 16px;
        border-radius: 50px;
        background: #d9a441;
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        line-height: 1;
    }

    .hc-gallery-overlay h4 {
        margin: 0;
        color: #ffffff;
        font-size: 24px;
        font-weight: 800;
        line-height: 1.2;
    }

.hc-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
}

    .hc-gallery-card:hover img {
        transform: scale(1.1);
    }

    .hc-gallery-card:hover .hc-gallery-overlay {
        opacity: 1;
        visibility: visible;
    }

@media (max-width: 991px) {
    .hc-gallery-card {
        height: 280px;
    }

    .hc-gallery-overlay h4 {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .hc-gallery-card {
        height: 250px;
        border-radius: 18px;
    }

    .hc-gallery-overlay {
        padding: 22px;
        opacity: 1;
        visibility: visible;
    }

        .hc-gallery-overlay h4 {
            font-size: 20px;
        }
}

 
.scott-offer-btn {
    color: #fff;
    background: #090909;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.scott-offer-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--scott-blue), var(--scott-blue-dark));
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 139, 210, 0.34);
}

/* Mobile Toggle */

.scott-pro-toggle {
    width: 48px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 15px;
    background: var(--scott-blue);
    box-shadow: none !important;
}

.scott-pro-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 5px auto;
    background: #000;
    border-radius: 20px;
}

/* Desktop Hover Dropdown */

@media (min-width: 992px) {
    .scott-pro-dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Responsive */

@media (max-width: 1199px) {
    .scott-pro-menu .nav-link {
        padding: 0 13px !important;
        font-size: 13px;
    }

    .scott-catalog-btn {
        display: none;
    }

    .scott-pro-logo {
        min-width: 210px;
    }

    .scott-pro-logo img {
        width: 145px;
    }
}

@media (max-width: 991px) {
    .scott-header-pro {
        padding: 12px 0;
    }

    .scott-header-bg {
        width: 70%;
    }

    .scott-pro-navbar {
        min-height: 70px;
    }

    .scott-pro-logo {
        min-width: auto;
        height: 62px;
        padding: 0 22px;
        border-radius: 18px;
    }

    .scott-pro-logo img {
        width: 125px;
    }

    .navbar-collapse {
        margin-top: 18px;
    }

    .scott-pro-menu-wrap {
        width: 100%;
        display: block;
        padding: 16px;
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
    }

    .scott-pro-menu {
        gap: 8px;
    }

    .scott-pro-menu .nav-link {
        width: 100%;
        justify-content: flex-start;
        height: 50px;
        padding: 0 18px !important;
        background: #f5f9fc;
    }

    .scott-pro-menu .nav-link::after {
        display: none;
    }

    .scott-mega-menu {
        min-width: 100%;
        margin-top: 8px !important;
        box-shadow: none;
        background: #f5f9fc;
        border-radius: 18px;
    }

    .scott-mega-menu::before {
        display: none;
    }

    .scott-mega-menu .dropdown-item {
        background: #fff;
        margin-bottom: 8px;
    }

    .scott-pro-actions {
        margin-top: 12px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .scott-catalog-btn,
    .scott-offer-btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .scott-pro-actions {
        grid-template-columns: 1fr;
    }

    .scott-pro-logo img {
        width: 112px;
    }

    .scott-pro-logo {
        height: 58px;
        padding: 0 18px;
    }
}
















 /* ===============================
   SCOTT PROFESSIONAL HERO
================================ */

.scott-hero-premium {
    position: relative;
    overflow: hidden;
    padding: 115px 0 120px;
    background:
        linear-gradient(115deg, #05080c 0%, #101820 52%, #f4f9fc 52.2%, #ffffff 100%);
}

.scott-hero-premium::before {
    content: "";
    position: absolute;
    left: -160px;
    top: -180px;
    width: 520px;
    height: 520px;
    background: rgba(0, 139, 210, 0.18);
    border-radius: 50%;
    filter: blur(40px);
}

.scott-hero-premium::after {
    content: "";
    position: absolute;
    right: -220px;
    bottom: -220px;
    width: 540px;
    height: 540px;
    background: rgba(0, 139, 210, 0.12);
    border-radius: 50%;
    filter: blur(45px);
}

.scott-hero-shape {
    position: absolute;
    height: 30px;
    background: linear-gradient(90deg, #008bd2, rgba(0, 139, 210, 0));
    z-index: 1;
}

.scott-hero-shape.shape-top {
    top: 48px;
    left: 5%;
    width: 58%;
    clip-path: polygon(4% 0, 100% 0, 95% 100%, 0 100%);
}

.scott-hero-shape.shape-bottom {
    right: 5%;
    bottom: 45px;
    width: 55%;
    background: linear-gradient(270deg, #008bd2, rgba(0, 139, 210, 0));
    clip-path: polygon(0 0, 96% 0, 100% 100%, 5% 100%);
}

.scott-hero-text {
    position: relative;
    z-index: 3;
    max-width: 650px;
}

.scott-small-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 11px 18px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 139, 210, 0.35);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.scott-small-title i {
    color: #008bd2;
}

.scott-hero-text h1 {
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 64px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -2.5px;
}

.scott-hero-text h1 span {
    display: block;
    color: #008bd2;
}

.scott-hero-text p {
    max-width: 540px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
}

.scott-hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.scott-btn-primary,
.scott-btn-outline {
    min-height: 56px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    transition: all 0.3s ease;
}

.scott-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #008bd2, #0066a6);
    box-shadow: 0 18px 40px rgba(0, 139, 210, 0.35);
}

.scott-btn-primary:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 24px 55px rgba(0, 139, 210, 0.45);
}

.scott-btn-outline {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.scott-btn-outline:hover {
    color: #101820;
    background: #ffffff;
    transform: translateY(-3px);
}

.scott-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 620px;
}

.scott-hero-stats div {
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.scott-hero-stats strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
}

.scott-hero-stats span {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
}

/* RIGHT IMAGE AREA */

.scott-hero-image-area {
    position: relative;
    z-index: 3;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scott-product-frame {
    position: relative;
    width: 470px;
    height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(145deg, #ffffff, #eef6fb);
    border-radius: 42px;
    box-shadow:
        0 35px 85px rgba(15, 23, 42, 0.18),
        inset 0 0 0 10px rgba(0, 139, 210, 0.04);
    border: 1px solid rgba(0, 139, 210, 0.16);
}

.scott-product-frame::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 42px;
    width: 110px;
    height: 300px;
    background: #008bd2;
    clip-path: polygon(20% 0, 100% 8%, 80% 100%, 0 92%);
    border-radius: 16px;
    z-index: -1;
}

.scott-product-frame::after {
    content: "";
    position: absolute;
    right: 32px;
    bottom: 30px;
    width: 160px;
    height: 8px;
    background: linear-gradient(90deg, #008bd2, transparent);
    border-radius: 999px;
}

.scott-product-frame img {
    max-width: 86%;
    max-height: 86%;
    object-fit: contain;
    filter: drop-shadow(0 25px 35px rgba(15, 23, 42, 0.22));
}

.scott-info-card {
    position: absolute;
    width: 255px;
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid rgba(0, 139, 210, 0.15);
    border-radius: 22px;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.15);
}

.scott-info-card i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #008bd2, #0066a6);
    border-radius: 16px;
    font-size: 18px;
}

.scott-info-card strong {
    display: block;
    margin-bottom: 4px;
    color: #101820;
    font-size: 15px;
    font-weight: 900;
}

.scott-info-card span {
    display: block;
    color: #667085;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 600;
}

.scott-info-card.card-left {
    left: 0;
    top: 80px;
}

.scott-info-card.card-right {
    right: 0;
    bottom: 75px;
}

/* RESPONSIVE */

@media (max-width: 1199px) {
    .scott-hero-text h1 {
        font-size: 54px;
    }

    .scott-product-frame {
        width: 410px;
        height: 410px;
    }

    .scott-info-card {
        width: 230px;
    }
}

@media (max-width: 991px) {
    .scott-hero-premium {
        padding: 85px 0 95px;
        background:
            linear-gradient(160deg, #05080c 0%, #101820 66%, #f4f9fc 66.2%, #ffffff 100%);
    }

    .scott-hero-text h1 {
        font-size: 44px;
        letter-spacing: -1.5px;
    }

    .scott-hero-text p {
        font-size: 16px;
    }

    .scott-hero-image-area {
        margin-top: 60px;
    }

    .scott-hero-shape {
        opacity: 0.45;
    }
}

@media (max-width: 575px) {
    .scott-hero-premium {
        padding: 65px 0 75px;
        background: #07111a;
    }

    .scott-hero-shape {
        display: none;
    }

    .scott-hero-text h1 {
        font-size: 36px;
        line-height: 1.12;
        letter-spacing: -1px;
    }

    .scott-hero-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .scott-btn-primary,
    .scott-btn-outline {
        width: 100%;
    }

    .scott-hero-stats {
        grid-template-columns: 1fr;
    }

    .scott-hero-image-area {
        display: block;
        min-height: auto;
        margin-top: 42px;
    }

    .scott-product-frame {
        width: 100%;
        height: 330px;
        border-radius: 30px;
    }

    .scott-product-frame::before {
        width: 70px;
        height: 210px;
        left: -12px;
    }

    .scott-info-card {
        position: relative;
        width: 100%;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        margin-top: 15px;
    }
}

















/* ===============================
   SCOTT ABOUT SECTION
================================ */

.scott-about-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: #ffffff;
}

.scott-about-shape {
    position: absolute;
    right: -180px;
    top: 80px;
    width: 460px;
    height: 460px;
    background: rgba(0, 139, 210, 0.08);
    border-radius: 50%;
    filter: blur(8px);
}

/* LEFT VISUAL */

.scott-about-visual {
    position: relative;
    padding: 34px;
}

.scott-about-image {
    position: relative;
    overflow: hidden;
    height: 520px;
    border-radius: 36px;
    background: #f4f9fc;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
}

.scott-about-image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 110px;
    height: 100%;
    background: #008bd2;
    clip-path: polygon(0 0, 72% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.scott-about-image::after {
    content: "";
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 170px;
    height: 8px;
    background: linear-gradient(90deg, #008bd2, transparent);
    border-radius: 999px;
    z-index: 3;
}

.scott-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.02) contrast(1.02);
}

.scott-about-logo-card {
    position: absolute;
    left: 0;
    top: 70px;
    width: 235px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 139, 210, 0.14);
    border-radius: 24px;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.16);
    z-index: 5;
}

.scott-about-logo-card img {
    width: 145px;
    height: auto;
    display: block;
    margin-bottom: 12px;
}

.scott-about-logo-card span {
    display: block;
    color: #667085;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;
}

.scott-about-experience {
    position: absolute;
    right: 0;
    bottom: 72px;
    width: 245px;
    padding: 24px;
    background: #101820;
    border-radius: 26px;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.22);
    z-index: 5;
}

.scott-about-experience::before {
    content: "";
    position: absolute;
    right: 18px;
    top: 18px;
    width: 54px;
    height: 5px;
    background: #008bd2;
    border-radius: 999px;
}

.scott-about-experience strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 2px;
}

.scott-about-experience span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;
}

/* RIGHT CONTENT */

.scott-about-content {
    position: relative;
    z-index: 3;
    padding-left: 25px;
}

.scott-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 10px 16px;
    color: #0066a6;
    background: rgba(0, 139, 210, 0.09);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
}

.scott-section-tag i {
    color: #008bd2;
}

.scott-about-content h2 {
    max-width: 620px;
    margin-bottom: 24px;
    color: #101820;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.scott-about-content h2 strong {
    display: block;
    color: #008bd2;
}

.scott-about-content p {
    max-width: 620px;
    margin-bottom: 18px;
    color: #667085;
    font-size: 16px;
    line-height: 1.85;
    font-weight: 500;
}

.scott-about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.scott-about-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f7fbfd;
    border: 1px solid rgba(0, 139, 210, 0.10);
    border-radius: 22px;
    transition: all 0.3s ease;
}

.scott-about-feature:hover {
    transform: translateX(6px);
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.scott-about-feature .icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #008bd2, #0066a6);
    color: #ffffff;
    border-radius: 17px;
    font-size: 20px;
}

.scott-about-feature h4 {
    margin-bottom: 6px;
    color: #101820;
    font-size: 17px;
    font-weight: 900;
}

.scott-about-feature span {
    display: block;
    color: #667085;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

/* BOTTOM */

.scott-about-bottom {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.scott-about-btn {
    min-height: 56px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    background: linear-gradient(135deg, #008bd2, #0066a6);
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(0, 139, 210, 0.30);
    transition: all 0.3s ease;
}

.scott-about-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 24px 55px rgba(0, 139, 210, 0.42);
}

.scott-about-contact {
    display: flex;
    align-items: center;
    gap: 13px;
}

.scott-about-contact i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #008bd2;
    background: rgba(0, 139, 210, 0.10);
    border-radius: 50%;
    font-size: 18px;
}

.scott-about-contact span {
    display: block;
    margin-bottom: 2px;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
}

.scott-about-contact strong {
    display: block;
    color: #101820;
    font-size: 16px;
    font-weight: 900;
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .scott-about-section {
        padding: 80px 0;
    }

    .scott-about-content {
        padding-left: 0;
        margin-top: 45px;
    }

    .scott-about-content h2 {
        font-size: 38px;
    }

    .scott-about-image {
        height: 440px;
    }
}

@media (max-width: 575px) {
    .scott-about-section {
        padding: 65px 0;
    }

    .scott-about-visual {
        padding: 0;
    }

    .scott-about-image {
        height: 330px;
        border-radius: 26px;
    }

    .scott-about-image::before {
        width: 72px;
    }

    .scott-about-logo-card,
    .scott-about-experience {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
    }

    .scott-about-content h2 {
        font-size: 31px;
        letter-spacing: -0.8px;
    }

    .scott-about-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .scott-about-feature {
        padding: 17px;
    }

    .scott-about-bottom {
        display: grid;
        grid-template-columns: 1fr;
    }

    .scott-about-btn {
        width: 100%;
    }
}








/* ===============================
   SCOTT PROFESSIONAL CATALOG
================================ */

.scott-catalog-section {
    position: relative;
    padding: 105px 0;
    background: #f5f8fb;
    overflow: hidden;
}

.scott-catalog-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 360px;
    background: #101820;
}

.scott-catalog-section::after {
    /* content: "";
    position: absolute;
    right: -120px;
    top: 95px;
    width: 520px;
    height: 130px;
    background: #008bd2;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    opacity: 0.95; */
}

.scott-catalog-section .container {
    position: relative;
    z-index: 2;
}

/* Header */

.scott-catalog-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 48px;
}

.scott-catalog-label {
    position: relative;
    display: inline-block;
    margin-bottom: 14px;
    padding-left: 54px;
    color: #008bd2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.scott-catalog-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 38px;
    height: 3px;
    background: #008bd2;
    transform: translateY(-50%);
}

.scott-catalog-head h2 {
    margin: 0;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1.4px;
}

.scott-catalog-all {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    background: #008bd2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    border-radius: 0;
    transition: all 0.3s ease;
}

.scott-catalog-all:hover {
    color: #101820;
    background: #ffffff;
}

/* Card */

.scott-catalog-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e4eaf0;
    transition: all 0.35s ease;
}

.scott-catalog-card:hover {
    transform: translateY(-8px);
    border-color: #008bd2;
    box-shadow: 0 28px 65px rgba(16, 24, 32, 0.16);
}

/* Image Area */

.scott-catalog-img {
    position: relative;
    height: 295px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
    text-decoration: none;
}

.scott-catalog-img::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid #eef2f5;
}

.scott-catalog-img::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 86px;
    height: 86px;
    background: #008bd2;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.95;
}

.scott-catalog-img img {
    position: relative;
    z-index: 2;
    max-width: 92%;
    max-height: 220px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 22px 25px rgba(16, 24, 32, 0.16));
    transition: all 0.35s ease;
}

.scott-catalog-card:hover .scott-catalog-img img {
    transform: scale(1.06);
}

/* Body */

.scott-catalog-body {
    position: relative;
    padding: 26px 28px 28px;
    border-top: 1px solid #e8eef3;
    background: #ffffff;
}

.scott-catalog-body::before {
    content: "";
    position: absolute;
    left: 28px;
    top: -2px;
    width: 78px;
    height: 3px;
    background: #008bd2;
}

.scott-catalog-body h3 {
    margin: 0 0 22px;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.scott-catalog-body h3 a {
    color: #101820;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scott-catalog-card:hover .scott-catalog-body h3 a {
    color: #008bd2;
}

/* Link */

.scott-catalog-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #101820;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.3s ease;
}

.scott-catalog-link span {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #101820;
    transition: all 0.3s ease;
}

.scott-catalog-card:hover .scott-catalog-link {
    color: #008bd2;
}

.scott-catalog-card:hover .scott-catalog-link span {
    background: #008bd2;
}

/* Responsive */

@media (max-width: 991px) {
    .scott-catalog-section {
        padding: 80px 0;
    }

    .scott-catalog-head {
        display: block;
    }

    .scott-catalog-head h2 {
        font-size: 38px;
        margin-bottom: 24px;
    }

    .scott-catalog-all {
        width: fit-content;
    }

    .scott-catalog-img {
        height: 270px;
    }
}

@media (max-width: 575px) {
    .scott-catalog-section {
        padding: 65px 0;
    }

    .scott-catalog-section::before {
        height: 310px;
    }

    .scott-catalog-head {
        margin-bottom: 34px;
    }

    .scott-catalog-head h2 {
        font-size: 31px;
    }

    .scott-catalog-all {
        width: 100%;
        justify-content: center;
    }

    .scott-catalog-img {
        height: 235px;
        padding: 26px;
    }

    .scott-catalog-img img {
        max-height: 175px;
    }

    .scott-catalog-body {
        padding: 24px 22px 24px;
    }

    .scott-catalog-body h3 {
        font-size: 19px;
    }
}














/* ===============================
   SCOTT CTA
================================ */

.scott-cta-section {
    position: relative;
    padding: 95px 0;
    background: #f5f8fb;
    overflow: hidden;
}

.scott-cta-box {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 58px 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #101820;
    border-radius: 0;
    box-shadow: 0 28px 70px rgba(16, 24, 32, 0.22);
}

.scott-cta-box::before {
    content: "";
    position: absolute;
    right: -130px;
    top: -120px;
    width: 420px;
    height: 420px;
    background: rgba(0, 139, 210, 0.22);
    border-radius: 50%;
}

.scott-cta-box::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    height: 100%;
    background: #008bd2;
    clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.95;
}

.scott-cta-left,
.scott-cta-right {
    position: relative;
    z-index: 2;
}

.scott-cta-left {
    max-width: 700px;
}

.scott-cta-label {
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
    padding-left: 50px;
    color: #008bd2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.scott-cta-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px;
    height: 3px;
    background: #008bd2;
    transform: translateY(-50%);
}

.scott-cta-left h2 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1.3px;
}

.scott-cta-left h2 strong {
    display: block;
    color: #ffffff;
}

.scott-cta-left p {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

.scott-cta-right {
    min-width: 260px;
    display: grid;
    gap: 14px;
}

.scott-cta-primary,
.scott-cta-secondary {
    min-height: 56px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    transition: all 0.3s ease;
}

.scott-cta-primary {
    color: #101820;
    background: #ffffff;
}

.scott-cta-primary:hover {
    color: #ffffff;
    background: #101820;
    transform: translateY(-3px);
}

.scott-cta-secondary {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.scott-cta-secondary:hover {
    color: #101820;
    background: #ffffff;
    transform: translateY(-3px);
}

/* Responsive */

@media (max-width: 991px) {
    .scott-cta-section {
        padding: 75px 0;
    }

    .scott-cta-box {
        display: block;
        padding: 45px 38px;
    }

    .scott-cta-box::after {
        width: 100%;
        height: 130px;
        top: auto;
        bottom: 0;
        clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 100%);
        opacity: 0.25;
    }

    .scott-cta-left h2 {
        font-size: 36px;
    }

    .scott-cta-right {
        max-width: 320px;
        margin-top: 32px;
    }
}

@media (max-width: 575px) {
    .scott-cta-section {
        padding: 60px 0;
    }

    .scott-cta-box {
        padding: 36px 24px;
    }

    .scott-cta-left h2 {
        font-size: 29px;
        letter-spacing: -0.7px;
    }

    .scott-cta-left p {
        font-size: 15px;
        line-height: 1.7;
    }

    .scott-cta-right {
        min-width: 100%;
    }

    .scott-cta-primary,
    .scott-cta-secondary {
        width: 100%;
    }
}

















/* ===============================
   SCOTT NEWS SECTION
================================ */

.scott-news-section {
    position: relative;
    padding: 105px 0;
    background: #ffffff;
    overflow: hidden;
}

.scott-news-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 44%;
    height: 100%;
    background: #f5f8fb;
    clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
}
/* =====================================================
   SCOTT ABOUT
===================================================== */

.sc-about {
    width: 100%;
    color: #101b24;
    font-family: inherit;
}


/* =====================================================
   HERO
===================================================== */

.sc-about-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 90px;
    background: #0d1821;
    color: #fff;
}

.sc-about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 38%;
    height: 100%;
    background: #0098d7;
    clip-path: polygon(37% 0, 100% 0, 100% 100%, 0 100%);
}

.sc-about-hero-pattern {
    position: absolute;
    top: -100px;
    right: 18%;
    width: 360px;
    height: 360px;
    border: 70px solid rgba(255,255,255,.025);
    transform: rotate(45deg);
}

.sc-about-hero-inner {
    position: relative;
    z-index: 2;
    padding: 70px 55px 60px;
}

.sc-about-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 35px;
    color: #009fe3;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.sc-about-eyebrow span {
    width: 30px;
    height: 2px;
    background: #009fe3;
}

.sc-about-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 80px;
}

.sc-about-hero-title h3 {
    max-width: 650px;
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2.5px;
}

.sc-about-hero-title h3 strong {
    display: block;
    color: #009fe3;
    font-weight: 900;
}

.sc-about-hero-description {
    max-width: 500px;
    padding-top: 8px;
}

.sc-about-hero-description p {
    margin: 0 0 15px;
    color: rgba(255,255,255,.64);
    font-size: 13px;
    line-height: 1.9;
}

.sc-about-hero-description .sc-about-lead {
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 600;
}

.sc-about-hero-bottom {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,.12);
}

.sc-about-hero-item {
    display: flex;
    align-items: center;
    gap: 17px;
    min-height: 105px;
    padding: 22px 35px;
    border-right: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.025);
}

.sc-about-hero-item:last-child {
    border-right: 0;
}

.sc-about-hero-item > span {
    color: #009fe3;
    font-size: 11px;
    font-weight: 900;
}

.sc-about-hero-item strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.sc-about-hero-item small {
    color: rgba(255,255,255,.52);
    font-size: 10px;
}


/* =====================================================
   COMMON
===================================================== */

.sc-about-section-tag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 7px 12px;
    border: 1px solid #dcebf2;
    background: #f3f9fc;
    color: #008fd0;
    font-size: 10px;
    font-weight: 900;
}

.sc-about-section-tag::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 7px;
    border-radius: 50%;
    background: #009fe3;
}


/* =====================================================
   STORY
===================================================== */

.sc-about-story {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 420px;
    margin-bottom: 95px;
    border: 1px solid #dde8ee;
}

.sc-about-story-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 35px;
    background: #f3f8fb;
}

.sc-about-number {
    color: #009fe3;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.sc-about-story-line {
    width: 1px;
    height: 100px;
    margin: 35px 0;
    background: #c9dce5;
}

.sc-about-side-text {
    color: #87959e;
    font-size: 10px;
    line-height: 1.8;
    font-weight: 800;
    letter-spacing: 1px;
}

.sc-about-story-content {
    padding: 60px 65px;
}

.sc-about-story-content h3 {
    max-width: 600px;
    margin: 0 0 35px;
    color: #101b24;
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1.8px;
}

.sc-about-story-content h3 strong {
    display: block;
    color: #009fe3;
}

.sc-about-text-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
}

.sc-about-text-columns p {
    margin: 0;
    color: #697781;
    font-size: 13px;
    line-height: 2;
}


/* =====================================================
   VALUES
===================================================== */

.sc-about-values {
    margin-bottom: 95px;
}

.sc-about-values-head {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: end;
    margin-bottom: 38px;
}

.sc-about-values-head h3 {
    margin: 0;
    color: #101b24;
    font-size: clamp(30px, 3vw, 43px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.sc-about-values-head h3 strong {
    display: block;
    color: #009fe3;
}

.sc-about-values-head > p {
    margin: 0;
    color: #7a8790;
    font-size: 12px;
    line-height: 1.9;
}

.sc-about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #dbe6ec;
    border-left: 1px solid #dbe6ec;
}

.sc-about-value-card {
    min-height: 265px;
    padding: 30px;
    border-right: 1px solid #dbe6ec;
    border-bottom: 1px solid #dbe6ec;
    background: #fff;
    transition: .25s ease;
}

.sc-about-value-card:hover {
    position: relative;
    z-index: 2;
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(15, 34, 47, .08);
}

.sc-about-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 55px;
}

.sc-about-card-top span {
    color: #009fe3;
    font-size: 10px;
    font-weight: 900;
}

.sc-about-card-top i {
    width: 27px;
    height: 2px;
    background: #009fe3;
}

.sc-about-value-card h4 {
    margin: 0 0 13px;
    color: #101b24;
    font-size: 18px;
    font-weight: 900;
}

.sc-about-value-card p {
    margin: 0;
    color: #77848c;
    font-size: 11px;
    line-height: 1.9;
}

.sc-about-value-primary {
    background: #0098d7;
    border-color: #0098d7;
}

.sc-about-value-primary .sc-about-card-top span,
.sc-about-value-primary h4,
.sc-about-value-primary p {
    color: #fff;
}

.sc-about-value-primary .sc-about-card-top i {
    background: #fff;
}


/* =====================================================
   MISSION / VISION
===================================================== */

.sc-about-mv {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 95px;
}

.sc-about-mv-box {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    padding: 50px;
    background: #f1f7fa;
}

.sc-about-mv-box::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -100px;
    width: 230px;
    height: 230px;
    border: 45px solid rgba(0,159,227,.06);
    transform: rotate(45deg);
}

.sc-about-mv-dark {
    background: #0d1821;
}

.sc-about-mv-index {
    display: block;
    margin-bottom: 55px;
    color: #009fe3;
    font-size: 11px;
    font-weight: 900;
}

.sc-about-mv-content {
    position: relative;
    z-index: 2;
}

.sc-about-mv-content small {
    display: block;
    margin-bottom: 13px;
    color: #009fe3;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.sc-about-mv-content h3 {
    max-width: 470px;
    margin: 0 0 18px;
    color: #101b24;
    font-size: 29px;
    line-height: 1.15;
    font-weight: 900;
}

.sc-about-mv-content h3 strong {
    display: block;
    color: #009fe3;
}

.sc-about-mv-content p {
    max-width: 480px;
    margin: 0;
    color: #75828b;
    font-size: 12px;
    line-height: 1.9;
}

.sc-about-mv-dark .sc-about-mv-content h3 {
    color: #fff;
}

.sc-about-mv-dark .sc-about-mv-content p {
    color: rgba(255,255,255,.6);
}


/* =====================================================
   PRINCIPLES
===================================================== */

.sc-about-principles {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    margin-bottom: 95px;
}

.sc-about-principles-title h3 {
    margin: 0;
    color: #101b24;
    font-size: clamp(30px, 3vw, 43px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.sc-about-principles-title h3 strong {
    display: block;
    color: #009fe3;
}

.sc-about-principles-list {
    border-top: 1px solid #d9e5eb;
}

.sc-about-principle {
    display: grid;
    grid-template-columns: 55px 1fr 30px;
    gap: 20px;
    align-items: center;
    min-height: 120px;
    padding: 22px 5px;
    border-bottom: 1px solid #d9e5eb;
    transition: .2s ease;
}

.sc-about-principle:hover {
    padding-left: 15px;
    background: #f6fafc;
}

.sc-about-principle > span {
    color: #009fe3;
    font-size: 10px;
    font-weight: 900;
}

.sc-about-principle h4 {
    margin: 0 0 6px;
    color: #101b24;
    font-size: 15px;
    font-weight: 900;
}

.sc-about-principle p {
    margin: 0;
    color: #7a8790;
    font-size: 11px;
    line-height: 1.7;
}

.sc-about-principle > strong {
    color: #009fe3;
    font-size: 18px;
}


/* =====================================================
   CTA
===================================================== */

.sc-about-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    overflow: hidden;
    min-height: 245px;
    padding: 50px 55px;
    background: #0d1821;
}

.sc-about-cta::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 36%;
    height: 100%;
    background: #0098d7;
    clip-path: polygon(30% 0,100% 0,100% 100%,0 100%);
}

.sc-about-cta-decoration {
    position: absolute;
    top: -80px;
    right: 22%;
    width: 230px;
    height: 230px;
    border: 45px solid rgba(255,255,255,.025);
    transform: rotate(45deg);
}

.sc-about-cta-text,
.sc-about-cta-actions {
    position: relative;
    z-index: 2;
}

.sc-about-cta-text {
    max-width: 680px;
}

.sc-about-cta-text > span {
    display: block;
    margin-bottom: 12px;
    color: #009fe3;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.sc-about-cta h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -1px;
}

.sc-about-cta h3 strong {
    display: block;
}

.sc-about-cta p {
    max-width: 610px;
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 11px;
    line-height: 1.8;
}

.sc-about-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-width: 185px;
}

.sc-about-cta-actions a {
    display: flex;
    min-height: 45px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    background: #fff;
    color: #101b24;
    font-size: 10px;
    font-weight: 900;
    text-decoration: none;
    transition: .2s ease;
}

.sc-about-cta-actions a:hover {
    transform: translateX(3px);
}

.sc-about-cta-actions .sc-about-cta-outline {
    border: 1px solid rgba(255,255,255,.55);
    background: transparent;
    color: #fff;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .sc-about-hero-grid,
    .sc-about-values-head,
    .sc-about-principles {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .sc-about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-about-story {
        grid-template-columns: 120px 1fr;
    }

    .sc-about-text-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sc-about-mv {
        grid-template-columns: 1fr;
    }

    .sc-about-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .sc-about-cta-actions {
        width: 220px;
    }

}


@media (max-width: 767px) {

    .sc-about-hero {
        margin-bottom: 60px;
    }

    .sc-about-hero-inner {
        padding: 45px 25px;
    }

    .sc-about-hero-title h3 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .sc-about-hero-bottom {
        grid-template-columns: 1fr;
    }

    .sc-about-hero-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .sc-about-story {
        display: block;
        margin-bottom: 65px;
    }

    .sc-about-story-side {
        display: none;
    }

    .sc-about-story-content {
        padding: 40px 25px;
    }

    .sc-about-values {
        margin-bottom: 65px;
    }

    .sc-about-values-grid {
        grid-template-columns: 1fr;
    }

    .sc-about-value-card {
        min-height: auto;
    }

    .sc-about-card-top {
        margin-bottom: 35px;
    }

    .sc-about-mv {
        margin-bottom: 65px;
    }

    .sc-about-mv-box {
        min-height: auto;
        padding: 40px 25px;
    }

    .sc-about-mv-index {
        margin-bottom: 35px;
    }

    .sc-about-principles {
        margin-bottom: 65px;
    }

    .sc-about-principle {
        grid-template-columns: 40px 1fr 20px;
        gap: 12px;
    }

    .sc-about-cta {
        padding: 40px 25px;
    }

    .sc-about-cta::after {
        width: 70%;
        opacity: .15;
    }

    .sc-about-cta-actions {
        width: 100%;
    }

}

/* =========================================================
   LOCATION
========================================================= */

.sc-contact-location {
    margin-bottom: 80px;
    border: 1px solid #dce7ed;
    background: #fff;
}


/* HEAD */

.sc-contact-location-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 70px;
    align-items: center;
    padding: 45px 50px;
    background: #f4f8fa;
}

.sc-contact-location-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #0098d7;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.sc-contact-location-title h3 {
    margin: 0 0 15px;
    color: #0d1821;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.sc-contact-location-title h3 strong {
    display: block;
    color: #0098d7;
}

.sc-contact-location-title p {
    max-width: 530px;
    margin: 0;
    color: #72808a;
    font-size: 12px;
    line-height: 1.9;
}


/* INFO */

.sc-contact-location-info {
    display: grid;
    grid-template-columns: 1.2fr .9fr 1.1fr;
    border: 1px solid #d8e5eb;
    background: #fff;
}

.sc-contact-location-info-item {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
    min-height: 105px;
    padding: 20px;
    border-right: 1px solid #d8e5eb;
}

.sc-contact-location-info-item:last-child {
    border-right: 0;
}

.sc-contact-location-info-icon {
    display: flex;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: #0098d7;
    color: #fff;
    font-size: 12px;
}

.sc-contact-location-info-item small {
    display: block;
    margin-bottom: 5px;
    color: #8b979e;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.sc-contact-location-info-item strong,
.sc-contact-location-info-item a {
    display: block;
    color: #0d1821;
    font-size: 10px;
    line-height: 1.65;
    font-weight: 800;
    text-decoration: none;
    word-break: break-word;
}

.sc-contact-location-info-item a:hover {
    color: #0098d7;
}


/* MAP */

.sc-contact-map-large {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: #e9eef1;
}

.sc-contact-map-large iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.sc-contact-map-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 250px;
    padding: 17px 20px;
    background: #0d1821;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .18);
}

.sc-contact-map-badge > span {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: #0098d7;
    color: #fff;
    font-size: 12px;
}

.sc-contact-map-badge small {
    display: block;
    margin-bottom: 4px;
    color: #009fe3;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.sc-contact-map-badge strong {
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .sc-contact-location-head {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sc-contact-location-info {
        grid-template-columns: 1fr;
    }

    .sc-contact-location-info-item {
        border-right: 0;
        border-bottom: 1px solid #d8e5eb;
    }

    .sc-contact-location-info-item:last-child {
        border-bottom: 0;
    }
}


@media (max-width: 767px) {

    .sc-contact-location {
        margin-bottom: 60px;
    }

    .sc-contact-location-head {
        padding: 35px 22px;
    }

    .sc-contact-location-title h3 {
        font-size: 34px;
    }

    .sc-contact-map-large {
        height: 400px;
    }

    .sc-contact-map-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
        min-width: 0;
    }
}
.scott-news-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 85px;
    display: none !important;
    width: 260px;
    height: 70px;
    background: #008bd2;
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.scott-news-section .container {
    position: relative;
    z-index: 2;
}

/* Header */

.scott-news-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 48px;
}

.scott-news-label {
    position: relative;
    display: inline-block;
    margin-bottom: 14px;
    padding-left: 54px;
    color: #008bd2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.scott-news-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 38px;
    height: 3px;
    background: #008bd2;
    transform: translateY(-50%);
}

.scott-news-head h2 {
    max-width: 650px;
    margin: 0;
    color: #101820;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1.4px;
}

.scott-news-all {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    background: #101820;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.3s ease;
}

.scott-news-all:hover {
    color: #ffffff;
    background: #008bd2;
}

/* Card */

.scott-news-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e4eaf0;
    transition: all 0.35s ease;
}

.scott-news-card:hover {
    transform: translateY(-8px);
    border-color: #008bd2;
    box-shadow: 0 28px 65px rgba(16, 24, 32, 0.14);
}

.scott-news-img {
    position: relative;
    display: block;
    height: 265px;
    overflow: hidden;
    background: #101820;
    text-decoration: none;
}

.scott-news-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(16, 24, 32, 0.55) 100%);
    z-index: 2;
}

.scott-news-img::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 92px;
    height: 92px;
    background: #008bd2;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 3;
}

.scott-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.45s ease;
}

.scott-news-card:hover .scott-news-img img {
    transform: scale(1.08);
}

/* Body */

.scott-news-body {
    position: relative;
    padding: 28px 28px 30px;
    background: #ffffff;
}

.scott-news-body::before {
    content: "";
    position: absolute;
    left: 28px;
    top: -2px;
    width: 82px;
    height: 3px;
    background: #008bd2;
}

.scott-news-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
}

.scott-news-date i {
    color: #008bd2;
}

.scott-news-body h3 {
    min-height: 62px;
    margin: 0 0 24px;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: -0.4px;
}

.scott-news-body h3 a {
    color: #101820;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scott-news-card:hover .scott-news-body h3 a {
    color: #008bd2;
}

/* Link */

.scott-news-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #101820;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.3s ease;
}

.scott-news-link span {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #101820;
    transition: all 0.3s ease;
}

.scott-news-card:hover .scott-news-link {
    color: #008bd2;
}

.scott-news-card:hover .scott-news-link span {
    background: #008bd2;
}

/* Responsive */

@media (max-width: 991px) {
    .scott-news-section {
        padding: 80px 0;
    }

    .scott-news-section::before {
        width: 100%;
        clip-path: none;
        height: 330px;
    }

    .scott-news-head {
        display: block;
    }

    .scott-news-head h2 {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .scott-news-img {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .scott-news-section {
        padding: 65px 0;
    }

    .scott-news-section::after {
        width: 160px;
        height: 46px;
        top: 60px;
    }

    .scott-news-head {
        margin-bottom: 34px;
    }

    .scott-news-head h2 {
        font-size: 30px;
        letter-spacing: -0.8px;
    }

    .scott-news-all {
        width: 100%;
        justify-content: center;
    }

    .scott-news-img {
        height: 220px;
    }

    .scott-news-body {
        padding: 24px 22px 26px;
    }

    .scott-news-body h3 {
        min-height: auto;
        font-size: 20px;
    }
}

























/* ===============================
   SCOTT PROFESSIONAL FOOTER
================================ */

.scott-footer-clean {
    position: relative;
    padding: 80px 0 28px;
    background: #0d141c;
    overflow: hidden;
}

.scott-footer-clean::before {
    content: "";
    position: absolute;
    right: -180px;
    top: -180px;
    width: 420px;
    height: 420px;
    background: rgba(0, 139, 210, 0.16);
    border-radius: 50%;
    filter: blur(35px);
}

.scott-footer-clean::after {
    content: "";
    position: absolute;
    left: -220px;
    bottom: -220px;
    width: 440px;
    height: 440px;
    background: rgba(0, 139, 210, 0.08);
    border-radius: 50%;
    filter: blur(35px);
}

.scott-footer-clean .container {
    position: relative;
    z-index: 2;
}

/* Main Grid */

.scott-footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.035);
}

.scott-footer-col {
    min-height: 330px;
    padding: 38px 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.scott-footer-col:last-child {
    border-right: 0;
}

/* Logo Column */

.scott-footer-logo {
    width: 190px;
    height: 72px;
    margin-bottom: 24px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-left: 5px solid #008bd2;
    text-decoration: none;
}

.scott-footer-logo img {
    max-width: 145px;
    max-height: 46px;
    object-fit: contain;
    display: block;
}

.scott-footer-brand p {
    min-height: 100px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
}

/* Headings */

.scott-footer-col h3 {
    position: relative;
    height: 72px;
    margin: 0 0 8px;
    padding-bottom: 18px;
    display: flex;
    align-items: flex-start;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.scott-footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 24px;
    width: 46px;
    height: 3px;
    background: #008bd2;
}

/* Links */

.scott-footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.scott-footer-col ul li {
    height: 32px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.scott-footer-col ul li a {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.scott-footer-col ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    background: #008bd2;
    transform: translateY(-50%) rotate(45deg);
}

.scott-footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 23px;
}

/* Social */

.scott-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.scott-footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    transition: all 0.25s ease;
}

.scott-footer-social a:hover {
    background: #008bd2;
    border-color: #008bd2;
}

/* Contact */

.scott-footer-contact-item {
    min-height: 42px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.scott-footer-contact-item i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #008bd2;
    font-size: 14px;
}

.scott-footer-contact-item span,
.scott-footer-contact-item a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
}

.scott-footer-contact-item a:hover {
    color: #ffffff;
}

.scott-footer-btn {
    width: 100%;
    height: 50px;
    margin-top: 18px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #101820;
    background: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.25s ease;
}

.scott-footer-btn:hover {
    color: #ffffff;
    background: #008bd2;
}

/* Bottom */

.scott-footer-bottom {
    min-height: 78px;
    padding: 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.scott-footer-copy {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    font-weight: 600;
}

.scott-footer-design {
    display: flex;
    align-items: center;
    gap: 14px;
}

.scott-footer-design span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    font-weight: 700;
}

.scott-footer-design a {
    width: 132px;
    height: 44px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-left: 4px solid #008bd2;
    text-decoration: none;
    transition: all 0.25s ease;
}

.scott-footer-design a:hover {
    transform: translateY(-2px);
}

.scott-footer-design img {
    max-width: 98px;
    max-height: 28px;
    object-fit: contain;
    display: block;
}

/* Responsive */

@media (max-width: 1199px) {
    .scott-footer-col {
        padding: 34px 26px;
    }
}

@media (max-width: 991px) {
    .scott-footer-clean {
        padding: 65px 0 26px;
    }

    .scott-footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .scott-footer-col {
        border-right: 1px solid rgba(255, 255, 255, 0.10);
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .scott-footer-col:nth-child(2n) {
        border-right: 0;
    }

    .scott-footer-col:nth-child(3),
    .scott-footer-col:nth-child(4) {
        border-bottom: 0;
    }
}

@media (max-width: 575px) {
    .scott-footer-clean {
        padding: 55px 0 24px;
    }

    .scott-footer-main {
        grid-template-columns: 1fr;
    }

    .scott-footer-col {
        min-height: auto;
        padding: 30px 24px;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
    }

    .scott-footer-col:last-child {
        border-bottom: 0 !important;
    }

    .scott-footer-col h3 {
        height: auto;
        min-height: 58px;
    }

    .scott-footer-brand p {
        min-height: auto;
    }

    .scott-footer-logo {
        width: 100%;
    }

    .scott-footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 16px;
    }

    .scott-footer-design {
        justify-content: center;
    }
}





















/* ===============================
   SCOTT PRODUCT PAGE HERO
================================ */

.scott-product-page-hero {
    position: relative;
    padding: 78px 0;
    background: #101820;
    overflow: hidden;
}

.scott-product-page-hero::before {
    content: "";
    position: absolute;
    right: -130px;
    top: -150px;
    width: 420px;
    height: 420px;
    background: rgba(0, 139, 210, 0.18);
    border-radius: 50%;
    filter: blur(35px);
}

.scott-product-page-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 100%;
    background: #008bd2;
    clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.95;
}

.scott-product-page-hero .container {
    position: relative;
    z-index: 2;
}

.scott-product-page-hero-inner {
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.scott-product-page-label {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
    padding-left: 52px;
    color: #008bd2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.scott-product-page-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 38px;
    height: 3px;
    background: #008bd2;
    transform: translateY(-50%);
}

.scott-product-page-hero h1 {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 52px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -1.5px;
}

/* Breadcrumb */

.scott-product-breadcrumb ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.scott-product-breadcrumb li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 700;
}

.scott-product-breadcrumb li:not(:last-child)::after {
    content: "/";
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.36);
}

.scott-product-breadcrumb a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: all 0.25s ease;
}

.scott-product-breadcrumb a:hover {
    color: #008bd2;
}

.scott-product-breadcrumb .active {
    color: #ffffff;
}

/* Right Code */

.scott-product-page-code {
    position: relative;
    z-index: 3;
    min-width: 290px;
    padding: 34px;
    background: #ffffff;
    border-left: 6px solid #101820;
}

.scott-product-page-code span {
    display: block;
    margin-bottom: 8px;
    color: #101820;
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 3px;
}

.scott-product-page-code strong {
    display: block;
    color: #667085;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 700;
}

/* ===============================
   PRODUCT DETAIL SECTION
================================ */

.scott-product-detail-section {
    position: relative;
    padding: 90px 0;
    background: #f5f8fb;
}

/* Sidebar */

.scott-product-sidebar {
    position: sticky;
    top: 25px;
    background: #ffffff;
    border: 1px solid #e4eaf0;
    box-shadow: 0 22px 60px rgba(16, 24, 32, 0.08);
}

.scott-sidebar-title {
    padding: 28px 26px 24px;
    background: #101820;
}

.scott-sidebar-title span {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    padding-left: 38px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.scott-sidebar-title span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 26px;
    height: 2px;
    background: #008bd2;
    transform: translateY(-50%);
}

.scott-sidebar-title h3 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.scott-sidebar-menu {
    margin: 0;
    padding: 14px;
    list-style: none;
}

.scott-sidebar-menu li {
    margin-bottom: 8px;
}

.scott-sidebar-menu li:last-child {
    margin-bottom: 0;
}

.scott-sidebar-menu a {
    min-height: 54px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #101820;
    background: #f5f8fb;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
    transition: all 0.25s ease;
}

.scott-sidebar-menu a i {
    color: #008bd2;
    font-size: 13px;
    transition: all 0.25s ease;
}

.scott-sidebar-menu a:hover,
.scott-sidebar-menu a.active {
    color: #ffffff;
    background: #008bd2;
    border-color: #008bd2;
}

.scott-sidebar-menu a:hover i,
.scott-sidebar-menu a.active i {
    color: #ffffff;
    transform: translateX(3px);
}

/* Sidebar CTA */

.scott-sidebar-cta {
    margin: 0 14px 14px;
    padding: 24px;
    background: #101820;
}

.scott-sidebar-cta span {
    display: block;
    margin-bottom: 8px;
    color: #008bd2;
    font-size: 13px;
    font-weight: 900;
}

.scott-sidebar-cta h4 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 900;
}

.scott-sidebar-cta a {
    width: 100%;
    height: 48px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #101820;
    background: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.25s ease;
}

.scott-sidebar-cta a:hover {
    color: #ffffff;
    background: #008bd2;
}

/* Detail Card */

.scott-product-detail-card {
    background: #ffffff;
    border: 1px solid #e4eaf0;
    box-shadow: 0 24px 65px rgba(16, 24, 32, 0.08);
}

/* Image */

.scott-product-detail-image {
    position: relative;
    min-height: 430px;
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
}

.scott-product-detail-image::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid #eef2f5;
}

.scott-product-detail-image::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 105px;
    height: 105px;
    background: #008bd2;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.scott-product-detail-image img {
    position: relative;
    z-index: 2;
    max-width: 92%;
    max-height: 330px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 24px 28px rgba(16, 24, 32, 0.18));
}

/* Summary */

.scott-product-detail-summary {
    padding: 45px 45px 45px 10px;
}

.scott-product-detail-summary span {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
    padding-left: 48px;
    color: #008bd2;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.scott-product-detail-summary span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 34px;
    height: 3px;
    background: #008bd2;
    transform: translateY(-50%);
}

.scott-product-detail-summary h2 {
    margin: 0 0 20px;
    color: #101820;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1.1px;
}

.scott-product-detail-summary p {
    margin: 0 0 30px;
    color: #667085;
    font-size: 16px;
    line-height: 1.85;
    font-weight: 500;
}

.scott-product-detail-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.scott-detail-primary-btn,
.scott-detail-secondary-btn {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.25s ease;
}

.scott-detail-primary-btn {
    color: #ffffff;
    background: #008bd2;
}

.scott-detail-primary-btn:hover {
    color: #ffffff;
    background: #101820;
}

.scott-detail-secondary-btn {
    color: #101820;
    background: #f5f8fb;
    border: 1px solid #e4eaf0;
}

.scott-detail-secondary-btn:hover {
    color: #ffffff;
    background: #101820;
    border-color: #101820;
}

/* Content Box */

.scott-product-content-box {
    border-top: 1px solid #e4eaf0;
    padding: 46px;
}

.scott-product-content-title {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e4eaf0;
}

.scott-product-content-title span {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
    padding-left: 48px;
    color: #008bd2;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.scott-product-content-title span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 34px;
    height: 3px;
    background: #008bd2;
    transform: translateY(-50%);
}

.scott-product-content-title h3 {
    margin: 0;
    color: #101820;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.7px;
}

.scott-product-detail-text {
    color: #667085;
    font-size: 16px;
    line-height: 1.85;
    font-weight: 500;
}

.scott-product-detail-text p {
    margin: 0 0 18px;
}

.scott-product-detail-text ul {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.scott-product-detail-text ul li {
    position: relative;
    padding-left: 28px;
    color: #344054;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 700;
}

.scott-product-detail-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 9px;
    height: 9px;
    background: #008bd2;
    transform: rotate(45deg);
}

/* Summernote İçerik Alanı */

.scott-product-detail-text h1,
.scott-product-detail-text h2,
.scott-product-detail-text h3,
.scott-product-detail-text h4 {
    margin: 26px 0 14px;
    color: #101820;
    font-weight: 900;
}

.scott-product-detail-text img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 24px 0;
}

.scott-product-detail-text table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.scott-product-detail-text table th,
.scott-product-detail-text table td {
    padding: 13px 15px;
    border: 1px solid #e4eaf0;
    font-size: 14px;
}

.scott-product-detail-text table th {
    color: #ffffff;
    background: #101820;
    font-weight: 800;
}

/* Responsive */

@media (max-width: 991px) {
    .scott-product-page-hero {
        padding: 68px 0;
    }

    .scott-product-page-hero::after {
        width: 100%;
        height: 120px;
        top: auto;
        bottom: 0;
        clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 100%);
        opacity: 0.22;
    }

    .scott-product-page-hero-inner {
        display: block;
        min-height: auto;
    }

    .scott-product-page-hero h1 {
        font-size: 42px;
    }

    .scott-product-page-code {
        max-width: 360px;
        margin-top: 34px;
    }

    .scott-product-detail-section {
        padding: 70px 0;
    }

    .scott-product-sidebar {
        position: relative;
        top: auto;
    }

    .scott-product-detail-summary {
        padding: 15px 38px 42px;
    }

    .scott-product-detail-image {
        min-height: 360px;
    }

    .scott-product-content-box {
        padding: 38px;
    }
}

@media (max-width: 575px) {
    .scott-product-page-hero {
        padding: 55px 0;
    }

    .scott-product-page-hero h1 {
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .scott-product-page-code {
        min-width: 100%;
        padding: 26px;
    }

    .scott-product-page-code span {
        font-size: 30px;
    }

    .scott-product-detail-section {
        padding: 55px 0;
    }

    .scott-sidebar-title {
        padding: 24px 22px;
    }

    .scott-sidebar-menu {
        padding: 12px;
    }

    .scott-product-detail-image {
        min-height: 300px;
        padding: 32px;
    }

    .scott-product-detail-image img {
        max-height: 230px;
    }

    .scott-product-detail-summary {
        padding: 10px 24px 34px;
    }

    .scott-product-detail-summary h2 {
        font-size: 30px;
        letter-spacing: -0.7px;
    }

    .scott-detail-primary-btn,
    .scott-detail-secondary-btn {
        width: 100%;
    }

    .scott-product-content-box {
        padding: 30px 24px;
    }

    .scott-product-content-title h3 {
        font-size: 25px;
    }

    .scott-product-detail-text {
        font-size: 15px;
        line-height: 1.75;
    }
}


/* ===============================
   SCOTT LIGHT PROFESSIONAL BREADCRUMB V2
================================ */

.scott-page-crumb-v2 {
    position: relative;
    padding: 58px 0;
    background: linear-gradient(180deg, #f6fafe 0%, #ffffff 100%);
    overflow: hidden;
}

.scott-page-crumb-v2::before {
    content: "";
    position: absolute;
    right: -140px;
    top: -160px;
    width: 360px;
    height: 360px;
    background: rgba(0, 139, 210, 0.10);
    border-radius: 50%;
    filter: blur(8px);
}

.scott-page-crumb-v2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42%;
    height: 6px;
    background: linear-gradient(90deg, #008bd2, rgba(0, 139, 210, 0));
}

.scott-page-crumb-box-v2 {
    position: relative;
    z-index: 2;
    min-height: 190px;
    padding: 42px 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    background: #ffffff;
    border: 1px solid #e4eaf0;
    box-shadow: 0 22px 60px rgba(16, 24, 32, 0.08);
}

.scott-page-crumb-box-v2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 34px;
    width: 6px;
    height: 90px;
    background: #008bd2;
}

.scott-page-crumb-content-v2 {
    max-width: 760px;
}

.scott-page-crumb-label-v2 {
    position: relative;
    display: inline-block;
    margin-bottom: 14px;
    padding-left: 48px;
    color: #008bd2;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.scott-page-crumb-label-v2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 34px;
    height: 3px;
    background: #008bd2;
    transform: translateY(-50%);
}

.scott-page-crumb-content-v2 h1 {
    margin: 0 0 22px;
    color: #101820;
    font-size: 46px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -1.4px;
}

/* Breadcrumb Nav */

.scott-page-crumb-nav-v2 ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.scott-page-crumb-nav-v2 li {
    display: flex;
    align-items: center;
    color: #667085;
    font-size: 14px;
    font-weight: 700;
}

.scott-page-crumb-nav-v2 li:not(:last-child)::after {
    content: "";
    width: 7px;
    height: 7px;
    margin: 0 13px;
    border-top: 2px solid #b8c2cc;
    border-right: 2px solid #b8c2cc;
    transform: rotate(45deg);
}

.scott-page-crumb-nav-v2 a {
    color: #667085;
    text-decoration: none;
    transition: all 0.25s ease;
}

.scott-page-crumb-nav-v2 a:hover {
    color: #008bd2;
}

.scott-page-crumb-nav-v2 .active {
    color: #101820;
}

/* Right Brand */

.scott-page-crumb-brand-v2 {
    width: 255px;
    min-width: 255px;
    padding: 30px 28px;
    background: #f5f8fb;
    border: 1px solid #e4eaf0;
    border-bottom: 5px solid #008bd2;
    text-align: left;
}

.scott-page-crumb-brand-v2 span {
    display: block;
    margin-bottom: 8px;
    color: #101820;
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 3px;
}

.scott-page-crumb-brand-v2 small {
    display: block;
    color: #667085;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 700;
}

/* Responsive */

@media (max-width: 991px) {
    .scott-page-crumb-v2 {
        padding: 45px 0;
    }

    .scott-page-crumb-box-v2 {
        display: block;
        padding: 34px 32px;
    }

    .scott-page-crumb-content-v2 h1 {
        font-size: 38px;
    }

    .scott-page-crumb-brand-v2 {
        width: 100%;
        min-width: 100%;
        margin-top: 28px;
    }
}

@media (max-width: 575px) {
    .scott-page-crumb-v2 {
        padding: 35px 0;
    }

    .scott-page-crumb-box-v2 {
        padding: 28px 22px;
    }

    .scott-page-crumb-box-v2::before {
        top: 28px;
        height: 70px;
    }

    .scott-page-crumb-content-v2 h1 {
        font-size: 30px;
        letter-spacing: -0.8px;
    }

    .scott-page-crumb-nav-v2 li {
        font-size: 13px;
    }

    .scott-page-crumb-nav-v2 li:not(:last-child)::after {
        margin: 0 9px;
        width: 6px;
        height: 6px;
    }

    .scott-page-crumb-brand-v2 {
        padding: 24px;
    }

    .scott-page-crumb-brand-v2 span {
        font-size: 30px;
    }
}