* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #191512;
    color: white;
    font-family: sans-serif;
    cursor: default;
}

/* ===== NAVBAR ===== */
.top-bar-menu {
    width: 85%;
    max-width: 1300px;
    height: 60px;
    background-color: #151210;
    border: 1px solid #3f3630;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    padding: 0 16px;
}

.menu {
    width: 140px;
    flex-shrink: 0;
}

.menu img {
    width: 80px;
    height: auto;
    margin: 0 10px;
}

#nav-top {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nevbar-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    color: white;
}

.dropdown {
    min-width: 8em;
    position: relative;
}

.dropdown * {
    box-sizing: border-box;
}

.select {
    background: #151210;
    color: rgb(252, 254, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.5em;
    padding: 0.6em 1em;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 14px;
}

.select:hover {
    background: #3f3630;
}

.select-clicked {
    border: 2px #3f3630 solid;
    box-shadow: 0 0 0.8em #191512;
}

.caret {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    transition: 0.3s;
    margin-left: 6px;
}

.caret-rotate {
    transform: rotate(180deg);
}

.menu1 {
    list-style: none;
    padding: 0.2em 0.5em;
    background: #191512;
    border: 1px #3f3630 solid;
    box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.4);
    border-radius: 0.5em;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    width: 180px;
    transform: translateX(-50%);
    opacity: 0;
    display: none;
    transition: 0.2s;
    z-index: 999;
}

.menu1 li {
    padding: 0.7em 0.5em;
    margin: 0.3em 0;
    border-radius: 0.5em;
    cursor: pointer;
}

.menu1 li:hover {
    background: #3f3630;
}

.active {
    background: #2a2219;
}

.menu1.menu1-open {
    display: block;
    opacity: 1;
}

/* Bell */
.nevbar-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bell {
    width: 44px;
    height: 38px;
    background: linear-gradient(rgb(6, 5, 5) 0%, rgba(29, 21, 21, 0.295) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 2px solid #3f3630;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.bell:hover {
    transform: scale(1.1);
    border-color: #F56629;
    box-shadow: 0 0 12px rgba(245,102,41,0.3);
}

.bell img {
    width: 18px;
    filter: brightness(150%);
    animation: bellIdle 2.5s ease-in-out infinite;
    transform-origin: top center;
}

/* Gentle idle swing for bell */
@keyframes bellIdle {
    0%   { transform: rotate(0deg); }
    10%  { transform: rotate(8deg); }
    20%  { transform: rotate(-7deg); }
    30%  { transform: rotate(5deg); }
    40%  { transform: rotate(-4deg); }
    50%  { transform: rotate(2deg); }
    60%  { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* Install Apps button */
.for-install {
    width: 180px;
}

.for-select {
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 2px solid #3f3630;
    background: linear-gradient(rgb(6, 5, 5) 0%, rgba(29, 21, 21, 0.295) 100%);
    cursor: pointer;
    padding: 0 12px;
    font-size: 13px;
}

.for-select:hover {
    border-color: rgba(245,102,41,0.5);
    background: linear-gradient(rgb(20, 14, 12) 0%, rgba(50, 30, 20, 0.4) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.for-selected {
    display: flex;
    align-items: center;
    gap: 4px;
}

svg {
    width: 18px;
    flex-shrink: 0;
}

.for-caret {
    margin-left: 8px;
}

/* Launch button */
.launch-dropdown {
    position: relative;
}

.for-launch {
    width: 110px;
    height: 38px;
    background-color: #F56629;
    border-radius: 8px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.for-launch:hover {
    opacity: 0.9;
}

/* ===== HERO SECTION ===== */
.container {
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Brand badge */
.w {
    width: 150px;
    background-color: #151210;
    border-radius: 8px;
    border: 2px solid #3f3630;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38px;
    gap: 6px;
    margin-bottom: 24px;
}

.w img {
    width: 22px;
}

.in {
    width: 20px;
}

.s {
    width: 22px;
}

/* Hero text */
.web {
    text-align: center;
    margin-bottom: 32px;
}

.flow {
    font-size: clamp(40px, 7vw, 90px);
    color: white;
}

.con {
    font-size: clamp(60px, 13vw, 180px);
    color: #F56629;
    line-height: 0.9;
}

.web p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-top: 16px;
}

/* CTA buttons */
.get-select {
    width: 180px;
    height: 44px;
    background-color: #151210;
    border: 2px solid #3f3630;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 12px;
}

.get-selected {
    color: white;
    font-weight: 500;
}

.launch-dropdown1 {
    position: relative;
}

.for-launch1 {
    width: 160px;
    height: 44px;
    background-color: #F56629;
    border-radius: 8px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: white;
}

/* ===== VIDEO SECTION ===== */
.vidieo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 60px;
    padding: 0 20px;
}

.border {
    width: 95%;
    max-width: 1300px;
}

.vid {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background-color: #151210;
    border: 1px solid #3f3630;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.auto-video {
    width: 100%;
    border-radius: 12px;
}

/* ===== NEW SECTION ===== */
.new {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 80px;
    text-align: center;
    padding: 0 20px;
}

.box {
    background-color: #151210;
    border: 1px solid #3f3630;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 6px 18px;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    margin-bottom: 16px;
}

.design {
    font-size: clamp(28px, 4vw, 48px);
    color: #FBF4DB;
    margin-bottom: 12px;
}

.new p {
    font-size: 18px;
    color: rgba(251, 244, 219, 0.8);
}

/* ===== MAIN GRID ===== */
.main-grid {
    width: 100%;
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

/* Col 1 */
.content {
    border-radius: 16px;
    overflow: hidden;
}

.image {
    width: 100%;
    background-color: #151210;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    border-radius: 16px 16px 0 0;
}

.server img {
    width: 85%;
}

.server1 {
    background-color: #151210;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
    border-radius: 0 0 16px 16px;
}

.server1 h4 {
    font-size: 20px;
    color: #FBF4DB;
    margin-bottom: 8px;
}

.server1 p {
    font-size: 16px;
    color: rgba(251, 244, 219, 0.75);
    line-height: 1.6;
}

.text {
    position: static;
}

.server2 {
    background-color: #FBF4DB;
    margin-top: 16px;
    padding: 28px;
    border-radius: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.server2 svg {
    width: 36px;
    position: static;
    color: black;
    margin-bottom: 12px;
}

.hq {
    display: flex;
    flex-direction: column;
}

.hq h3 {
    font-size: 20px;
    color: black;
    margin-bottom: 8px;
}

.hq p {
    font-size: 16px;
    color: #222;
    line-height: 1.6;
}

/* Col 2 */
.content1 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stay {
    width: 100%;
    background-color: #151210;
    border-radius: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 4px;
}

.stay1 {
    background-color: #F56629;
}

.stay2 {
    background-color: #0d0b09;
    border: 1px solid #3f3630;
}

.st {
    padding: 24px;
    width: 100%;
}

.st img {
    width: 40px;
    margin-bottom: 12px;
}

.st h2 {
    font-size: 20px;
    color: #FBF4DB;
    margin-bottom: 8px;
}

.st p {
    font-size: 15px;
    color: rgba(251, 244, 219, 0.8);
    line-height: 1.6;
}

/* Col 3 */
.product {
    background-color: #FEFFFE;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.se {
    background-color: #FEFFFE;
    border-radius: 16px 16px 0 0;
}

.im {
    background-color: #FEFFFE;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    aspect-ratio: 1;
}

.im video {
    width: 100%;
    object-fit: cover;
    position: static;
}

.ser {
    background-color: #FEFFFE;
    padding: 24px;
    border-radius: 0 0 16px 16px;
}

.te h4 {
    font-size: 20px;
    color: #111;
    margin-bottom: 8px;
}

.te p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.6;
}

.product1 {
    width: 100%;
    margin-top: 16px;
    border-radius: 16px;
    background-color: #151210;
    padding: 32px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    min-height: 280px;
}

.product1 svg {
    width: 36px;
    color: white;
    margin-bottom: 16px;
}

.product1 h2 {
    font-size: 20px;
    color: #FBF4DB;
    margin-bottom: 8px;
}

.product1 p {
    font-size: 15px;
    color: rgba(251, 244, 219, 0.75);
    line-height: 1.6;
}

/* ===== FEATURE ROWS (Build smootify store, etc.) ===== */
.feature-section {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.feature-label {
    display: inline-flex;
    align-items: center;
    background-color: #151210;
    border: 1px solid #3f3630;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.feature-section h2 {
    font-size: clamp(24px, 3vw, 40px);
    color: #FBF4DB;
    margin-bottom: 12px;
}

.feature-section > p {
    font-size: 17px;
    color: rgba(251, 244, 219, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.feature-card {
    background-color: #151210;
    border: 1px solid #3f3630;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
}

.feature-card:hover {
    border-color: #F56629;
}

.feature-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #0d0b09;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card-img img,
.feature-card-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card-body {
    padding: 16px;
}

.feature-card-body h4 {
    font-size: 16px;
    color: #FBF4DB;
    margin-bottom: 6px;
}

.feature-card-body p {
    font-size: 14px;
    color: rgba(251, 244, 219, 0.6);
    line-height: 1.5;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.faq-section h2 {
    font-size: clamp(24px, 3vw, 40px);
    color: #FBF4DB;
    margin-bottom: 8px;
    text-align: center;
}

.faq-section > p {
    font-size: 17px;
    color: rgba(251,244,219,0.7);
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    border-top: 1px solid #3f3630;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item:last-child {
    border-bottom: 1px solid #3f3630;
}

.faq-item h4 {
    font-size: 17px;
    color: #FBF4DB;
    font-weight: 500;
}

.faq-plus {
    font-size: 22px;
    color: #F56629;
    flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 80px;
    padding: 0 20px;
    text-align: center;
}

.testimonials-section h2 {
    font-size: clamp(24px, 3vw, 40px);
    color: #FBF4DB;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background-color: #151210;
    border: 1px solid #3f3630;
    border-radius: 16px;
    padding: 24px;
    text-align: left;
}

.testimonial-card p {
    font-size: 15px;
    color: rgba(251, 244, 219, 0.75);
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #3f3630;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    color: #F56629;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: #FBF4DB;
}

.testimonial-role {
    font-size: 13px;
    color: rgba(251,244,219,0.5);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.cta-inner {
    background: linear-gradient(135deg, #1a1310 0%, #2a1a0e 100%);
    border: 1px solid #3f3630;
    border-radius: 20px;
    padding: 60px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-inner h2 {
    font-size: clamp(24px, 3vw, 42px);
    color: #FBF4DB;
    margin-bottom: 8px;
}

.cta-inner p {
    font-size: 17px;
    color: rgba(251,244,219,0.65);
}

.cta-btn {
    background-color: #F56629;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 40px;
    transition: opacity 0.2s;
}

.cta-btn:hover {
    opacity: 0.88;
}

/* ===== FOOTER ===== */
.footer {
    width: 100%;
    background-color: #0d0b09;
    border-top: 1px solid #3f3630;
    padding: 60px 20px 30px;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-top: 12px;
    max-width: 240px;
}

.footer-col h5 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #F56629;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #3f3630;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

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

/* Scroll fade-up */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar scrolled effect */
.navbar-scrolled {
    background-color: rgba(21, 18, 16, 0.92) !important;
    backdrop-filter: blur(12px);
    border-color: rgba(63, 54, 48, 0.6) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

/* Feature card hover lift */
.feature-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    border-color: #F56629;
}

/* Grid stay cards hover */
.stay {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stay:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

/* Testimonial card hover */
.testimonial-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 102, 41, 0.5);
}

/* FAQ item open state */
.faq-item {
    transition: padding 0.3s ease;
}
.faq-item.faq-open {
    padding-bottom: 4px;
}
.faq-item.faq-open h4 {
    color: #F56629;
}
.faq-plus {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}
.faq-item.faq-open .faq-plus {
    color: #F56629;
}

/* CTA button pulse */
.cta-btn {
    transition: opacity 0.2s, transform 0.2s, background 0.3s;
    position: relative;
    overflow: hidden;
}
.cta-btn:hover {
    transform: scale(1.04);
}
.cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity 0.2s;
}
.cta-btn:hover::after {
    opacity: 1;
}

/* Orange buttons hover */
.for-launch, .for-launch1 {
    transition: background 0.3s, transform 0.2s, opacity 0.2s;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.for-launch:hover, .for-launch1:hover {
    opacity: 0.88;
    transform: scale(1.03);
}

/* Get started button hover */
.get-select {
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}
.get-select:hover {
    border-color: #F56629;
    background-color: rgba(245,102,41,0.08);
    transform: translateY(-2px);
}

/* Server2 (HQ Templates) hover */
.server2 {
    transition: transform 0.3s ease;
}
.server2:hover {
    transform: translateY(-3px);
}

/* Product1 card hover */
.product1 {
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}
.product1:hover {
    transform: translateY(-5px);
    border-color: #3f3630;
}

/* Nav links hover underline effect */
.select .selected {
    position: relative;
}
.nevbar-menu > .dropdown:not(.for-install):not(.launch-dropdown) .select .selected::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #F56629;
    transition: width 0.25s ease;
}
.nevbar-menu > .dropdown:not(.for-install):not(.launch-dropdown) .select:hover .selected::after {
    width: 100%;
}

/* Feature label bounce in */
.feature-label {
    transition: transform 0.3s ease;
}
.feature-label:hover {
    transform: scale(1.04);
}

/* Image hover zoom in card */
.feature-card-img img,
.feature-card-img video {
    transition: transform 0.4s ease;
}
.feature-card:hover .feature-card-img img,
.feature-card:hover .feature-card-img video {
    transform: scale(1.04);
}

/* Footer links hover */
.footer-col ul li a {
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-col ul li a:hover {
    color: #F56629;
    padding-left: 4px;
}

/* Bell — faster ring on hover */
.bell:hover img {
    animation: bellIdle 0.5s ease-in-out infinite;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
