/*
Theme Name: Salindo Berlian Motor Premium V3
Theme URI: https://salindoberlianmotor.com/
Author: Salindo Berlian Motor
Description: Premium automotive WordPress theme with modern automotive visual design.
Version: 3.0.0
Text Domain: salindo-berlian-motor
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root{
    --red:#c8102e;
    --red-dark:#a70d26;
    --red-light:#ed1c3b;

    --black:#08090b;
    --black-2:#101216;
    --black-3:#17191e;

    --ink:#16181c;
    --ink-soft:#383c43;

    --gray:#707680;
    --gray-light:#9da2aa;

    --white:#fff;
    --soft:#f5f6f8;
    --soft-2:#eef0f3;
    --line:#e5e7eb;

    --radius-sm:10px;
    --radius:18px;
    --radius-lg:26px;
    --radius-xl:34px;

    --shadow-sm:0 8px 25px rgba(8,9,11,.07);
    --shadow:0 18px 55px rgba(8,9,11,.11);
    --shadow-lg:0 30px 90px rgba(8,9,11,.18);

    --ease:cubic-bezier(.22,1,.36,1);
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after{
    box-sizing:border-box;
}

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

body{
    margin:0;
    color:var(--ink);
    background:#fff;
    font-family:"Manrope",sans-serif;
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family:"Plus Jakarta Sans",sans-serif;
    letter-spacing:-.045em;
    line-height:1.15;
}

a{
    color:inherit;
    text-decoration:none;
    transition:.3s var(--ease);
}

img{
    max-width:100%;
    height:auto;
}

button,
input,
select,
textarea{
    font:inherit;
}

button{
    cursor:pointer;
}

::selection{
    color:#fff;
    background:var(--red);
}

.container{
    width:min(1180px,92%);
    margin:auto;
}

/* =========================================================
   SECTION
========================================================= */

.section{
    position:relative;
    padding:105px 0;
}

.section.soft{
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(200,16,46,.035),
            transparent 28%
        ),
        var(--soft);
}

.section-title{
    max-width:760px;
    margin-bottom:48px;
}

.section-title .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:var(--red);
    font-size:10px;
    font-weight:800;
    letter-spacing:.22em;
    text-transform:uppercase;
}

.section-title .eyebrow::before{
    content:"";
    width:30px;
    height:2px;
    border-radius:99px;
    background:var(--red);
}

.section-title h2{
    margin:12px 0 15px;
    font-size:clamp(34px,4vw,51px);
    line-height:1.05;
}

.section-title p{
    max-width:650px;
    margin:0;
    color:var(--gray);
    font-size:15px;
}

/* =========================================================
   ANNOUNCEMENT
========================================================= */

.announce{
    position:relative;
    z-index:110;

    color:#fff;

    background:
        linear-gradient(
            90deg,
            #a50d26,
            var(--red),
            #a50d26
        );

    background-size:200% 100%;
    animation:announceMove 8s linear infinite;

    font-size:10px;
    font-weight:800;
    letter-spacing:.1em;
    text-transform:uppercase;
}

.announce .container{
    min-height:36px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:7px 0;
    text-align:center;
}

/* =========================================================
   HEADER
========================================================= */

.header{
    position:sticky;
    top:0;
    z-index:100;

    border-bottom:1px solid rgba(225,228,232,.85);

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(22px) saturate(160%);
    -webkit-backdrop-filter:blur(22px) saturate(160%);

    transition:.3s var(--ease);
}

.header:hover{
    background:rgba(255,255,255,.96);
}

.nav{
    min-height:82px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:28px;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;

    flex-shrink:0;

    font-weight:800;
}

.logo-mark{
    position:relative;

    width:45px;
    height:45px;

    display:grid;
    place-items:center;

    overflow:hidden;

    border-radius:13px;

    color:#fff;

    background:
        linear-gradient(
            145deg,
            #202329,
            #050608
        );

    box-shadow:
        0 10px 25px rgba(0,0,0,.18);

    font-size:11px;
    font-weight:800;
}

.logo-mark::after{
    content:"";

    position:absolute;
    inset:1px;

    border:1px solid rgba(255,255,255,.12);
    border-radius:12px;
}

.logo span:last-child{
    display:block;

    color:var(--ink);

    font-size:14px;
    letter-spacing:-.025em;
}

.logo small{
    display:block;

    margin-top:1px;

    color:#8d9299;

    font-size:8px;
    font-weight:800;
    letter-spacing:.17em;
    line-height:1.2;
}

.navlinks{
    display:flex;
    align-items:center;
    gap:4px;

    font-size:12px;
    font-weight:800;
}

.navlinks a{
    position:relative;

    padding:11px 12px;

    border-radius:9px;

    color:#363a41;
}

.navlinks a::after{
    content:"";

    position:absolute;

    left:12px;
    right:12px;
    bottom:5px;

    height:2px;

    border-radius:99px;

    background:var(--red);

    transform:scaleX(0);

    transition:.3s var(--ease);
}

.navlinks a:hover{
    color:var(--red);
    background:rgba(200,16,46,.035);
}

.navlinks a:hover::after{
    transform:scaleX(1);
}

.nav-cta{
    margin-left:6px;

    color:#fff!important;

    background:var(--black);

    border-radius:10px!important;

    box-shadow:
        0 8px 22px rgba(0,0,0,.15);
}

.nav-cta::after{
    display:none!important;
}

.nav-cta:hover{
    color:#fff!important;

    background:var(--red)!important;

    transform:translateY(-2px);
}

.nav-toggle{
    display:none;

    width:42px;
    height:42px;

    border:1px solid var(--line);
    border-radius:10px;

    background:#fff;

    color:var(--ink);

    font-size:21px;
}

/* =========================================================
   HERO
========================================================= */

.hero{
    position:relative;

    min-height:700px;

    display:flex;
    align-items:center;

    overflow:hidden;
    isolation:isolate;

    color:#fff;

    background:
        radial-gradient(
            circle at 78% 28%,
            rgba(200,16,46,.35),
            transparent 25%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(200,16,46,.15),
            transparent 30%
        ),
        linear-gradient(
            125deg,
            #050608 0%,
            #121419 52%,
            #08090b 100%
        );

    background-size:160% 160%;

    animation:heroBackground 16s ease-in-out infinite;
}

.hero::before{
    content:"";

    position:absolute;

    width:720px;
    height:720px;

    right:-190px;
    bottom:-350px;

    border:1px solid rgba(255,255,255,.09);

    border-radius:50%;

    box-shadow:
        0 0 0 85px rgba(255,255,255,.018),
        0 0 0 170px rgba(200,16,46,.025);

    animation:heroCircle 13s ease-in-out infinite;

    z-index:-1;
}

.hero::after{
    content:"";

    position:absolute;

    width:1000px;
    height:1000px;

    right:-380px;
    bottom:-520px;

    border:1px solid rgba(200,16,46,.13);

    border-radius:50%;

    animation:heroCircleTwo 18s ease-in-out infinite;

    z-index:-1;
}

.hero .container{
    position:relative;
    z-index:3;
}

.hero-copy{
    position:relative;
    z-index:5;

    max-width:720px;

    padding:105px 0;
}

.kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:#ff5369;

    font-size:10px;
    font-weight:800;
    letter-spacing:.23em;

    text-transform:uppercase;
}

.kicker::before{
    content:"";

    width:32px;
    height:2px;

    border-radius:99px;

    background:var(--red);
}

.hero h1{
    max-width:760px;

    margin:18px 0 23px;

    font-size:clamp(46px,6.4vw,78px);

    line-height:.98;

    letter-spacing:-.06em;
}

.hero h1 strong,
.hero h1 span{
    color:#ff334f;
}

.hero p{
    max-width:620px;

    margin:0;

    color:#c8cbd1;

    font-size:16px;
    line-height:1.8;
}

.btns{
    display:flex;
    flex-wrap:wrap;

    gap:11px;

    margin-top:32px;
}

.btn{
    position:relative;

    min-height:48px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:9px;

    overflow:hidden;

    padding:13px 21px;

    border:1px solid transparent;
    border-radius:10px;

    font-size:12px;
    font-weight:800;

    transition:
        transform .3s var(--ease),
        box-shadow .3s var(--ease),
        background .3s var(--ease);
}

.btn::before{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            105deg,
            transparent 20%,
            rgba(255,255,255,.18),
            transparent 80%
        );

    transform:translateX(-120%);

    transition:.6s var(--ease);
}

.btn:hover::before{
    transform:translateX(120%);
}

.btn:hover{
    transform:translateY(-3px);
}

.btn-red{
    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--red-light),
            var(--red)
        );

    box-shadow:
        0 13px 30px rgba(200,16,46,.3);
}

.btn-red:hover{
    color:#fff;

    box-shadow:
        0 18px 40px rgba(200,16,46,.38);
}

.btn-white{
    color:#111;

    background:#fff;

    box-shadow:
        0 10px 25px rgba(0,0,0,.14);
}

.btn-white:hover{
    color:#111;

    box-shadow:
        0 15px 35px rgba(0,0,0,.2);
}

.btn-ghost{
    color:#fff;

    border-color:rgba(255,255,255,.22);

    background:rgba(255,255,255,.035);
}

.btn-ghost:hover{
    color:#fff;

    border-color:rgba(255,255,255,.42);

    background:rgba(255,255,255,.08);
}

/* =========================================================
   PRODUCT GRID
========================================================= */

.products{
    display:grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap:20px;
}

.product{
    position:relative;

    min-width:0;

    overflow:hidden;

    border:1px solid #e4e6ea;
    border-radius:var(--radius);

    background:#fff;

    transition:
        transform .45s var(--ease),
        box-shadow .45s var(--ease),
        border-color .45s var(--ease);
}

.product::after{
    content:"";

    position:absolute;

    left:20px;
    right:20px;
    bottom:0;

    height:2px;

    border-radius:99px;

    background:var(--red);

    transform:scaleX(0);
    transform-origin:left;

    transition:.45s var(--ease);
}

.product:hover{
    transform:translateY(-9px);

    border-color:#dfe2e7;

    box-shadow:var(--shadow);
}

.product:hover::after{
    transform:scaleX(1);
}

.product-img{
    position:relative;

    height:225px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            #fff 0%,
            #f5f6f7 58%,
            #e9ebee 100%
        );
}

.product-img::before{
    content:"";

    position:absolute;

    left:50%;
    bottom:22px;

    width:72%;
    height:20px;

    border-radius:50%;

    background:rgba(8,9,11,.1);

    filter:blur(13px);

    transform:translateX(-50%);

    transition:.45s var(--ease);
}

.product:hover .product-img::before{
    transform:
        translateX(-50%)
        scale(1.1);
}

.product-img img{
    position:relative;
    z-index:2;

    width:100%;
    height:100%;

    object-fit:contain;

    padding:16px 20px;

    display:block;

    filter:
        drop-shadow(
            0 14px 13px rgba(0,0,0,.1)
        );

    transition:.6s var(--ease);
}

.product:hover .product-img img{
    transform:
        scale(1.065)
        translateY(-4px);
}

.product-category,
.product-new{
    position:absolute;
    z-index:4;

    top:14px;

    padding:7px 10px;

    border-radius:6px;

    font-size:8px;
    font-weight:800;
    letter-spacing:.13em;

    line-height:1;

    text-transform:uppercase;
}

.product-category{
    left:14px;

    color:#fff;

    background:rgba(8,9,11,.93);

    backdrop-filter:blur(8px);
}

.product-new{
    right:14px;

    color:#fff;

    background:var(--red);

    box-shadow:
        0 7px 20px rgba(200,16,46,.25);
}

.product-body{
    padding:22px 20px 24px;
}

.product h3{
    margin:0 0 6px;

    color:var(--ink);

    font-size:19px;
    line-height:1.2;
}

.product p{
    min-height:42px;

    margin:0;

    color:var(--gray);

    font-size:12px;
    line-height:1.7;
}

.product a{
    display:inline-flex;
    align-items:center;
    gap:7px;

    margin-top:16px;

    color:var(--red);

    font-size:11px;
    font-weight:800;
}

.product a::after{
    content:"→";

    transition:.25s var(--ease);
}

.product a:hover{
    color:var(--red-dark);
}

.product a:hover::after{
    transform:translateX(4px);
}

/* =========================================
PROGRAM PENJUALAN - SMOOTH SLIDER
========================================= */

.sales-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

/* =========================================
SLIDE
========================================= */

.sales-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    align-items: center;

    column-gap: 50px;

    padding: 30px 65px;

    box-sizing: border-box;

    background: #f7f7f7;
    border-radius: 20px;

    transform: translateX(100%);

    transition:
        transform .7s cubic-bezier(.77, 0, .175, 1);

    z-index: 1;
}

/* =========================================
SLIDE AKTIF
========================================= */

.sales-slide.active {
    transform: translateX(0);
    z-index: 2;
}

/* =========================================
SLIDE KELUAR
========================================= */

.sales-slide.prev {
    transform: translateX(-100%);
    z-index: 1;
}

/* =========================================
CONTENT
========================================= */

.sales-content {
    width: 100%;
    max-width: 560px;
    min-width: 0;
}

.sales-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 14px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;

    color: #e60012;
}

/* garis kecil sebelum label */
.sales-label::before {
    content: "";
    width: 28px;
    height: 2px;

    margin-right: 10px;

    background: #e60012;
    border-radius: 10px;
}

.sales-content h3 {
    margin: 0 0 16px;

    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -1px;

    color: #17181c;
}

.sales-content p {
    margin: 0 0 25px;

    max-width: 500px;

    font-size: 15px;
    line-height: 1.7;

    color: #6b7078;
}
/* =========================================
BUTTON HUBUNGI SALES
========================================= */

.sales-content .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 24px;

    background: #e60012;
    border: 1px solid #e60012;

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    border-radius: 7px;

    box-shadow:
        0 5px 15px rgba(230, 0, 18, .15);

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.sales-content .btn-primary:hover {
    background: #c90010;
    border-color: #c90010;

    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(230, 0, 18, .25);
}

/* =========================================
IMAGE CONTAINER
========================================= */

.sales-image {
    width: 350px;
    height: 450px;

    overflow: hidden;

    border-radius: 12px;

    background: #ffffff;

    cursor: zoom-in;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    justify-self: end;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .10);
}

/* =========================================
IMAGE - UTUH / TIDAK CROP
========================================= */

.sales-image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
    object-position: center;

    transform: scale(1);

    transition:
        transform .4s ease;
}

/* =========================================
IMAGE HOVER
========================================= */

.sales-image:hover img {
    transform: scale(1.015);
}

/* =========================================
ARROW - SMALL
========================================= */

.sales-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 36px;
    height: 36px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: #e60012;
    color: #fff;

    font-size: 22px;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 10;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, .15);

    transition:
        background .25s ease,
        transform .25s ease;
}

.sales-arrow:hover {
    background: #c90010;

    transform:
        translateY(-50%)
        scale(1.08);
}

.sales-prev {
    left: 16px;
}

.sales-next {
    right: 16px;
}

/* =========================================
DOTS
========================================= */

.sales-dots {
    position: absolute;

    bottom: 18px;

    left: 50%;
    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 7px;

    z-index: 10;
}

.sales-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, .22);

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease;
}

.sales-dot.active {
    width: 25px;

    border-radius: 10px;

    background: #e60012;
}

/* =========================================
LIGHTBOX
========================================= */

.sales-lightbox {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, .92);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.sales-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sales-lightbox img {
    display: block;

    max-width: 92vw;
    max-height: 92vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 8px;
}

/* =========================================
LIGHTBOX CLOSE
========================================= */

.sales-lightbox-close {
    position: absolute;

    top: 18px;
    right: 25px;

    width: 45px;
    height: 45px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: #e60012;

    color: #fff;

    font-size: 30px;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 100000;

    transition:
        background .25s ease,
        transform .25s ease;
}

.sales-lightbox-close:hover {
    background: #c90010;
    transform: scale(1.05);
}

body.sales-lightbox-open {
    overflow: hidden;
}



/* =========================================================
   FEATURE BAND
========================================================= */

.feature-band{
    position:relative;

    overflow:hidden;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;

    padding:58px;

    border:1px solid rgba(255,255,255,.06);

    border-radius:var(--radius-xl);

    color:#fff;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(200,16,46,.3),
            transparent 30%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(255,255,255,.05),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #090a0c,
            #17191e
        );

    box-shadow:var(--shadow-lg);
}

.feature-band::after{
    content:"";

    position:absolute;

    width:430px;
    height:430px;

    right:-240px;
    bottom:-260px;

    border:1px solid rgba(255,255,255,.07);

    border-radius:50%;
}

.feature-band h2{
    position:relative;
    z-index:2;

    margin:0 0 14px;

    font-size:clamp(32px,4vw,47px);

    line-height:1.05;
}

.feature-band p{
    position:relative;
    z-index:2;

    max-width:560px;

    margin:0;

    color:#b9bdc5;

    font-size:14px;
}

.ticks{
    position:relative;
    z-index:2;

    display:grid;
    gap:14px;
}

.tick{
    display:flex;

    align-items:flex-start;

    gap:12px;

    padding:12px 14px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    background:rgba(255,255,255,.035);
}

.tick i{
    flex:0 0 auto;

    width:23px;
    height:23px;

    display:grid;
    place-items:center;

    border-radius:50%;

    color:#fff;

    background:var(--red);

    font-style:normal;
    font-size:10px;
    font-weight:900;
}

.tick span{
    color:#e1e3e7;

    font-size:12px;
    line-height:1.6;
}

/* =========================================================
   FORM
========================================================= */

.form-wrap{
    display:grid;

    grid-template-columns:.78fr 1.22fr;

    gap:45px;

    align-items:start;
}

.form-info{
    position:sticky;
    top:112px;
}

.form-info .eyebrow{
    color:var(--red);

    font-size:10px;
    font-weight:800;
    letter-spacing:.2em;

    text-transform:uppercase;
}

.form-info h2{
    margin:10px 0 15px;

    font-size:clamp(34px,4vw,48px);

    line-height:1.05;
}

.form-info p{
    max-width:440px;

    margin:0;

    color:var(--gray);

    font-size:14px;
}

.form-card{
    position:relative;

    padding:35px;

    border:1px solid var(--line);

    border-radius:24px;

    background:#fff;

    box-shadow:var(--shadow);
}

.form-card::before{
    content:"";

    position:absolute;

    top:0;

    left:35px;
    right:35px;

    height:3px;

    border-radius:
        0 0 99px 99px;

    background:
        linear-gradient(
            90deg,
            var(--red),
            transparent
        );
}

.form-grid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:17px;
}

.field{
    display:flex;

    flex-direction:column;

    gap:7px;
}

.field.full{
    grid-column:1/-1;
}

.field label{
    color:#282c32;

    font-size:11px;
    font-weight:800;
}

.field input,
.field select,
.field textarea{
    width:100%;

    border:1px solid #dfe2e7;

    border-radius:11px;

    outline:none;

    color:var(--ink);

    background:#fff;

    padding:12px 13px;

    font-size:13px;

    transition:
        border-color .25s var(--ease),
        box-shadow .25s var(--ease),
        transform .25s var(--ease);
}

.field input::placeholder,
.field textarea::placeholder{
    color:#a5aab1;
}

.field input:hover,
.field select:hover,
.field textarea:hover{
    border-color:#cfd3da;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
    border-color:var(--red);

    box-shadow:
        0 0 0 4px rgba(200,16,46,.075);
}

.field textarea{
    min-height:115px;

    resize:vertical;
}

.form-note{
    margin:14px 0;

    color:#888d95;

    font-size:10px;
}

.success,
.error{
    margin-bottom:17px;

    padding:13px 15px;

    border-radius:11px;

    font-size:12px;
    font-weight:600;
}

.success{
    color:#25733a;

    border:1px solid #d5efdc;

    background:#edf8f0;
}

.error{
    color:#a20e25;

    border:1px solid #f2d3d7;

    background:#fff0f1;
}

/* =========================================================
   CONTACT
========================================================= */

.contact{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;
}

.contact-card{
    position:relative;

    overflow:hidden;

    padding:30px;

    border:1px solid var(--line);

    border-radius:var(--radius);

    background:#fff;

    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease);
}

.contact-card:hover{
    transform:translateY(-5px);

    box-shadow:var(--shadow-sm);
}

.contact-card::after{
    content:"";

    position:absolute;

    width:110px;
    height:110px;

    right:-60px;
    top:-60px;

    border:1px solid rgba(200,16,46,.1);

    border-radius:50%;
}

.contact-card h3{
    margin:0 0 8px;

    font-size:21px;
}

.muted{
    color:var(--gray);

    font-size:13px;
}

/* =========================================================
   FOOTER
========================================================= */

.footer{
    position:relative;

    overflow:hidden;

    color:#bfc3ca;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(200,16,46,.12),
            transparent 25%
        ),
        #090a0c;

    padding:68px 0 22px;
}

.footer::before{
    content:"";

    position:absolute;

    left:0;
    right:0;
    top:0;

    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(200,16,46,.75),
            transparent
        );
}

.footer-grid{
    display:grid;

    grid-template-columns:
        1.45fr 1fr 1fr;

    gap:50px;
}

.footer h3{
    margin:0 0 13px;

    color:#fff;

    font-size:17px;
}

.footer p,
.footer li{
    color:#8f949d;

    font-size:12px;
}

.footer a:hover{
    color:#fff;
}

.copyright{
    margin-top:45px;

    padding-top:20px;

    border-top:1px solid #25272c;

    color:#747982;

    font-size:10px;
}

/* =========================================================
   CHAT
========================================================= */

.chat-btn{
    position:fixed;

    right:24px;
    bottom:24px;

    z-index:120;

    width:60px;
    height:60px;

    display:grid;
    place-items:center;

    border:0;

    border-radius:50%;

    color:#fff;

    background:
        linear-gradient(
            145deg,
            var(--red-light),
            var(--red-dark)
        );

    box-shadow:
        0 15px 35px rgba(200,16,46,.34),
        0 0 0 7px rgba(200,16,46,.07);

    font-size:22px;

    transition:
        transform .3s var(--ease),
        box-shadow .3s var(--ease);
}

.chat-btn::before{
    content:"";

    position:absolute;

    inset:-6px;

    border:1px solid rgba(200,16,46,.25);

    border-radius:50%;

    animation:chatPulse 2.2s ease-out infinite;
}

.chat-btn:hover{
    transform:
        translateY(-5px)
        scale(1.04);

    box-shadow:
        0 20px 45px rgba(200,16,46,.42),
        0 0 0 7px rgba(200,16,46,.09);
}

.chatbox{
    position:fixed;

    right:24px;
    bottom:98px;

    z-index:119;

    width:360px;
    max-width:calc(100vw - 28px);

    overflow:hidden;

    border:1px solid rgba(222,225,230,.9);

    border-radius:21px;

    background:#fff;

    box-shadow:
        0 28px 80px rgba(0,0,0,.24);

    transform:
        translateY(12px)
        scale(.97);

    opacity:0;
    visibility:hidden;

    pointer-events:none;

    transition:
        opacity .3s var(--ease),
        transform .3s var(--ease),
        visibility .3s;
}

.chatbox.open{
    transform:
        translateY(0)
        scale(1);

    opacity:1;

    visibility:visible;

    pointer-events:auto;
}

.chat-head{
    position:relative;

    padding:19px 20px;

    color:#fff;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(200,16,46,.38),
            transparent 35%
        ),
        #101216;
}

.chat-head strong{
    font-family:"Plus Jakarta Sans",sans-serif;

    font-size:14px;
}

.chat-head small{
    display:block;

    margin-top:3px;

    color:#aeb2b9;

    font-size:10px;
}

.chat-close{
    float:right;

    border:0;

    background:none;

    color:#fff;

    font-size:21px;

    line-height:1;
}

.chat-body{
    padding:18px;
}

.chat-msg{
    margin-bottom:13px;

    padding:12px 13px;

    border:1px solid #e9ebee;

    border-radius:
        13px 13px 13px 4px;

    color:#42464d;

    background:#f4f5f7;

    font-size:12px;
}

.chat-options{
    display:grid;

    gap:8px;
}

.chat-options button{
    width:100%;

    border:1px solid var(--line);

    border-radius:10px;

    padding:11px 12px;

    color:#34383e;

    background:#fff;

    text-align:left;

    font-size:11px;
    font-weight:800;

    transition:
        color .25s var(--ease),
        border-color .25s var(--ease),
        background .25s var(--ease),
        transform .25s var(--ease);
}

.chat-options button:hover{
    color:var(--red);

    border-color:
        rgba(200,16,46,.3);

    background:
        rgba(200,16,46,.035);

    transform:translateX(3px);
}

/* =========================================================
   FOCUS
========================================================= */

:focus-visible{
    outline:3px solid rgba(200,16,46,.3);

    outline-offset:3px;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroBackground{
    0%,100%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }
}

@keyframes heroCircle{
    0%,100%{
        transform:
            translate3d(0,0,0)
            rotate(0);
    }

    50%{
        transform:
            translate3d(-25px,-12px,0)
            rotate(4deg);
    }
}

@keyframes heroCircleTwo{
    0%,100%{
        transform:
            translate3d(0,0,0);
    }

    50%{
        transform:
            translate3d(25px,-20px,0);
    }
}

@keyframes announceMove{
    0%{
        background-position:0% 50%;
    }

    100%{
        background-position:200% 50%;
    }
}

@keyframes chatPulse{
    0%{
        transform:scale(.9);
        opacity:.8;
    }

    70%{
        transform:scale(1.25);
        opacity:0;
    }

    100%{
        transform:scale(1.25);
        opacity:0;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:1100px){

    .products{
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .navlinks{
        gap:2px;
    }

    .navlinks a{
        padding-left:9px;
        padding-right:9px;
    }
}

/* =========================================================
   TABLET / MOBILE NAV
========================================================= */

@media(max-width:980px){

    .section{
        padding:82px 0;
    }

    .nav{
        min-height:76px;
    }

    .nav-toggle{
        display:grid;
        place-items:center;
    }

    .navlinks{
        display:none;
    }

    .navlinks.open{
        position:absolute;

        top:76px;
        left:0;
        right:0;

        display:flex;

        flex-direction:column;

        align-items:stretch;

        gap:3px;

        padding:15px 4%;

        border-bottom:
            1px solid var(--line);

        background:
            rgba(255,255,255,.98);

        box-shadow:
            0 20px 35px rgba(8,9,11,.08);
    }

    .navlinks.open a{
        padding:12px 13px;
    }

    .navlinks.open .nav-cta{
        margin:5px 0 0;

        text-align:center;
    }

    .form-wrap,
    .feature-band{
        grid-template-columns:1fr;
    }

    .form-info{
        position:static;
    }

    .service-grid,
    .contact{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

    .container{
        width:min(92%,520px);
    }

    .announce{
        font-size:8px;
        letter-spacing:.06em;
    }

    .section{
        padding:68px 0;
    }

    .section-title{
        margin-bottom:32px;
    }

    .section-title h2{
        font-size:34px;
    }

    .hero{
        min-height:620px;
    }

    .hero-copy{
        padding:78px 0;
    }

    .hero h1{
        margin-top:15px;

        font-size:46px;

        letter-spacing:-.055em;
    }

    .hero p{
        font-size:14px;
    }

    .btns{
        margin-top:26px;
    }

    .btn{
        width:100%;
    }

    .products{
        grid-template-columns:1fr;

        gap:16px;
    }

    .product-img{
        height:230px;
    }

    .service{
        min-height:auto;

        padding:27px;
    }

    .feature-band{
        padding:31px 25px;

        border-radius:24px;
    }

    .feature-band h2{
        font-size:32px;
    }

    .form-card{
        padding:25px 20px;

        border-radius:19px;
    }

    .form-card::before{
        left:20px;
        right:20px;
    }

    .form-grid{
        grid-template-columns:1fr;

        gap:15px;
    }

    .field.full{
        grid-column:auto;
    }

    .contact{
        gap:15px;
    }

    .contact-card{
        padding:25px;
    }

    .footer{
        padding-top:52px;
    }

    .footer-grid{
        grid-template-columns:1fr;

        gap:30px;
    }

    .copyright{
        margin-top:35px;
    }

    .chatbox{
        right:12px;
        bottom:88px;

        width:
            calc(100vw - 24px);
    }

    .chat-btn{
        right:15px;
        bottom:15px;

        width:56px;
        height:56px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion:reduce){

    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        animation-duration:.01ms!important;
        animation-iteration-count:1!important;
        transition-duration:.01ms!important;
    }
}