:root {
    --primary: #0b5ed7;
    --secondary: #78b833;
    --dark: #222;
    --light: #f4f7f6;
}
html {
  scroll-behavior: smooth;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
/* body { background: #fff; color: #333; overflow-x: hidden; } */
body {
    background: #0b0f14;
    color: #e0e0e0;
}
.container {    max-width: 1197px;margin: 0 auto; padding: 0 20px; }

/* HEADER */
header { padding: 15px 0; border-bottom: 1px solid #eee; background: #161b22; sticky: top; }
.nav-bar { display: flex; justify-content: space-between; align-items: center; }
.logo-flex { display: flex; align-items: center; gap: 8px; }
.logo-icon { color: var(--primary); font-size: 30px; }
.logo-text img { width: 150px; height: auto; }
.desktop-nav a { margin: 0 10px; font-size: 13px; color: #ccc; text-decoration: none; font-weight: 500; }
.header-call-btn { background: var(--primary); color: white; display: flex; align-items: center; gap: 10px; padding: 8px 15px; border-radius: 50px; text-decoration: none; }

/* HERO */
.hero { padding: 50px 0; background: linear-gradient(to right, #0b0f14, #111827);
 }
.hero-flex { display: flex; align-items: center; justify-content: space-between; }
.hero-left { flex: 1; }
.save-label {     font-size: 33px;
    color: #fff;
}
.main-title {     font-size: 100px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 20px;
    display: flex;
  }
.main-title span { font-size: 35px; color: var(--dark);     margin-top: 19px; }
.hero-sub { font-size: 18px; margin-bottom: 25px; line-height: 1.5;}
.hero-sub strong{     font-size: 26px;
    margin-bottom: 25px;
    color: var(--primary);}

.hero-features { display: flex; gap: 15px; margin-bottom: 25px; font-size: 11px; font-weight: 700; color: #666; }
.hero-features strong {     color: #fff;

    font-size: 13px;
}
.hero-features i {     color: var(--secondary);
    margin-right: 4px;
    margin-top: 0px;
    font-size: 25px;
}
.hero-features span { display: flex;}

.btn-blue { background: var(--primary); color: white; border: none; padding: 15px 25px; border-radius: 5px; font-weight: 700; cursor: pointer;   
      /* smooth feel */
  transition: all 0.3s ease;

  /* subtle glow animation */
  animation: glowPulse 2.5s infinite;
animation: testGlow 1s infinite !important;

 }

@keyframes glowPulse {  0% { box-shadow: 0 0 0 rgba(0,123,255,0.4); }  50% { box-shadow: 0 0 18px rgba(0,123,255,0.4); }  100% { box-shadow: 0 0 0 rgba(0,123,255,0); }}/* Shine FIXED */button.btn-blue::before {  content: '';  position: absolute;  top: 0;  left: -100%;  width: 60%;  height: 100%;    background: linear-gradient(    120deg,    transparent,    rgba(255,255,255,0.5),    transparent  );  transform: skewX(-20deg);  /* 🔑 IMPORTANT FIXES */  pointer-events: none;   /* prevents blocking */  z-index: 0;             /* stays behind text */}/* animate only transform (not left) */button.btn-blue:hover::before {  animation: shineMove 1s ease;}@keyframes shineMove {  0% { transform: translateX(-150%) skewX(-20deg); }  100% { transform: translateX(250%) skewX(-20deg); }}


@keyframes testGlow {
  0% { box-shadow: 0 0 0px var(--primary); }
  50% { box-shadow: 0 0 25px var(--primary); }
  100% { box-shadow: 0 0 0px var(--primary); }
}

/* 💎 Shine effect
.btn-blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transform: skewX(-20deg);
  animation: shine 4s infinite;
} */

@keyframes shine {
  0% { left: -80%; }
  60% { left: 120%; }
  100% { left: 120%; }
}

/* 🚀 Hover interaction */
/* .btn-blue:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
} */

.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; padding: 13px 25px; border-radius: 5px; font-weight: 700; margin-left: 10px; }
.hero-right { flex: 0.8; position: relative; text-align: right; }
.hero-right img {     width: 100%;
    border-radius: 10px;
    height: 442px;}
.green-badge {         position: absolute;
    bottom: -36px;
    right: -34px;
    background: var(--secondary);
    color: white;
    padding: 20px;
    border-radius: 50%;
    border: 4px solid white;
    border-style: dotted;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    height: 135px;
    padding-top: 29px; }
.green-badge strong { font-size: 35px; }

/* WHY ICONS */
.section-heading { text-align: center; margin: 40px 0; font-size: 24px; }
.section-heading span { color: var(--primary); }
.icon-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; text-align: center; }
.icon-item i {font-size: 53px;
    color: var(--primary);
    margin-bottom: 17px;
    margin-top: 39px; }
.icon-item p {     font-size: 15px;
    font-weight: 800;
    padding: 13px 23px; }

/* MIDDLE CONTENT */
.middle-content { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; margin-top: 50px; }
.why-smart-box {     background: #002d72;
    color: white;
    padding: 16px;
    border-radius: 10px 10px 0 0;
    display: flex;
    padding-top: 30px;
    padding-bottom: 30px;}
.why-smart-box h2 span { font-size: 20px; }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 10px; font-size: 14px; }
.check-list i { color: var(--secondary); margin-right: 8px; }
.tech-img { width: 100%; height: 250px; object-fit: cover; border-radius: 0 0 10px 10px; }

.how-it-works { margin-top: 30px; display: flex; gap: 30px;}
.how-it-works h3{ font-size: 25px; }
.how-it-works p{max-width: 300px; margin-top: 20px; }
.how-it-works img{    min-width: 308px;
    max-height: 166px;}



.how-it-works span{    
    color: var(--primary);
    
    margin-bottom: 10px;
}

.diagram-box { display: flex; align-items: center; justify-content: space-around; background: #161b22; padding: 20px; border-radius: 10px; margin-top: 15px; border: 1px solid #2a2f36; }
.diag-item { text-align: center; font-size: 12px; font-weight: 700; }
.diag-unit i { font-size: 40px; color: #bbb; }
/* ================= FORM CARD (STANDOUT STYLE) ================= */
.form-card {
    background: rgba(255, 255, 255, 0.04); /* 👈 lighter than page */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #fff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    position: relative;

    /* 💥 this creates separation */
    border: 1px solid rgba(255,255,255,0.1);

    /* 🔥 glow ring */
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 20px 50px rgba(0,0,0,0.7),
        0 0 40px rgba(77,171,255,0.15);
}

/* ✨ animated border glow (subtle but premium) */
.form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
pointer-events: none;
    background: linear-gradient(120deg, 
        transparent,
        rgba(77,171,255,0.5),
        transparent
    );

    -webkit-mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0.6;
}

/* ================= TEXT ================= */
.form-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: bold;
}

.form-card p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #cbd5e1;
}

/* ================= INPUT ================= */
.f-input {
    background: rgba(0,0,0,0.4); /* 👈 glass input */
    margin-bottom: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 12px 15px;

    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

/* ICON */
.f-input i {
    color: #94a3b8;
    margin-right: 10px;
}

/* INPUT */
.f-input input,
.f-input select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #fff;
    background: transparent;
}
.f-input select option {
    background: #111827;
    color: #fff;
}

/* 🔥 focus = highlight */
.f-input:focus-within {
    border-color: #4dabff;
    box-shadow: 0 0 20px rgba(77,171,255,0.4);
}

/* ================= BUTTON ================= */
.btn-green {
    background: linear-gradient(135deg, #78b833, #22c55e);
    color: white;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;

    /* 💥 neon glow */
    box-shadow: 0 0 25px rgba(34,197,94,0.4);
}

.btn-green:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(34,197,94,0.7);
}

/* ================= FOOTER ================= */
.form-footer {
    background: rgba(0,0,0,0.5);
    margin: 20px -30px -30px -30px;
    padding: 15px;
    border-radius: 0 0 18px 18px;

    display: flex;
    justify-content: center;
    gap: 10px;

    border-top: 1px solid rgba(255,255,255,0.08);
}

.form-footer strong {
    color: #e2e8f0;
}
/* APPS & BENEFITS */
.apps{
    margin-top: 50px;
}
.apps h3{color: var(--primary); font-size: 30px; padding-bottom: 10px;}
.app-benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.app-icons { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; margin-top: 15px; }
.app-box { text-align: center; border: 1px solid #2a2f36; padding: 15px; border-radius: 5px; }
.app-box i { font-size: 50px; color: var(--primary); display: block; margin-bottom: 5px; }
.app-box span {    font-size: 14px; font-weight: 700; }

.benefit-card {
    display: flex;
    background: #161b22; /* Very light blue tint from your image */
    border-radius: 20px;
    overflow: hidden; /* Clips the image to the card radius */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 600px;
    position: relative;
    border: 1px solid #e1eefb;
}

.benefit-content {
    padding: 25px;
    flex: 1;
    z-index: 2;
        padding-bottom: 0px;
}

.benefit-title {
    color: var(--primary);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.ben-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ben-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    gap: 15px;
}

.ben-list li img {
    width: 35px; /* Size of the icons */
    height: 35px;
    object-fit: contain;
}

.ben-list li span {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    color: #ddd;
}

.benefit-image {
    flex: 1;
    position: relative;
}

.shower-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* This creates the soft fade effect between text and image */
.benefit-image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    /* background: linear-gradient(to right, #f4faff, transparent); */
    background: linear-gradient(to right, #161b22, transparent);
    z-index: 1;
}

/* TESTIMONIALS & OFFER */
.testimonial-offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 50px auto; }
.test-cards{
    display: flex;
}
.test-card { background: #161b22; padding: 20px; border-radius: 10px; border-left: 4px solid var(--secondary); }
.stars { color: #ffc107; margin-bottom: 10px; }
.offer-box { background: #002d72; color: white; padding: 30px; border-radius: 15px; position: relative; overflow: hidden; }
.offer-box h2 { font-size: 24px; margin-bottom: 15px; margin-top: 20px; }
.limited { background: red; padding: 4px 10px; font-size: 10px; font-weight: 800; border-radius: 3px; }
.gift-icon {     position: absolute;
    right: 36px;
    top: 16px;
    font-size: 97px;
    opacity: 1;
    color: red;
    background: yellow;
    border-radius: 50%;
    padding: 17px;
     }

/* FOOTER */
footer {
    font-family: 'Arial', sans-serif;
}

.footer-top {
    background: var(--primary);
    color: white;
    padding: 30px 0;
}

.footer-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Contact Styling */
.footer-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}
.footer-contact a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
.whatsapp-icon{
    padding-right: 10px;
}
.testimonials h3{
    padding-bottom: 20px;
    padding-top: 20px;

}
.test-card{
    margin-right: 10px;
}
.test-card small{
    /* margin-right: 10px; */
    color: #c4bf8d !important;
    font-weight: bold;
}
.icon-circle {
    background: #161b22;
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-right: 10px;
}

.whatsapp-icon {
    color: #fff;
    font-size: 50px; /* Large WhatsApp icon style */
}

.contact-text span {
    display: block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.highlight-green {
    color: var(--secondary);
    font-size: 22px;
    display: block;
    margin-top: 5px;
}

.footer-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

/* Brand Section */
/* FIX LOGO AREA */
.footer-brand-area {
    text-align: center;
}

/* Align logo properly */
.brand-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Fix logo size + remove awkward box feel */
.footer-logo {
    width: 120px;
    height: auto;
    background: #161b22; /* ❌ remove white box */
    padding: 10px !important;
    border-radius: 15px !important;
    border-radius: 0;        /* ❌ remove round shape */
    padding: 0;              /* ❌ remove extra spacing */
}

/* Tagline styling */
.brand-tagline {
    font-size: 12px;
    margin-top: 6px;
    opacity: 0.8;
    text-align: center;
}

.brand-main {
    font-size: 28px;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.brand-sub {
    font-size: 12px;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 11px;
    margin-top: 5px;
    font-style: italic;
    opacity: 0.8;
}

/* Bottom White Section */
.footer-bottom {
    background: #0b0f14;
    border-top: 1px solid #222;
    padding: 20px 0;
}

.bottom-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-align: left;
}

.feature-item i {
    font-size: 28px;
}

.feature-item span {
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.feature-divider {
    width: 1px;
    height: 30px;
    background: #ddd;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin: 0;
    border-top: 1px solid #eee;
    padding-top: 15px;
}


.sticky-bottom-bar {
    display: none;
}
.whatsapp-float {
    position: fixed;
    bottom: 14px;
    right: 15px;
    background: #25D366;
    color: white;
    font-size: 38px;
    padding: 6px 10px;
    border-radius: 50%;
    z-index: 9999;
}
#topBtn {    position: fixed;
    bottom: 83px;
    right: 18px;
    display: none;
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 17px;
    border-radius: 50%;
    font-size: 16px;
    z-index: 9999;
    cursor: pointer;
}
.dev-credit {
    text-align: center;
    font-size: 11px;
    margin-top: 8px;
    opacity: 0.5; /* 👈 makes it watermark-like */
    letter-spacing: 0.5px;
}

.dev-credit a {
    color: #999; /* light grey */
    text-decoration: none;
    transition: 0.3s;
}

.dev-credit a:hover {
    opacity: 1;
    color: var(--primary); /* slight highlight on hover */
}
@media (max-width: 768px) {

    .container {
        padding: 0 15px;
    }

    /* HEADER */
    .desktop-nav {
        display: none;
    }

    .header-call-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    /* HERO */
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
        margin-bottom: 20px;
    }

    .hero-right img {
        height: auto;
    }

    .save-label {
        font-size: 20px;
    }

    .main-title {
        font-size: 55px;
        justify-content: center;
    }

    .main-title span {
        font-size: 18px;
        margin-top: 10px;
    }

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

    .hero-sub strong {
        font-size: 18px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-blue,
    .btn-outline {
        width: 100%;
        margin: 5px 0;
    }

    .green-badge {
        right: 10px;
        bottom: -20px;
        height: 90px;
        font-size: 10px;
        padding-top: 18px;
    }

    .green-badge strong {
        font-size: 20px;
    }

    /* ICON ROW */
    .icon-row {
        grid-template-columns: 1fr 1fr;
    }

    /* MIDDLE CONTENT */
    .middle-content {
        grid-template-columns: 1fr;
    }

    .why-smart-box {
        flex-direction: column;
    }

    .how-it-works {
        flex-direction: column;
    }

    .how-it-works img {
        width: 100%;
        min-width: auto;
    }

    /* FORM */
    .form-card {
        padding: 20px;
    }

    .form-footer {
        flex-direction: column;
        text-align: center;
    }

    /* APPS */
    .app-icons {
        grid-template-columns: 1fr 1fr;
    }

    .app-benefits-grid {
        grid-template-columns: 1fr;
    }

    /* BENEFITS */
    .benefit-card {
        flex-direction: column;
    }

    .benefit-image::before {
        display: none;
    }

    /* TESTIMONIAL + OFFER */
    .testimonial-offer-grid {
        grid-template-columns: 1fr;
    }

    .test-cards {
        flex-direction: column;
        gap: 15px;
    }

    /* FOOTER */
    .footer-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-divider {
        display: none;
    }

    .bottom-features {
        flex-wrap: wrap;
        gap: 15px;
    }

    .feature-divider {
        display: none;
    }
    .gift-icon {
    position: static;        /* remove absolute positioning */
    display: block;
    margin: 15px auto 0;     /* center it */
    font-size: 50px;         /* smaller size */
    padding: 10px;
    width: fit-content;
    border-radius: 12px;     /* less aggressive than circle */
}
  .app-icons  {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* 👈 centers last item */
        gap: 15px;
    }

    .app-box {
        width: 45%; /* 2 per row */
    }

    .hero-features {
        display: flex;
        flex-direction: row;   /* 👈 keep in row */
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;     /* 👈 prevent breaking */
        gap: 5px;
    }

    .hero-features span {
        flex: 1;
        justify-content: center;
        text-align: center;
    }

    .hero-features i {
        font-size: 18px;
    }

    .hero-features strong {
        font-size: 11px;
    }

    .hero-features p {
        font-size: 10px;
        line-height: 1.2;
    }



.section-heading,
.apps h3,
.how-it-works h3,
.benefit-title {
    text-align: center;
}

/* ✅ Center "How it works" section properly */
.how-it-works {
    text-align: center;
    align-items: center;
}

.how-it-works p {
    max-width: 100%;
}

/* ✅ Center "Applications" heading + content */
.apps {
    text-align: center;
}

/* ✅ Fix last benefit card (Why Choose...) */


.benefit-content {
    text-align: center;
}

.icon-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 👈 this centers last item */
    gap: 15px;
}

.icon-item {
    width: 45%; /* 2 per row */
}
 .sticky-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }

    .sticky-btn {
         flex: 1;
        text-align: center;
               padding: 20px;
        font-size: 20px;
        font-weight: 700;
        color: white;
        text-decoration: none;
    
    }

    .call-btn {
        background: #28a745;
    }

    .book-btn {
        background: var(--primary);
    }

    body {
        padding-bottom: 60px; /* prevent overlap */
    }
    /* Remove forced line breaks only on mobile */
.ben-list li span br {
    display: none;
}

/* Improve layout so text uses full width */
/* Keep heading center */
.benefit-title {
    text-align: center;
}

/* But force list to be left aligned */
.ben-list {
    text-align: left;
    width: 100%;
}

.ben-list li {
    justify-content: flex-start; /* 👈 align items left */
    text-align: left;
}
    .footer-logo {
        width: 100px; /* slightly smaller */
    }

    .brand-tagline {
        font-size: 11px;
    }

    .whatsapp-float {
position: fixed;
    bottom: 80px;
    right: 15px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    z-index: 9999;


    font-size: 38px;
    padding: 6px 10px;
}
#topBtn {
        position: fixed;
    bottom: 150px;
    right: 18px;
    display: none;
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 17px;
    border-radius: 50%;
    z-index: 9999;
    cursor: pointer;
    font-size: 16px;
}

}

/* ================= DARK MODE OVERRIDE ================= */

body {
    background: radial-gradient(circle at top, #111, #000);
    color: #e0e0e0;
}

/* HEADER */
header {
    background: #111 !important;
    border-bottom: 1px solid #222 !important;
}

.desktop-nav a {
    color: #ccc !important;
}

/* HERO */
/* .hero {
    background: linear-gradient(to right, #0d0d0d, #111827) !important;
} */
 .hero {
    background: linear-gradient(to right, #0b0f14, #111827);
}

.save-label {
    color: #fff !important;
}

.main-title span {
    color: #ccc !important;
}

.hero-sub {
    color: #bbb !important;
}

.hero-features {
    color: #aaa !important;
}

.hero-features strong {
    color: #fff !important;
}

/* ICONS */
.icon-item p {
    color: #ddd !important;
}

/* CARDS / BOXES */
.diagram-box,
.test-card,
.app-box,
.benefit-card {
    background: #1a1a1a !important;
    border: 1px solid #2a2a2a !important;
}

/* WHY BOX */
.why-smart-box {
    background: #111827 !important;
}

/* FORM */
.form-card {
    background: #111827 !important;
}

.f-input {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
}

.f-input input,
.f-input select {
     color: #fff !important;
}

/* BENEFITS */
.ben-list li span {
    color: #ddd !important;
}

/* OFFER */
.offer-box {
    background: #111827 !important;
}

/* FOOTER */
.footer-bottom {
    background: #0d0d0d !important;
    border-top: 1px solid #222 !important;
}

.copyright {
    color: #aaa !important;
    border-top: 1px solid #222 !important;
}

/* DIVIDERS */
.feature-divider,
.footer-divider {
    background: #2a2a2a !important;
}

/* INPUT PLACEHOLDER */
::placeholder {
    color: #888;
}

/* ===== DARK UI IMPROVEMENT ===== */

/* Section contrast */
section:nth-child(even) {
    background: #0f141a;
}
section:nth-child(odd) {
    background: #0b0f14;
}

/* Card depth */
.diagram-box,
.test-card,
.app-box,
.benefit-card,
.form-card {
    background: #161b22 !important;
    border: 1px solid #2a2f36 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Text improvement */
h1, h2, h3 {
    color: #ffffff;
}
p {
    color: #b0b8c1;
}

/* Buttons glow */
.btn-blue {
    box-shadow: 0 0 15px rgba(77,171,255,0.3);
}
.btn-blue:hover {
    box-shadow: 0 0 25px rgba(77,171,255,0.6);
}

/* Section divider */
section {
    border-bottom: 1px solid #1f2933;
}