@font-face {
  font-family: 'LynkcoType-Bold';
  src: url('../fonts/LynkcoType-Bold.woff2') format('woff2'),
       url('../fonts/LynkcoType-Bold.woff2') format('woff');
}
@font-face {
  font-family: 'LynkcoType-Regular';
  src: url('../fonts/LynkcoType-Regular.woff2') format('woff2'),
       url('../fonts/LynkcoType-Regular.woff2') format('woff');

}
:focus-visible {
    outline:unset !important;
}
input:-internal-autofill-selected {
    background: unset !important;
}
.font-lynkco-bold {
    font-family: 'LynkcoType-Bold';
}
.font-lynkco-regular {
    font-family: 'LynkcoType-Regular';
}
.c-sticky-button {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 3000;
}
.c-sticky-button .back-to-top {
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: #fff;
    justify-content: center;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.c-sticky-button .back-to-top span.icon {
    display: block;
    margin-bottom: 2px;
}
.c-sticky-button .back-to-top svg {
    width: 20px;
}
* { box-sizing: border-box; }
body { background: #0a0a0a; }

/* Pink/red left border accent on hero title */
.hero-title-border {
    border-left: 15px solid #DC1860;
    padding-left: 16px;
}
#child-section-hero {
    height: 70vh;
    min-height: 660px;
}
#hero_background {
    background-image: url('../../images/hero-img.webp');
    background-position: bottom;
    background-size: 100%;
    background-repeat: no-repeat;
}
#electrification {
    background-image: url('../../images/electrification.webp');
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
#sound {
    background-image: url('../../images/sound.webp');
    background-position: bottom;
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
#pricing {
    background-image: url('../../images/pricing.webp');
    background-position: bottom;
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.reason-highlight {
    font-weight: 700;
    color: #ffffff;
}
#button-discover {
    margin-top: -30px;
}
.price-starting {
  top: 80px;  
  clip-path: polygon(
    0 0,
    calc(100% - 30px) 0,
    100% 30px,
    100% 100%,
    0 100%
  );
}
/* Subtle section divider */
.section-divider {
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Nav link hover underline */
nav a {
    position: relative;
    text-decoration: none;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: #4ade80;
    transition: width 0.25s ease;
}
nav a:hover::after { width: 100%; }

/* Scroll fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero overlay gradient */
.hero-overlay {
    background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.0) 40%,
    rgba(0,0,0,0.7) 100%,
    rgba(0,0,0,0.95) 100%
    );
}

/* Green CTA button */
.cta-btn {
    border: 2px solid #4ade80;
    color: #4ade80;
    transition: background 0.2s ease, color 0.2s ease;
}
.cta-btn:hover {
    background: #4ade80;
    color: #000;
}

/* Section image zoom on hover */
.img-zoom {
    overflow: hidden;
}
.img-zoom img {
    transition: transform 0.6s ease;
}
.img-zoom:hover img {
    transform: scale(1.04);
}

/* Price badge */
.price-badge {
    background: rgba(0,0,0,0.85);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
}

/* Discover circle button */
.discover-circle {
    width: 44px; height: 44px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
}
.discover-circle:hover {
    border-color: #4ade80;
    background: rgba(74,222,128,0.1);
}

/* Social icon circle */
.social-icon {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}
.social-icon:hover {
    border-color: #4ade80;
    background: rgba(74,222,128,0.1);
}

/* Electrification section dark bg with faint car silhouette */
.electrification-bg {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #111 100%);
    position: relative;
    overflow: hidden;
}
.electrification-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(74,222,128,0.04) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 740px) {
    #section-hero{
        height: 760px;
        min-height: 760px;
    }
    #child-section-hero {
        min-height: 760px !important;
    }
    #hero_background {
        background-size: cover !important;   
    }
    body #sound,
    body #electrification,
    body #pricing {
        background-position: center !important;
        background-size: cover !important;
    }
    #content_hero {
        bottom: 0 !important;
    }
    .price-starting{
        top: 25px !important;
    }
    #button-discover svg {
        height: 40px !important;
        width: 40px !important;
    }
}