/* FULL CSS - tombol card layanan yang goyang, bukan tombol atas */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Segoe UI,sans-serif;
background:#0b1220;
overflow-x:hidden;
color:white;
}

/* HERO */
.hero{
min-height:100vh;
background:
linear-gradient(135deg,rgba(13,110,253,.95),rgba(0,198,255,.85)),
url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80');
background-size:cover;
background-position:center;
position:relative;
display:flex;
align-items:center;
}

.hero::before{
content:'';
position:absolute;
inset:0;
background:rgba(0,0,0,.25);
}

.container-main{
position:relative;
z-index:2;
}

/* NAVBAR */
.navbar-custom{
padding:20px 0;
}

.logo{
font-size:30px;
font-weight:900;
letter-spacing:1px;
}

/* HERO TEXT */
.hero h1{
font-size:62px;
font-weight:900;
line-height:1.15;
margin-bottom:18px;
animation:fadeUp 1s ease;
}

.hero p{
font-size:22px;
max-width:700px;
opacity:.95;
line-height:1.7;
margin-bottom:35px;
animation:fadeUp 1.4s ease;
}

/* BUTTON NORMAL */
.btn-main{
padding:15px 34px;
font-weight:700;
border-radius:14px;
margin-right:10px;
margin-bottom:10px;
font-size:17px;
transition:.3s;
}

.btn-main:hover{
transform:translateY(-4px);
}

.btn-glass{
background:rgba(255,255,255,.12);
border:1px solid rgba(255,255,255,.3);
color:white;
backdrop-filter:blur(10px);
}

.btn-glass:hover{
background:white;
color:#0d6efd;
}

/* STATUS */
.status-box{
background:rgba(255,255,255,.14);
border:1px solid rgba(255,255,255,.25);
padding:28px;
border-radius:24px;
backdrop-filter:blur(14px);
box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.status-box h4{
font-weight:800;
margin-bottom:18px;
}

.stat{
padding:14px 0;
border-bottom:1px solid rgba(255,255,255,.15);
font-size:17px;
}

.stat:last-child{
border:none;
}

/* SECTION */
.section{
padding:90px 0;
background:#f8f9fa;
color:#222;
position:relative;
}

.title{
font-size:42px;
font-weight:900;
text-align:center;
margin-bottom:55px;
}

/* CARD LAYANAN */
.card-app{
background:white;
padding:35px;
border-radius:24px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.07);
transition:.35s;
height:100%;
position:relative;
overflow:hidden;
animation:goyangCard 4s ease-in-out infinite;
}

/* beda delay */
.col-md-4:nth-child(2) .card-app{animation-delay:.4s;}
.col-md-4:nth-child(3) .card-app{animation-delay:.8s;}
.col-md-4:nth-child(4) .card-app{animation-delay:1.2s;}
.col-md-4:nth-child(5) .card-app{animation-delay:1.6s;}
.col-md-4:nth-child(6) .card-app{animation-delay:2s;}

/* glow */
.card-app::before{
content:'';
position:absolute;
top:-50%;
left:-50%;
width:200%;
height:200%;
background:linear-gradient(
45deg,
transparent,
rgba(13,110,253,.08),
transparent
);
transform:rotate(25deg);
animation:shine 6s linear infinite;
}

/* hover */
.card-app:hover{
transform:translateY(-12px) scale(1.03);
box-shadow:0 25px 50px rgba(0,0,0,.15);
}

/* ICON */
.icon{
font-size:52px;
margin-bottom:18px;
position:relative;
z-index:2;
}

/* TOMBOL/JUDUL DI DALAM CARD YANG GOYANG */
.card-app h4{
position:relative;
z-index:2;
font-size:20px;
font-weight:800;
margin-bottom:12px;
color:#0d6efd;
animation:goyangJudul 2.2s ease-in-out infinite;
}

.card-app p{
position:relative;
z-index:2;
font-size:16px;
color:#555;
}

/* beda timing judul */
.col-md-4:nth-child(2) .card-app h4{animation-delay:.3s;}
.col-md-4:nth-child(3) .card-app h4{animation-delay:.6s;}
.col-md-4:nth-child(4) .card-app h4{animation-delay:.9s;}
.col-md-4:nth-child(5) .card-app h4{animation-delay:1.2s;}
.col-md-4:nth-child(6) .card-app h4{animation-delay:1.5s;}

/* FOOTER */
.footer{
background:#0b1220;
padding:28px;
text-align:center;
font-size:15px;
color:#aaa;
}

/* FLOAT */
.float{
animation:naikTurun 3s ease-in-out infinite;
}

/* KEYFRAMES */
@keyframes naikTurun{
0%{transform:translateY(0);}
50%{transform:translateY(-10px);}
100%{transform:translateY(0);}
}

@keyframes goyangCard{
0%{transform:translateY(0);}
50%{transform:translateY(-10px);}
100%{transform:translateY(0);}
}

@keyframes goyangJudul{
0%{transform:translateY(0);}
25%{transform:translateY(-4px);}
50%{transform:translateY(0);}
75%{transform:translateY(4px);}
100%{transform:translateY(0);}
}

@keyframes shine{
0%{transform:translateX(-100%) rotate(25deg);}
100%{transform:translateX(100%) rotate(25deg);}
}

@keyframes fadeUp{
0%{
opacity:0;
transform:translateY(35px);
}
100%{
opacity:1;
transform:translateY(0);
}
}

/* MOBILE */
@media(max-width:768px){

.hero{
padding:70px 0;
text-align:center;
}

.hero h1{
font-size:38px;
}

.hero p{
font-size:17px;
}

.title{
font-size:30px;
}

.status-box{
margin-top:35px;
}

.logo{
font-size:24px;
}

.card-app{
margin-bottom:20px;
}

}

.navbar-toggler{
border-radius:12px;
padding:10px 14px;
}

@media(max-width:768px){

.logo{
font-size:26px;
}

.navbar-collapse .btn-main{
width:100%;
text-align:center;
}

.hero .btn-main{
width:auto;
}

}

/* =====================================================
   ROOT
===================================================== */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #06b6d4;

    --dark: #081b33;
    --dark-2: #0d294a;

    --text: #172033;
    --muted: #64748b;

    --light: #f5f8fc;

    --white: #ffffff;

    --border: #e5eaf1;

    --success: #10b981;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar-custom {
    background: rgba(8, 27, 51, .96);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 13px 0;
    position: relative;
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.brand-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, .25);
}

.brand-title {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.brand-subtitle {
    display: block;
    color: #94a3b8;
    font-size: 10px;
    margin-top: 3px;
}

.nav-link {
    color: #cbd5e1 !important;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 13px !important;
    border-radius: 8px;
    transition: .2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, .08);
}

.btn-admin {
    background: white;
    color: var(--dark);
    border: none;
    padding: 9px 17px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    transition: .2s ease;
}

.btn-admin:hover {
    background: #e2e8f0;
    color: var(--dark);
    transform: translateY(-1px);
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 100px 0 145px;
    background:
        radial-gradient(circle at 80% 15%, rgba(37, 99, 235, .45), transparent 32%),
        radial-gradient(circle at 10% 85%, rgba(6, 182, 212, .20), transparent 30%),
        linear-gradient(135deg, #081b33, #0c3157);
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .06);
    top: -250px;
    right: -100px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .04);
    bottom: -600px;
    left: -200px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50px;
    background: rgba(255, 255, 255, .07);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
}

.hero-label i {
    color: #67e8f9;
}

.hero-title {
    font-size: clamp(2.3rem, 5vw, 4.3rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.hero-title span {
    background: linear-gradient(90deg, #60a5fa, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: #cbd5e1;
    max-width: 690px;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #2563eb, #0891b2);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, .25);
    transition: .25s ease;
}

.btn-primary-custom:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, .35);
}

.btn-outline-custom {
    border: 1px solid rgba(255, 255, 255, .22);
    color: white;
    padding: 11px 20px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 13px;
    background: rgba(255, 255, 255, .04);
    transition: .25s ease;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--dark);
}


/* =====================================================
   HERO PANEL
===================================================== */

.hero-panel {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 8px;
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
}

.hero-panel-inner {
    background: rgba(4, 20, 39, .55);
    border-radius: 15px;
    padding: 22px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.panel-title {
    font-size: 13px;
    font-weight: 800;
    color: white;
}

.online-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #6ee7b7;
    background: rgba(16, 185, 129, .10);
    border: 1px solid rgba(16, 185, 129, .15);
    padding: 5px 9px;
    border-radius: 50px;
}

.online-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

.panel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.panel-item:last-child {
    border-bottom: none;
}

.panel-icon {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(37, 99, 235, .15);
    color: #93c5fd;
    flex-shrink: 0;
}

.panel-item h6 {
    color: white;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
}

.panel-item p {
    color: #94a3b8;
    font-size: 10px;
    margin: 0;
    line-height: 1.5;
}


/* =====================================================
   TICKER
===================================================== */

.ticker-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -55px;
    margin-bottom: 10px;
}

.ticker {
    height: 70px;
    background: white;
    border: 1px solid #dce5ef;
    border-radius: 15px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15, 23, 42, .10);
}

.ticker-label {
    flex: 0 0 auto;
    min-width: 175px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    background: linear-gradient(135deg, #2563eb, #0e7490);
    color: white;
    font-size: 12px;
    font-weight: 800;
    position: relative;
    z-index: 5;
}

.ticker-label i {
    font-size: 17px;
}

.ticker-label span {
    display: block;
    font-size: 10px;
    opacity: .75;
    margin-top: 1px;
    font-weight: 500;
}

.ticker-window {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.ticker-window::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 35px;
    z-index: 2;
    background: linear-gradient(90deg, white, transparent);
}

.ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    animation: tickerMove 35s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 35px;
    color: #334155;
    font-size: 12px;
    font-weight: 600;
}

.ticker-item::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #cbd5e1;
    margin-left: 25px;
}

.ticker-tag {
    padding: 5px 9px;
    border-radius: 50px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 9px;
    font-weight: 800;
}

@keyframes tickerMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* =====================================================
   SECTION
===================================================== */

.section {
    padding: 85px 0;
}

.section-white {
    background: white;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    color: #1d4ed8;
    border-radius: 50px;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-description {
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 45px;
    font-size: 14px;
}


/* =====================================================
   QUICK STATS
===================================================== */

.stats {
    margin-top: -5px;
}

.stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: .25s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, .07);
}

.stat-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 19px;
    flex-shrink: 0;
}

.stat-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.stat-text {
    font-size: 10px;
    color: var(--muted);
    margin-top: 3px;
}


/* =====================================================
   ABOUT
===================================================== */

.about-box {
    height: 100%;
    background: white;
    border: 1px solid var(--border);
    border-radius: 17px;
    padding: 28px;
    transition: .25s ease;
}

.about-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, .07);
}

.about-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
    color: #2563eb;
    border-radius: 13px;
    font-size: 22px;
    margin-bottom: 18px;
}

.about-box h3 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-box p {
    color: var(--muted);
    font-size: 12px;
    margin: 0;
    line-height: 1.8;
}


/* =====================================================
   BERITA TERBARU
===================================================== */

.news-section {
    background: #f5f8fc;
}

.news-card {
    height: 100%;
    background: white;
    border: 1px solid var(--border);
    border-radius: 17px;
    overflow: hidden;
    transition: .3s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-6px);
    border-color: #bfdbfe;
    box-shadow: 0 20px 40px rgba(15, 23, 42, .09);
}

.news-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #e0edff, #e8fbff);
}

.news-placeholder {
    width: 100%;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
    color: #2563eb;
    font-size: 42px;
}

.news-body {
    padding: 22px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.news-category {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 50px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.news-date {
    color: #94a3b8;
    font-size: 9px;
    font-weight: 600;
}

.news-title {
    color: var(--dark);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 800;
    margin-bottom: 9px;
}

.news-excerpt {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    font-size: 11px;
    font-weight: 800;
    transition: .2s ease;
}

.news-link:hover {
    color: #1d4ed8;
    gap: 4px;
}

.news-featured {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 9px;
    border-radius: 50px;
    background: #2563eb;
    color: white;
    font-size: 8px;
    font-weight: 800;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(37, 99, 235, .25);
}

.news-empty {
    background: white;
    border: 1px solid var(--border);
    border-radius: 17px;
    padding: 50px 25px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
}


/* =====================================================
   APPLICATION
===================================================== */

.app-card {
    height: 100%;
    background: white;
    border: 1px solid var(--border);
    border-radius: 17px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: .3s ease;
}

.app-card::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .04);
    right: -35px;
    bottom: -35px;
}

.app-card:hover {
    transform: translateY(-6px);
    border-color: #bfdbfe;
    box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
}

.app-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
    color: #2563eb;
    font-size: 21px;
    margin-bottom: 18px;
}

.app-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 9px;
}

.app-card p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.app-link {
    color: #2563eb;
    font-size: 11px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.app-link:hover {
    color: #1d4ed8;
}

.status-dev {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 50px;
    background: #fff7ed;
    color: #c2410c;
    font-size: 9px;
    font-weight: 800;
}


/* =====================================================
   STEPS
===================================================== */

.step {
    text-align: center;
    padding: 15px;
}

.step-number {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #0891b2);
    color: white;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(37, 99, 235, .20);
}

.step h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 7px;
}

.step p {
    color: var(--muted);
    font-size: 12px;
    margin: 0;
}


/* =====================================================
   INFORMATION
===================================================== */

.info-card {
    height: 100%;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
}

.info-card h3 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 9px;
}

.info-card p {
    color: var(--muted);
    font-size: 12px;
    margin: 0;
    line-height: 1.8;
}


/* =====================================================
   CTA
===================================================== */

.cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #081b33, #0e416d);
    color: white;
    border-radius: 20px;
    padding: 55px;
    box-shadow: 0 25px 50px rgba(8, 27, 51, .15);
}

.cta::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .07);
    right: -100px;
    top: -120px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 27px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta p {
    color: #cbd5e1;
    max-width: 650px;
    font-size: 13px;
    margin-bottom: 25px;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    background: #061326;
    color: #94a3b8;
    padding: 55px 0 25px;
}

.footer-title {
    color: white;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 12px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 12px;
    transition: .2s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 35px;
    padding-top: 20px;
    text-align: center;
    font-size: 11px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 15px;
    }

    .hero {
        padding: 75px 0 110px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-panel {
        margin-top: 15px;
    }

    .ticker-label {
        min-width: 145px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 65px 0 100px;
    }

    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 14px;
    }

    .ticker-wrapper {
        margin-top: -45px;
    }

    .ticker {
        height: 60px;
    }

    .ticker-label {
        min-width: 48px;
        width: 48px;
        justify-content: center;
        padding: 0;
    }

    .ticker-label-text {
        display: none;
    }

    .ticker-item {
        font-size: 10px;
        padding: 0 20px;
    }

    .section {
        padding: 65px 0;
    }

    .section-title {
        font-size: 25px;
    }

    .news-image,
    .news-placeholder {
        height: 175px;
    }

    .cta {
        padding: 35px 25px;
    }

    .cta h2 {
        font-size: 23px;
    }
}

@media (max-width: 575px) {
    .brand-subtitle {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions a {
        text-align: center;
    }

    .stat-card {
        padding: 16px;
    }

    .news-body {
        padding: 19px;
    }
}