/* ==========================================================================
   Secure Nest — shared stylesheet
   Used by every page in the site (see /assets/css/style.css reference)
   ========================================================================== */

:root{
  --primary:#3b82f6;
  --secondary:#8b5cf6;
  --dark:#050816;
  --card:#0f172a;
  --text:#cbd5e1;
  --white:#ffffff;
  --border:rgba(255,255,255,.08);
  --gradient:linear-gradient(135deg,#3b82f6,#8b5cf6);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',sans-serif;
  background:var(--dark);
  color:var(--text);
  overflow-x:hidden;
}
a{text-decoration:none;}
img{max-width:100%;}
.section{padding:100px 0;position:relative;}

/* NAVBAR */
.navbar{
  background:rgba(5,8,22,.85);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
  padding:18px 0;
  z-index:999;
}
.navbar-brand{font-weight:700;font-size:26px;color:#fff!important;}
.nav-link{color:#cbd5e1!important;margin-left:18px;font-weight:500;transition:.3s;}
.nav-link:hover,.nav-link.active{color:#fff!important;}
.dropdown-menu{
  background:#0f172a;
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px;
}
.dropdown-menu .dropdown-header{color:#64748b;font-size:12px;text-transform:uppercase;letter-spacing:.05em;}
.dropdown-item{color:#cbd5e1;border-radius:8px;padding:8px 12px;font-size:14px;}
.dropdown-item:hover{background:rgba(59,130,246,.15);color:#fff;}

/* BREADCRUMB */
.breadcrumb-bar{
  padding:130px 0 30px;
  background:radial-gradient(circle at top left,#1d4ed8 0%,transparent 45%),#050816;
}
.breadcrumb-bar .breadcrumb{margin-bottom:10px;}
.breadcrumb-bar .breadcrumb a{color:#93c5fd;}
.breadcrumb-bar .breadcrumb-item.active{color:#94a3b8;}
.breadcrumb-bar h1{color:#fff;font-weight:800;font-size:44px;}
.breadcrumb-bar p{color:var(--text);margin-top:12px;font-size:17px;max-width:760px;}

/* HERO */
.hero{
  min-height:100vh;
  display:flex;align-items:center;
  position:relative;overflow:hidden;
  background:
    radial-gradient(circle at top left,#1d4ed8 0%,transparent 35%),
    radial-gradient(circle at bottom right,#7c3aed 0%,transparent 35%),
    #050816;
}
.hero::before{content:'';position:absolute;width:600px;height:600px;background:rgba(59,130,246,.18);filter:blur(120px);top:-200px;right:-150px;}
.hero::after{content:'';position:absolute;width:500px;height:500px;background:rgba(139,92,246,.16);filter:blur(120px);bottom:-180px;left:-100px;}
.hero-content{position:relative;z-index:2;}
.tag{display:inline-block;padding:10px 18px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.08);border-radius:50px;font-size:14px;margin-bottom:25px;backdrop-filter:blur(10px);}
.hero h1{font-size:64px;font-weight:800;line-height:1.1;color:#fff;}
.hero h1 span{background:var(--gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.hero p{font-size:20px;line-height:1.8;margin-top:25px;max-width:700px;}
.hero-btns{margin-top:40px;display:flex;gap:20px;flex-wrap:wrap;}

.btn-main{padding:16px 34px;background:var(--gradient);border:none;border-radius:14px;font-weight:600;color:#fff;transition:.3s;box-shadow:0 15px 35px rgba(59,130,246,.35);display:inline-block;}
.btn-main:hover{transform:translateY(-4px);color:#fff;}
.btn-outline-custom{padding:16px 34px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.04);backdrop-filter:blur(10px);border-radius:14px;font-weight:600;color:#fff;transition:.3s;display:inline-block;}
.btn-outline-custom:hover{background:#fff;color:#000;}
.btn-sm-outline{padding:10px 20px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.04);border-radius:10px;font-weight:600;color:#fff;font-size:14px;display:inline-block;transition:.3s;}
.btn-sm-outline:hover{background:#fff;color:#000;}

/* FLOATING CARD */
.dashboard-card{background:rgba(15,23,42,.75);border:1px solid rgba(255,255,255,.08);backdrop-filter:blur(14px);padding:30px;border-radius:28px;box-shadow:0 20px 60px rgba(0,0,0,.45);position:relative;z-index:2;}
.mini-card{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.06);padding:18px;border-radius:18px;margin-top:18px;}
.mini-card h5{color:#fff;font-size:18px;}
.mini-card p{font-size:14px;margin:0;}

/* STATS */
.stats{margin-top:-60px;position:relative;z-index:3;}
.stat-box{background:rgba(15,23,42,.75);border:1px solid rgba(255,255,255,.06);padding:35px;border-radius:24px;text-align:center;backdrop-filter:blur(10px);transition:.3s;height:100%;}
.stat-box:hover{transform:translateY(-8px);border-color:rgba(59,130,246,.4);}
.stat-box h2{font-size:42px;color:#fff;font-weight:800;}
.stat-box p{margin:0;font-size:15px;}

/* SECTION TITLE */
.section-title{text-align:center;margin-bottom:70px;}
.section-title.text-start{text-align:left;margin-bottom:0;}
.section-title h2{font-size:46px;font-weight:800;color:#fff;}
.section-title p{max-width:700px;margin:auto;margin-top:18px;font-size:18px;}
.section-title.text-start p{margin-left:0;}
.eyebrow{color:#93c5fd;text-transform:uppercase;letter-spacing:.12em;font-size:13px;font-weight:700;margin-bottom:14px;display:block;}

/* FEATURE CARD */
.feature-card{background:rgba(15,23,42,.7);border:1px solid rgba(255,255,255,.08);border-radius:28px;padding:35px;height:100%;transition:.4s;position:relative;overflow:hidden;}
.feature-card:hover{transform:translateY(-10px);border-color:rgba(59,130,246,.5);}
.feature-icon{width:70px;height:70px;display:flex;align-items:center;justify-content:center;border-radius:18px;background:var(--gradient);font-size:28px;color:#fff;margin-bottom:25px;}
.feature-icon.sm{width:52px;height:52px;font-size:20px;border-radius:14px;margin-bottom:16px;}
.feature-card h4{color:#fff;font-size:22px;margin-bottom:12px;}
.feature-card p{font-size:15px;line-height:1.8;}
.feature-card a.card-link{color:#93c5fd;font-size:14px;font-weight:600;}
.feature-card a.card-link i{transition:.3s;}
.feature-card a.card-link:hover i{transform:translateX(4px);}

/* CATEGORY LIST (features hub) */
.cat-block{margin-bottom:60px;}
.cat-block-head{display:flex;align-items:center;gap:16px;margin-bottom:28px;}
.cat-block-head .feature-icon{margin-bottom:0;}
.cat-block-head h3{color:#fff;font-size:26px;font-weight:700;margin:0;}
.cat-block-head p{margin:0;font-size:14px;}
.mini-feature-link{display:block;background:rgba(15,23,42,.6);border:1px solid var(--border);border-radius:14px;padding:16px 18px;color:#e2e8f0;font-size:14.5px;font-weight:500;transition:.25s;height:100%;}
.mini-feature-link:hover{border-color:rgba(59,130,246,.5);background:rgba(59,130,246,.08);color:#fff;}

/* DETAIL PAGE BODY */
.detail-body h2{color:#fff;font-weight:800;font-size:30px;margin-bottom:18px;margin-top:44px;}
.detail-body h2:first-child{margin-top:0;}
.detail-body p{font-size:16.5px;line-height:1.9;margin-bottom:16px;}
.check-list{list-style:none;padding:0;}
.check-list li{position:relative;padding-left:34px;margin-bottom:16px;font-size:16px;line-height:1.7;color:var(--text);}
.check-list li::before{content:'\f00c';font-family:'Font Awesome 6 Free';font-weight:900;position:absolute;left:0;top:2px;width:22px;height:22px;background:var(--gradient);color:#fff;border-radius:50%;font-size:11px;display:flex;align-items:center;justify-content:center;}
.step-row{display:flex;gap:20px;margin-bottom:26px;align-items:flex-start;}
.step-num{flex:none;width:44px;height:44px;border-radius:12px;background:rgba(59,130,246,.12);border:1px solid rgba(59,130,246,.3);color:#93c5fd;display:flex;align-items:center;justify-content:center;font-weight:800;}
.step-row h5{color:#fff;font-size:17px;margin-bottom:6px;}
.step-row p{margin:0;}

.sidebar-card{background:rgba(15,23,42,.75);border:1px solid var(--border);border-radius:22px;padding:26px;position:sticky;top:110px;}
.sidebar-card h5{color:#fff;font-size:16px;margin-bottom:16px;}
.sidebar-card .related-link{display:flex;justify-content:space-between;align-items:center;padding:10px 0;border-bottom:1px solid rgba(255,255,255,.05);color:#cbd5e1;font-size:14px;}
.sidebar-card .related-link:last-child{border-bottom:none;}
.sidebar-card .related-link:hover{color:#fff;}
.sidebar-cta{background:var(--gradient);border-radius:20px;padding:26px;margin-top:24px;}
.sidebar-cta h5{color:#fff;margin-bottom:10px;}
.sidebar-cta p{color:rgba(255,255,255,.9);font-size:14px;margin-bottom:18px;}

/* FAQ ACCORDION */
.accordion-item{background:rgba(15,23,42,.7);border:1px solid var(--border);border-radius:16px!important;margin-bottom:14px;overflow:hidden;}
.accordion-button{background:transparent;color:#fff;font-weight:600;font-size:16px;box-shadow:none!important;}
.accordion-button:not(.collapsed){background:rgba(59,130,246,.08);color:#fff;}
.accordion-button::after{filter:invert(1);}
.accordion-body{color:var(--text);font-size:15px;line-height:1.8;}

/* APP SHOWCASE */
.app-section{background:#071122;}
.phone{background:#0f172a;border:1px solid rgba(255,255,255,.06);padding:20px;border-radius:40px;max-width:320px;margin:auto;box-shadow:0 30px 60px rgba(0,0,0,.45);}
.phone-screen{background:linear-gradient(180deg,#111827,#1e293b);height:560px;border-radius:28px;padding:20px;color:#fff;}
.screen-card{background:rgba(255,255,255,.06);padding:18px;border-radius:18px;margin-top:15px;}

/* PRICING */
.pricing-card{background:rgba(15,23,42,.75);border:1px solid rgba(255,255,255,.08);padding:45px;border-radius:28px;height:100%;transition:.3s;}
.pricing-card:hover{transform:translateY(-10px);border-color:#3b82f6;}
.pricing-card h3{color:#fff;font-size:30px;}
.price{font-size:56px;font-weight:800;color:#fff;margin:20px 0;}
.price span{font-size:16px;font-weight:400;color:var(--text);}
.pricing-card ul{padding-left:0;list-style:none;}
.pricing-card ul li{margin-bottom:14px;}

/* TESTIMONIALS */
.testimonial{background:rgba(15,23,42,.7);padding:35px;border-radius:28px;border:1px solid rgba(255,255,255,.08);height:100%;}
.testimonial img{width:70px;height:70px;border-radius:50%;object-fit:cover;margin-bottom:20px;}
.testimonial h5{color:#fff;}

/* FORM */
.form-control,.form-select{
  background:rgba(255,255,255,.05);
  border:1px solid var(--border);
  color:#fff;
  padding:14px 16px;
  border-radius:12px;
}
.form-control:focus,.form-select:focus{
  background:rgba(255,255,255,.07);
  border-color:#3b82f6;
  box-shadow:0 0 0 3px rgba(59,130,246,.2);
  color:#fff;
}
.form-control::placeholder{color:#64748b;}
label{color:#e2e8f0;font-size:14px;font-weight:600;margin-bottom:8px;display:inline-block;}

/* CTA */
.cta{background:linear-gradient(135deg,#2563eb,#7c3aed);padding:100px 0;text-align:center;border-radius:40px;overflow:hidden;position:relative;}
.cta h2{font-size:52px;font-weight:800;color:#fff;}
.cta p{font-size:20px;color:#e2e8f0;margin-top:20px;}

/* FOOTER */
footer{padding:80px 0 30px;background:#020617;border-top:1px solid rgba(255,255,255,.06);}
.footer-title{color:#fff;margin-bottom:25px;font-size:20px;}
footer p,footer a{color:#94a3b8;font-size:14.5px;}
footer a:hover{color:#fff;}
footer ul{list-style:none;padding:0;}
footer ul li{margin-bottom:10px;}
.social-icons a{width:44px;height:44px;display:inline-flex;align-items:center;justify-content:center;background:rgba(255,255,255,.05);border-radius:12px;margin-right:10px;transition:.3s;}
.social-icons a:hover{background:var(--gradient);color:#fff;}
.footer-bottom-links a{margin-left:18px;}

/* WHATSAPP */
.whatsapp{position:fixed;right:20px;bottom:20px;width:65px;height:65px;background:#25d366;display:flex;align-items:center;justify-content:center;border-radius:50%;font-size:32px;color:#fff;z-index:999;box-shadow:0 10px 30px rgba(0,0,0,.35);}

/* PAGINATION / A-Z */
.az-pill{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:10px;background:rgba(255,255,255,.05);border:1px solid var(--border);color:#cbd5e1;font-size:13px;font-weight:700;margin:4px;}

/* MOBILE */
@media(max-width:991px){
  .hero{padding-top:140px;padding-bottom:100px;text-align:center;}
  .hero h1{font-size:44px;}
  .section-title h2{font-size:34px;}
  .cta h2{font-size:36px;}
  .dashboard-card{margin-top:60px;}
  .breadcrumb-bar h1{font-size:32px;}
  .sidebar-card{position:static;margin-top:40px;}
}
@media(max-width:576px){
  .hero h1{font-size:34px;}
  .hero p{font-size:17px;}
  .section-title h2{font-size:28px;}
  .cta h2{font-size:28px;}
  .hero-btns{justify-content:center;}
  .breadcrumb-bar{padding-top:120px;}
}
