/*
Theme Name: GISmart Indonesia
Theme URI: https://gismartindonesia.com
Author: GISmart Indonesia
Description: Custom website theme untuk GISmart Indonesia.
Version: 1.0
*/

/* ================================
   GLOBAL
================================ */

:root {
    --blue: #0879c9;
    --blue-dark: #075b9a;
    --blue-light: #eaf6ff;
    --navy: #0b1f33;
    --text: #17212b;
    --muted: #64748b;
    --white: #ffffff;
    --border: #e5edf4;
    --background: #f7fafc;
    --shadow: 0 15px 40px rgba(15, 65, 100, 0.08);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ================================
   HEADER
================================ */

.site-header {
    position: relative;
    z-index: 100;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.brand .custom-logo-link {
    display: flex;
    align-items: center;
}

.brand .custom-logo {
    width: 58px;
    height: auto;
    display: block;
}

.brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
}

.brand-name {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.brand-name span {
    color: var(--blue);
}

.brand-name strong {
    color: var(--navy);
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 31px;
}

.main-nav a {
    position: relative;
    color: #344454;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.25s ease;
}

.main-nav a:hover {
    color: var(--blue);
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 28px;
    cursor: pointer;
}


/* ================================
   HERO
================================ */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 20%, rgba(8, 121, 201, 0.10), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f4faff 100%);
    padding: 100px 0 90px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -170px;
    border-radius: 50%;
    border: 1px solid rgba(8, 121, 201, 0.12);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    margin-bottom: 20px;
}

.eyebrow::before {
    content: "";
    width: 25px;
    height: 2px;
    background: var(--blue);
}

.hero h1 {
    margin: 0;
    max-width: 700px;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1.08;
    letter-spacing: -2.5px;
    color: var(--navy);
}

.hero h1 span {
    display: block;
    color: var(--blue);
}

.hero-content > p {
    max-width: 610px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 25px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(8, 121, 201, 0.22);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.btn-outline {
    color: var(--blue);
    background: white;
    border: 1px solid #b9dcef;
}

.btn-outline:hover {
    border-color: var(--blue);
    background: var(--blue-light);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--blue);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.hero-stat {
    display: flex;
    gap: 35px;
    margin-top: 48px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.hero-stat div {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    color: var(--navy);
    font-size: 17px;
}

.hero-stat span {
    color: var(--muted);
    font-size: 12px;
}


/* ================================
   MAP VISUAL
================================ */

.hero-visual {
    position: relative;
}

.map-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.9;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 50%, rgba(8, 121, 201, 0.18), transparent 35%),
        #eaf6ff;
    border: 1px solid #cce8f7;
    box-shadow: 0 25px 60px rgba(8, 121, 201, 0.12);
}

.map-grid {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(8, 121, 201, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 121, 201, 0.12) 1px, transparent 1px);
    background-size: 38px 38px;
}

.map-card::before {
    content: "";
    position: absolute;
    width: 62%;
    height: 36%;
    left: 18%;
    top: 32%;
    background: rgba(8, 121, 201, 0.15);
    border: 2px solid rgba(8, 121, 201, 0.55);
    border-radius: 50% 45% 55% 40%;
    transform: rotate(-7deg);
}

.map-card::after {
    content: "";
    position: absolute;
    width: 43%;
    height: 22%;
    right: 8%;
    bottom: 14%;
    border: 2px dashed rgba(8, 121, 201, 0.4);
    border-radius: 50%;
    transform: rotate(18deg);
}

.map-point {
    position: absolute;
    width: 13px;
    height: 13px;
    background: var(--blue);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(8, 121, 201, 0.15);
}

.point-1 {
    left: 34%;
    top: 38%;
}

.point-2 {
    left: 58%;
    top: 48%;
}

.point-3 {
    left: 70%;
    top: 63%;
}

.map-label {
    position: absolute;
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.label-1 {
    left: 37%;
    top: 52%;
}

.label-2 {
    right: 12%;
    top: 18%;
}

.coordinate {
    position: absolute;
    bottom: 22px;
    left: 25px;
    color: #5682a0;
    font-family: monospace;
    font-size: 11px;
}


/* ================================
   SECTIONS
================================ */

.section {
    padding: 100px 0;
}

.categories {
    background: var(--white);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}

.section-heading > p {
    max-width: 440px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.section-heading.center {
    display: block;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading.center > p {
    margin: 15px auto 0;
}

.section-label {
    display: block;
    margin-bottom: 9px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.section-heading h2,
.about-content h2,
.cta-box h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -1.2px;
}


/* ================================
   CATEGORY CARDS
================================ */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    padding: 32px 27px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 5px 20px rgba(15, 65, 100, 0.03);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-7px);
    border-color: #bfe1f3;
    box-shadow: var(--shadow);
}

.category-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.category-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 19px;
}

.category-card p {
    min-height: 75px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.category-card span {
    display: inline-block;
    margin-top: 20px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}


/* ================================
   ABOUT
================================ */

.about-section {
    background: var(--background);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-box {
    position: relative;
    width: min(390px, 100%);
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 35px;
    background: linear-gradient(145deg, #0879c9, #075b9a);
    box-shadow: 0 30px 60px rgba(8, 121, 201, 0.22);
}

.about-box::before,
.about-box::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.about-box::before {
    width: 320px;
    height: 320px;
    left: -120px;
    top: -80px;
}

.about-box::after {
    width: 250px;
    height: 250px;
    right: -90px;
    bottom: -90px;
}

.about-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

.about-circle::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    left: 23px;
    top: 23px;
    border: 1px dashed rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

.about-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.about-text strong {
    font-size: 48px;
    line-height: 1;
    letter-spacing: -2px;
}

.about-text span {
    margin-top: 7px;
    font-size: 11px;
    letter-spacing: 3px;
}

.about-content p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.text-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
}


/* ================================
   SERVICES
================================ */

.services-section {
    background: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.service-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-top: 3px solid var(--blue);
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--background);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-number {
    color: #9bb8ca;
    font-family: monospace;
    font-size: 12px;
    font-weight: 700;
}

.service-card h3 {
    margin: 25px 0 10px;
    color: var(--navy);
    font-size: 18px;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}


/* ================================
   CTA
================================ */

.cta-section {
    padding: 30px 0 100px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px 60px;
    border-radius: 25px;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12), transparent 25%),
        linear-gradient(135deg, #0879c9, #075b9a);
    color: white;
    box-shadow: 0 25px 50px rgba(8, 121, 201, 0.18);
}

.cta-box .section-label {
    color: #bde6ff;
}

.cta-box h2 {
    color: white;
    max-width: 620px;
}

.cta-box p {
    max-width: 650px;
    margin: 15px 0 0;
    color: rgba(255,255,255,0.82);
}


/* ================================
   FOOTER
================================ */

.site-footer {
    padding: 70px 0 25px;
    background: #071827;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 55px;
}

.footer-brand {
    font-size: 22px;
    font-weight: 800;
}

.footer-grid p {
    color: #8fa6b7;
    font-size: 14px;
}

.footer-grid h4 {
    margin: 0 0 18px;
    font-size: 14px;
}

.footer-grid a {
    display: block;
    width: fit-content;
    margin-bottom: 9px;
    color: #8fa6b7;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-grid a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #71899a;
    font-size: 12px;
}


/* ================================
   WORDPRESS
================================ */

.wp-block-post-title,
.entry-title {
    color: var(--navy);
}

.alignwide {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100%;
}


/* ================================
   RESPONSIVE TABLET
================================ */

@media (max-width: 1000px) {

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-content {
        max-width: 760px;
    }

    .hero-visual {
        max-width: 650px;
    }

    .category-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-content {
        max-width: 760px;
    }

    .footer-grid {
        gap: 40px;
    }
}


/* ================================
   RESPONSIVE MOBILE
================================ */

@media (max-width: 700px) {

    .container {
        width: min(100% - 32px, 1180px);
    }

    .header-inner {
        min-height: 72px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand .custom-logo {
        width: 48px;
    }

    .hero {
        padding: 70px 0 65px;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -1.8px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-stat {
        gap: 20px;
        flex-wrap: wrap;
    }

    .section {
        padding: 70px 0;
    }

    .section-heading {
        display: block;
        margin-bottom: 32px;
    }

    .section-heading > p {
        margin-top: 18px;
    }

    .category-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .category-card p {
        min-height: auto;
    }

    .about-box {
        width: 300px;
    }

    .cta-section {
        padding: 10px 0 70px;
    }

    .cta-box {
        display: block;
        padding: 40px 30px;
    }

    .cta-box .btn {
        margin-top: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom span {
        display: block;
        margin-bottom: 7px;
    }
}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 420px) {

    .hero h1 {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stat {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid > div:first-child {
        grid-column: auto;
    }
}

/* =========================================================
   GISmart Indonesia
   MODERN DARK HEADER
   ========================================================= */

.site-header {
    width: 100%;
    height: 72px;

    background: #07182d;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    position: relative;
    z-index: 9999;

    box-sizing: border-box;
}


/* =========================================================
   HEADER CONTAINER
   ========================================================= */

.header-container {
    width: 100%;
    max-width: 1180px;

    height: 72px;

    margin: 0 auto;

    padding: 0 20px;

    display: flex;
    align-items: center;

    box-sizing: border-box;
}


/* =========================================================
   LOGO
   ========================================================= */

.site-brand {
    display: flex;
    align-items: center;

    text-decoration: none;

    flex-shrink: 0;
}


.site-logo {
    width: 165px;
    height: auto;

    max-height: 58px;

    object-fit: contain;

    display: block;

    background: transparent;

    border: none;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-navigation {

    display: flex;
    align-items: center;

    gap: 30px;

    margin-left: auto;
    margin-right: 34px;

    height: 100%;
}


.nav-link {

    position: relative;

    display: flex;
    align-items: center;

    height: 100%;

    color: #d7e2ef;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 14px;

    font-weight: 500;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}


/* Hover */

.nav-link:hover {

    color: #1689e8;

}


/* Active */

.nav-link.active {

    color: #1689e8;

}


/* Active underline */

.nav-link.active::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 0;

    height: 2px;

    background: #1689e8;

    border-radius: 2px 2px 0 0;

}


/* =========================================================
   CONTACT BUTTON
   ========================================================= */

.header-contact {

    height: 42px;

    padding: 0 18px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    background: #0787e6;

    color: #ffffff;

    text-decoration: none;

    border-radius: 9px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    box-shadow:
        0 8px 20px rgba(0, 135, 230, 0.20);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.header-contact:hover {

    background: #0879ca;

    color: #ffffff;

    transform: translateY(-1px);

    box-shadow:
        0 10px 25px rgba(0, 135, 230, 0.30);

}


.contact-icon {

    font-size: 12px;

    transform: rotate(-45deg);

    display: inline-block;

}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-menu {

    display: none;

    margin-left: auto;

    border: none;

    background: transparent;

    color: #ffffff;

    font-size: 25px;

    cursor: pointer;

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .main-navigation {

        gap: 20px;

        margin-right: 20px;

    }

    .nav-link {

        font-size: 13px;

    }

    .site-logo {

        width: 145px;

    }

}


@media (max-width: 850px) {

    .main-navigation,
    .header-contact {

        display: none;

    }

    .mobile-menu {

        display: block;

    }

    .site-logo {

        width: 150px;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .header-container {

        padding: 0 15px;

    }

    .site-logo {

        width: 135px;

    }

}
/* =========================================================
   GISMART INDONESIA - HEADER FINAL FIX
   ========================================================= */

/* Header utama */
.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5edf5;
    position: relative;
    z-index: 1000;
}

/* Container header */
.header-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 76px;
    box-sizing: border-box;
}

/* Brand/logo + nama */
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* Logo */
.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    background: transparent !important;
    border: none;
}

/* Nama website */
.brand-name {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    color: #0b1f33;
    white-space: nowrap;
}

/* Navigasi */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    margin-left: auto;
}

.main-nav a {
    display: inline-flex;
    align-items: center;

    font-size: 15px;
    font-weight: 500;
    color: #0b1f33;

    text-decoration: none;
    white-space: nowrap;

    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #0879c9;
}

/* Tombol mobile */
.mobile-menu {
    display: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .header-inner {
        max-width: 100%;
        padding: 0 24px;
    }

    .main-nav {
        gap: 20px;
    }

    .main-nav a {
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 850px) {

    .header-inner {
        min-height: 68px;
        padding: 0 18px;
    }

    .brand-logo {
        width: 46px;
        height: 46px;
    }

    .brand-name {
        font-size: 18px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

}


/* =========================================================
   LOGO TRANSPARENT
   ========================================================= */

/*
   Pastikan elemen logo tidak mempunyai background.
*/
.site-header .brand-logo,
.site-header img {
    background: transparent !important;
}


/* =========================================================
   HEADER AGAR TIDAK TERLALU KE SAMPING
   ========================================================= */

.site-header .header-inner {
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .header-inner {
        padding: 0 15px;
    }

    .brand {
        gap: 10px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand-name {
        font-size: 17px;
    }

}
/* =========================================================
   HEADER - BLACK VERSION
   ========================================================= */

.site-header {
    background: #000000 !important;
    border-bottom: 1px solid #222222 !important;
}

/* Container header */
.site-header .header-inner {
    background: #000000 !important;
}

/* Nama website */
.site-header .brand-name {
    color: #ffffff !important;
}

/* Menu navigasi */
.site-header .main-nav a {
    color: #ffffff !important;
}

/* Menu saat hover */
.site-header .main-nav a:hover {
    color: #168ee8 !important;
}

/* Menu aktif */
.site-header .main-nav a.active,
.site-header .main-nav a[aria-current="page"] {
    color: #168ee8 !important;
}

/* Garis menu aktif */
.site-header .main-nav a.active::after,
.site-header .main-nav a[aria-current="page"]::after {
    background: #168ee8 !important;
}

/* Tombol Hubungi Kami */
.site-header .btn-contact,
.site-header .contact-button {
    background: #0879c9 !important;
    color: #ffffff !important;
}

/* Hover tombol */
.site-header .btn-contact:hover,
.site-header .contact-button:hover {
    background: #0a8ee8 !important;
}

/* Pastikan logo tidak memiliki background CSS */
.site-header .brand-logo {
    background: transparent !important;
}
/* =========================================================
   FIX - GISmart Indonesia BRAND NAME
   ========================================================= */

.site-header .brand {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    flex-shrink: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Logo */
.site-header .brand-logo {
    width: 58px !important;
    height: 58px !important;
    object-fit: contain !important;
    display: block !important;
    flex-shrink: 0 !important;
    background: transparent !important;
}

/* Nama GISmart Indonesia */
.site-header .brand-name {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: 21px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;

    white-space: nowrap !important;
}

/* GISmart */
.site-header .brand-name span {
    color: #ffffff !important;
}

/* Indonesia */
.site-header .brand-name strong {
    color: #ffffff !important;
}


/* =========================================================
   HEADER CONTAINER
   ========================================================= */

.site-header .header-inner {
    max-width: 1180px !important;
    min-height: 86px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    padding-left: 24px !important;
    padding-right: 24px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.site-header .main-nav {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
    margin-left: auto !important;
}

.site-header .main-nav a {
    color: #ffffff !important;
    white-space: nowrap !important;
}

.site-header .main-nav a:hover {
    color: #168ee8 !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 850px) {

    .site-header .header-inner {
        min-height: 70px !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .site-header .brand-logo {
        width: 46px !important;
        height: 46px !important;
    }

    .site-header .brand-name {
        font-size: 18px !important;
    }

}
/* =========================================================
   GISMART INDONESIA
   HEADER FINAL - OVERRIDE
   ========================================================= */


/* RESET HEADER LAMA */

.gismart-header,
.gismart-header * {
    box-sizing: border-box;
}


/* =========================================================
   HEADER
   ========================================================= */

.gismart-header {
    width: 100% !important;
    max-width: none !important;

    height: 90px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #000000 !important;

    border: none !important;
    border-bottom: 1px solid #1b1b1b !important;

    position: relative !important;
    z-index: 99999 !important;

    display: block !important;
}


/* =========================================================
   HEADER INNER
   ========================================================= */

.gismart-header-inner {
    width: 100% !important;
    max-width: 1180px !important;

    height: 90px !important;

    margin: 0 auto !important;
    padding: 0 20px !important;

    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;
    justify-content: space-between !important;

    gap: 30px !important;
}


/* =========================================================
   BRAND
   ========================================================= */

.gismart-brand {
    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;

    flex-shrink: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
}


.gismart-brand-link {
    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;

    gap: 14px !important;

    margin: 0 !important;
    padding: 0 !important;

    text-decoration: none !important;

    color: #ffffff !important;

    white-space: nowrap !important;
}


/* =========================================================
   LOGO
   ========================================================= */

.gismart-logo {
    width: 76px !important;
    height: 76px !important;

    min-width: 76px !important;
    max-width: 76px !important;

    object-fit: contain !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    border: none !important;

    box-shadow: none !important;
}


/* =========================================================
   WEBSITE NAME
   ========================================================= */

.gismart-name {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #1597e8 !important;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif !important;

    font-size: 21px !important;

    font-weight: 700 !important;

    line-height: 1.2 !important;

    white-space: nowrap !important;

    visibility: visible !important;

    opacity: 1 !important;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.gismart-nav {
    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;

    justify-content: flex-end !important;

    gap: 28px !important;

    margin: 0 !important;
    padding: 0 !important;

    flex-shrink: 0 !important;
}


.gismart-nav a {
    display: inline-flex !important;

    align-items: center !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 8px 0 !important;

    color: #ffffff !important;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif !important;

    font-size: 15px !important;

    font-weight: 500 !important;

    line-height: 1.2 !important;

    text-decoration: none !important;

    white-space: nowrap !important;

    background: transparent !important;

    border: none !important;
}


.gismart-nav a:hover {
    color: #1597e8 !important;
}


/* =========================================================
   CONTACT BUTTON
   ========================================================= */

.gismart-nav .gismart-contact {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 9px !important;

    margin-left: 5px !important;

    padding: 14px 22px !important;

    background: #0879c9 !important;

    color: #ffffff !important;

    border-radius: 10px !important;

    font-weight: 600 !important;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25) !important;
}


.gismart-nav .gismart-contact:hover {
    background: #0b91e5 !important;

    color: #ffffff !important;
}


/* =========================================================
   REMOVE OLD THEME HEADER EFFECTS
   ========================================================= */

.site-header,
.header-inner,
.brand,
.brand-link,
.brand-logo,
.brand-name,
.main-nav {
    box-sizing: border-box;
}


/* Jangan biarkan style lama mempengaruhi header baru */

.gismart-header img {
    opacity: 1 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .gismart-header-inner {
        padding: 0 25px !important;
    }

    .gismart-nav {
        gap: 18px !important;
    }

    .gismart-nav a {
        font-size: 14px !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 850px) {

    .gismart-header {
        height: 75px !important;
    }

    .gismart-header-inner {
        height: 75px !important;

        padding: 0 20px !important;
    }

    .gismart-logo {
        width: 50px !important;
        height: 50px !important;

        min-width: 50px !important;
        max-width: 50px !important;
    }

    .gismart-name {
        font-size: 18px !important;
    }

    .gismart-nav {
        gap: 12px !important;
    }

    .gismart-nav a {
        font-size: 13px !important;
    }

    .gismart-nav .gismart-contact {
        padding: 11px 15px !important;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .gismart-nav a:not(.gismart-contact) {
        display: none !important;
    }

    .gismart-name {
        font-size: 17px !important;
    }

}
/* =========================================================
   GISMART TRUST HIGHLIGHTS
   ========================================================= */

.gismart-trust-bar {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    align-items: center;

    gap: 0;

    margin-top: 10px;

    padding: 25px 0;

    border-top:
        1px solid rgba(40, 100, 140, 0.10);

    border-bottom:
        1px solid rgba(40, 100, 140, 0.10);

    background:
        rgba(255, 255, 255, 0.55);

}


/* =========================================================
   TRUST ITEM
   ========================================================= */

.trust-item {

    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 52px;

    padding:
        5px 24px;

    border-right:
        1px solid rgba(40, 100, 140, 0.10);

}


.trust-item:first-child {

    padding-left: 0;

}


.trust-item:last-child {

    border-right: none;

}


/* =========================================================
   ICON
   ========================================================= */

.trust-icon {

    width: 42px;

    height: 42px;

    min-width: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background:
        #f3faff;

    border:
        1px solid rgba(8, 121, 201, 0.12);

    color:
        #0879c9;

}


.trust-icon svg {

    width: 22px;

    height: 22px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;

}


/* =========================================================
   TEXT
   ========================================================= */

.trust-content {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.trust-content strong {

    margin: 0;

    padding: 0;

    color:
        #15273a;

    font-size:
        13px;

    font-weight:
        700;

    line-height:
        1.2;

    white-space:
        nowrap;

}


.trust-content span {

    margin: 0;

    padding: 0;

    color:
        #75889a;

    font-size:
        10px;

    font-weight:
        400;

    line-height:
        1.3;

    white-space:
        nowrap;

}


/* =========================================================
   HOVER
   ========================================================= */

.trust-item {

    transition:
        transform 0.2s ease;

}


.trust-item:hover {

    transform:
        translateY(-2px);

}


.trust-item:hover .trust-icon {

    background:
        #eaf6ff;

    border-color:
        rgba(8, 121, 201, 0.25);

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .gismart-trust-bar {

        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 18px;

    }


    .trust-item:nth-child(2) {

        border-right: none;

    }


    .trust-item:nth-child(3) {

        padding-left: 0;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .gismart-trust-bar {

        grid-template-columns: 1fr;

        gap: 12px;

        padding: 20px 0;

    }


    .trust-item {

        padding:
            8px 0 !important;

        border-right: none;

        border-bottom:
            1px solid rgba(40, 100, 140, 0.08);

    }


    .trust-item:last-child {

        border-bottom: none;

    }

}
/* =========================================================
   GISMART HERO - EMERGENCY RESET / FIX
   ========================================================= */

.gismart-hero {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-height: auto !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.gismart-hero *,
.gismart-hero *::before,
.gismart-hero *::after {
    box-sizing: border-box !important;
}


/* HERO CONTAINER */

.gismart-hero-container {
    width: 1180px !important;
    max-width: calc(100% - 40px) !important;
    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr) !important;

    align-items: center !important;
    gap: 60px !important;

    padding: 70px 0 55px !important;
}


/* LEFT */

.gismart-hero-content {
    position: relative !important;
    width: 100% !important;
    min-width: 0 !important;
}


/* RIGHT */

.gismart-hero-visual {
    position: relative !important;
    width: 100% !important;
    min-width: 0 !important;
}


/* MAP CARD */

.gis-map-card {
    position: relative !important;

    display: block !important;

    width: 100% !important;
    max-width: 600px !important;

    aspect-ratio: 1.15 / 1 !important;

    margin: 0 auto !important;

    overflow: hidden !important;

    border-radius: 26px !important;

    background: #eaf6ff !important;

    border: 1px solid rgba(8, 135, 223, 0.20) !important;

    box-shadow:
        0 25px 60px rgba(20, 105, 155, 0.12) !important;
}


/* MAP AREA */

.gis-map-area {
    position: absolute !important;

    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
}


/* SVG - INI BAGIAN YANG PALING PENTING */

.gis-map-svg {
    position: relative !important;

    display: block !important;

    width: 92% !important;
    max-width: 92% !important;

    height: auto !important;
    max-height: 92% !important;

    margin: 0 auto !important;

    flex: 0 0 auto !important;

    transform: none !important;
}


/* GRID */

.gis-grid {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    pointer-events: none !important;
}


/* LABELS */

.gis-label {
    position: absolute !important;
    z-index: 10 !important;
}

.gis-label-top {
    top: 24px !important;
    right: 24px !important;
}

.gis-label-indonesia {
    left: 24px !important;
    bottom: 24px !important;
}

.gis-coordinate {
    position: absolute !important;
    right: 24px !important;
    bottom: 24px !important;
    z-index: 10 !important;
}


/* =========================================================
   HIGHLIGHT
   ========================================================= */

.gismart-highlight-wrapper {
    width: 1180px !important;
    max-width: calc(100% - 40px) !important;

    margin: 0 auto !important;

    border-top: 1px solid rgba(40, 100, 140, 0.10) !important;
}


.gismart-highlight {
    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    width: 100% !important;

    padding: 22px 0 28px !important;
}


.highlight-item {
    min-width: 0 !important;

    display: flex !important;

    align-items: center !important;

    gap: 13px !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1000px) {

    .gismart-hero-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .gismart-hero-visual {
        max-width: 700px !important;
        margin: 0 auto !important;
    }

    .gismart-highlight {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

}


@media (max-width: 600px) {

    .gismart-hero-container {
        width: calc(100% - 30px) !important;
        max-width: none !important;

        grid-template-columns: 1fr !important;

        padding:
            45px 0 35px !important;
    }

    .gismart-highlight-wrapper {
        width: calc(100% - 30px) !important;
        max-width: none !important;
    }

    .gismart-highlight {
        grid-template-columns: 1fr !important;
    }

    .gis-map-card {
        width: 100% !important;
        max-width: 100% !important;
    }

}
/* =========================================================
   GISMART HERO - CLEAN VERSION
   ========================================================= */

.gismart-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(8, 135, 223, 0.12),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fcff 55%,
            #edf8ff 100%
        );
}


/* ==============================
   MAIN HERO
   ============================== */

.gismart-hero-container {
    width: 1180px;
    max-width: calc(100% - 40px);

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.95fr;

    align-items: center;

    gap: 70px;

    padding: 75px 0 65px;
}


/* ==============================
   LEFT
   ============================== */

.gismart-hero-content {
    min-width: 0;
}


.gismart-eyebrow {
    display: flex;
    align-items: center;

    margin-bottom: 22px;

    color: #0879c9;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
}


.gismart-eyebrow span {
    display: inline-block;

    width: 30px;
    height: 2px;

    margin-right: 10px;

    background: #0879c9;
}


.gismart-hero-content h1 {
    margin: 0 0 25px;

    color: #0b2035;

    font-size: clamp(48px, 5vw, 70px);

    line-height: 0.98;

    letter-spacing: -2.5px;

    font-weight: 800;
}


.gismart-hero-content h1 strong {
    display: block;

    color: #0879c9;

    font-weight: 800;
}


.gismart-hero-content p {
    max-width: 650px;

    margin: 0 0 32px;

    color: #607991;

    font-size: 17px;

    line-height: 1.75;
}


/* ==============================
   BUTTON
   ============================== */

.gismart-hero-buttons {
    display: flex;

    align-items: center;

    gap: 14px;
}


.hero-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    min-height: 54px;

    padding: 0 25px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.25s ease;
}


.hero-btn span {
    font-size: 20px;

    line-height: 1;
}


.hero-btn-primary {
    color: #ffffff;

    background: #0879c9;

    box-shadow:
        0 12px 28px rgba(8, 121, 201, 0.22);
}


.hero-btn-primary:hover {
    color: #ffffff;

    background: #0569ad;

    transform: translateY(-2px);
}


.hero-btn-secondary {
    color: #0879c9;

    background: #ffffff;

    border: 1px solid #abdafa;
}


.hero-btn-secondary:hover {
    color: #0879c9;

    border-color: #0879c9;

    background: #f2faff;

    transform: translateY(-2px);
}


/* ==============================
   RIGHT VISUAL
   ============================== */

.gismart-hero-visual {
    width: 100%;

    min-width: 0;
}


.gis-map-card {
    position: relative;

    width: 100%;

    max-width: 620px;

    aspect-ratio: 1.35 / 1;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 26px;

    border: 1px solid rgba(8, 135, 223, 0.20);

    background: #eaf6ff;

    box-shadow:
        0 25px 60px rgba(20, 105, 155, 0.13);
}


/* ==============================
   GRID
   ============================== */

.gis-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(8, 135, 223, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(8, 135, 223, 0.08) 1px,
            transparent 1px
        );

    background-size: 38px 38px;
}


/* ==============================
   GIS LABEL
   ============================== */

.gis-data-label {
    position: absolute;

    top: 24px;
    right: 24px;

    z-index: 10;

    padding: 10px 16px;

    color: #0879c9;

    background: rgba(255,255,255,0.95);

    border: 1px solid rgba(8,135,223,0.15);

    border-radius: 10px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    box-shadow:
        0 8px 20px rgba(20,105,155,0.10);
}


/* ==============================
   MAP SVG
   ============================== */

.gis-map {
    position: absolute;

    width: 88%;
    height: auto;

    max-width: 88%;

    left: 6%;
    top: 24%;

    display: block;

    z-index: 3;

    /* Membuat peta menjadi biru */
    filter:
        brightness(0)
        saturate(100%)
        invert(40%)
        sepia(95%)
        saturate(1800%)
        hue-rotate(175deg)
        brightness(95%)
        contrast(95%);
}

/* ==============================
   MAP POINTS
   ============================== */

.map-point { 
    position: absolute; 
    z-index: 8; 
 
    width: 12px; 
    height: 12px; 
 
    border-radius: 50%; 
 
    background: #0879c9; 
 
    border: 3px solid #ffffff; 
 
    box-shadow: 
        0 0 0 6px rgba(8,135,223,0.18);

    animation: gisPulse 2.2s ease-in-out infinite;
}


/* DELAY ANIMASI TITIK */

.point-one {
    animation-delay: 0s;
}

.point-two { 
    animation-delay: 0.7s; 
} 
 
.point-three { 
    animation-delay: 1.4s; 
}

.point-one {
    left: 24%;
    top: 46%;
}

.point-two {
    left: 53%;
    top: 43%;
}

.point-three {
    left: 78%;
    top: 49%;
}

/* =========================================
   ANIMASI TITIK PETA
   ========================================= */

.map-point {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;

    background: #087fc9;
    border: 3px solid #ffffff;

    box-shadow:
        0 0 0 5px rgba(8, 127, 201, 0.20),
        0 0 12px rgba(8, 127, 201, 0.45);

    z-index: 10;

    animation: gisPulse 2.2s ease-in-out infinite;
}


/* Lingkaran radar yang melebar */
.map-point::before {
    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    border: 2px solid rgba(8, 127, 201, 0.45);

    animation: gisRadar 2.2s ease-out infinite;

    pointer-events: none;
}


/* Titik tengah */
.map-point::after {
    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: #087fc9;

    box-shadow: 0 0 8px rgba(8, 127, 201, 0.8);

    animation: gisCore 1.5s ease-in-out infinite;
}


/* =========================================
   PULSE
   ========================================= */

@keyframes gisPulse {

    0% {
        transform: scale(1);
        box-shadow:
            0 0 0 5px rgba(8, 127, 201, 0.20),
            0 0 12px rgba(8, 127, 201, 0.45);
    }

    50% {
        transform: scale(1.12);
        box-shadow:
            0 0 0 8px rgba(8, 127, 201, 0.08),
            0 0 20px rgba(8, 127, 201, 0.65);
    }

    100% {
        transform: scale(1);
        box-shadow:
            0 0 0 5px rgba(8, 127, 201, 0.20),
            0 0 12px rgba(8, 127, 201, 0.45);
    }
}


/* =========================================
   RADAR RING
   ========================================= */

@keyframes gisRadar {

    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }

    100% {
        width: 380%;
        height: 380%;
        opacity: 0;
    }
}


/* =========================================
   CORE BLINK
   ========================================= */

@keyframes gisCore {

    0%,
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.45;
        transform: translate(-50%, -50%) scale(0.7);
    }
}


/* ==============================
   INDONESIA LABEL
   ============================== */

.gis-indonesia-label {
    position: absolute;

    left: 24px;
    bottom: 24px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 15px;

    color: #0879c9;

    background: rgba(255,255,255,0.95);

    border-radius: 10px;

    font-size: 11px;

    font-weight: 800;
}


.gis-indonesia-label span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #0879c9;
}


/* ==============================
   COORDINATE
   ============================== */

.gis-coordinate {
    position: absolute;

    right: 24px;
    bottom: 24px;

    z-index: 10;

    padding: 8px 12px;

    border-radius: 20px;

    color: #607991;

    background: rgba(255,255,255,0.90);

    font-size: 10px;
}


/* ==============================
   HIGHLIGHTS
   ============================== */

.gismart-highlight-wrapper {
    width: 1180px;
    max-width: calc(100% - 40px);

    margin: 0 auto;

    border-top: 1px solid rgba(40,100,140,0.10);
}


.gismart-highlight {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    padding: 20px 0 28px;
}


.highlight-item {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 8px 24px;

    border-right:
        1px solid rgba(40,100,140,0.10);
}


.highlight-item:first-child {
    padding-left: 0;
}


.highlight-item:last-child {
    border-right: none;
}


.highlight-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: #0879c9;

    background: #f2faff;

    border: 1px solid #c9e8fa;

    font-size: 20px;
}


.highlight-item strong {
    display: block;

    margin-bottom: 3px;

    color: #172b40;

    font-size: 13px;
}


.highlight-item span {
    display: block;

    color: #74899c;

    font-size: 10px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .gismart-hero-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .gismart-hero-visual {
        max-width: 650px;

        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .gismart-hero-container {
        width: calc(100% - 30px);

        max-width: none;

        padding: 50px 0 40px;

        gap: 35px;
    }


    .gismart-hero-content h1 {
        font-size: 43px;

        letter-spacing: -1.5px;
    }


    .gismart-hero-content p {
        font-size: 14px;
    }


    .gismart-hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .hero-btn {
        width: 100%;
    }


    .gismart-highlight-wrapper {
        width: calc(100% - 30px);

        max-width: none;
    }


    .gismart-highlight {
        grid-template-columns: 1fr;
    }


    .highlight-item {
        padding: 14px 0;

        border-right: none;

        border-bottom:
            1px solid rgba(40,100,140,0.10);
    }

}