﻿:root{
  --primary:#064635;
  --secondary:#10b981;
  --dark:#081c15;
  --light:#f8fafc;
  --white:#ffffff;
  --text:#1e293b;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Plus Jakarta Sans',sans-serif;
  background:var(--light);
  color:var(--text);
  overflow-x:hidden;
}

/* SMART PAGE LOADER */

.preloader{
  position:fixed;
  inset:0;
  background:
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(180deg,rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(135deg,#021710 0%,#064635 54%,#0f513f 100%);
  background-size:42px 42px,42px 42px,auto;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:99999;
  transition:opacity .55s ease, visibility .55s ease, transform .55s ease;
}

.preloader.loader-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:scale(1.015);
}

.smart-loader-panel{
  position:relative;
  width:min(480px,calc(100% - 36px));
  padding:28px;
  display:flex;
  flex-direction:column;
  gap:24px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:0 28px 80px rgba(0,0,0,.26);
  border-radius:22px;
  overflow:hidden;
}

.smart-loader-panel::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:6px;
  background:linear-gradient(90deg,#f8c33a,#10b981,#064635);
}

.smart-loader-top{
  display:flex;
  align-items:center;
  gap:16px;
}

.smart-loader-logo{
  position:relative;
  width:76px;
  height:76px;
  flex:0 0 76px;
  display:grid;
  place-items:center;
  background:#ffffff;
  border:1px solid rgba(6,70,53,.14);
  border-radius:20px;
  box-shadow:0 14px 35px rgba(6,70,53,.16);
}

.smart-loader-logo::after{
  content:"";
  position:absolute;
  width:16px;
  height:16px;
  right:-3px;
  top:-3px;
  border-radius:50%;
  background:#f8c33a;
  border:3px solid #ffffff;
  box-shadow:0 8px 18px rgba(248,195,58,.38);
  animation:smartLoaderPulse 1.1s ease-in-out infinite;
}

.smart-loader-logo img{
  width:52px;
  height:52px;
  object-fit:contain;
}

.smart-loader-copy{
  min-width:0;
}

.smart-loader-copy strong{
  display:block;
  color:#062c20;
  font-size:1.25rem;
  line-height:1.25;
  font-weight:900;
}

.smart-loader-copy p{
  margin:7px 0 0;
  color:#52645d;
  font-size:.94rem;
  line-height:1.45;
}

.smart-loader-journey{
  display:grid;
  grid-template-columns:auto 1fr auto 1fr auto;
  align-items:center;
  gap:10px;
}

.smart-loader-journey span{
  display:grid;
  place-items:center;
  min-width:62px;
  height:34px;
  padding:0 12px;
  color:#064635;
  background:#edf8f2;
  border:1px solid rgba(6,70,53,.12);
  border-radius:999px;
  font-size:.76rem;
  font-weight:900;
}

.smart-loader-journey span.active{
  color:#ffffff;
  background:#064635;
  box-shadow:0 12px 22px rgba(6,70,53,.18);
}

.smart-loader-journey i{
  position:relative;
  height:2px;
  min-width:26px;
  background:#dbe8e1;
  overflow:hidden;
}

.smart-loader-journey i::before{
  content:"";
  position:absolute;
  inset:0;
  background:#10b981;
  transform:translateX(-100%);
  animation:smartLoaderPath 1.55s ease-in-out infinite;
}

.smart-loader-journey i:nth-of-type(2)::before{
  animation-delay:.42s;
}

.smart-loader-progress{
  width:100%;
  height:8px;
  background:#e5efe9;
  border-radius:999px;
  position:relative;
  overflow:hidden;
}

.smart-loader-progress span{
  display:block;
  width:44%;
  height:100%;
  background:linear-gradient(90deg,#064635,#10b981,#f8c33a);
  border-radius:inherit;
  animation:smartLoaderProgress 1.45s cubic-bezier(.65,0,.35,1) infinite;
}

.smart-loader-progress::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.55),transparent);
  transform:translateX(-100%);
  animation:smartLoaderShine 1.45s ease-in-out infinite;
}

@keyframes smartLoaderPulse{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(.72); }
}

@keyframes smartLoaderPath{
  0%{ transform:translateX(-100%); }
  55%,100%{ transform:translateX(100%); }
}

@keyframes smartLoaderProgress{
  0%{ transform:translateX(-110%); }
  50%{ transform:translateX(65%); }
  100%{ transform:translateX(235%); }
}

@keyframes smartLoaderShine{
  0%,25%{ transform:translateX(-100%); }
  100%{ transform:translateX(100%); }
}

@media (max-width:480px){
  .smart-loader-panel{
    padding:24px 20px;
    border-radius:18px;
  }

  .smart-loader-top{
    align-items:flex-start;
  }

  .smart-loader-logo{
    width:64px;
    height:64px;
    flex-basis:64px;
    border-radius:17px;
  }

  .smart-loader-logo img{
    width:44px;
    height:44px;
  }

  .smart-loader-copy strong{
    font-size:1.08rem;
  }

  .smart-loader-journey{
    gap:6px;
  }

  .smart-loader-journey span{
    min-width:0;
    height:31px;
    padding:0 9px;
    font-size:.68rem;
  }
}

.page-flow-transition{
  position:fixed;
  inset:0;
  z-index:99998;
  pointer-events:none;
  opacity:0;
  visibility:hidden;
  background:
    radial-gradient(circle at 70% 30%,rgba(16,185,129,.18),transparent 32%),
    linear-gradient(135deg,rgba(3,27,20,.96),rgba(6,70,53,.96));
  transform:translateY(10px);
  transition:opacity .32s ease, visibility .32s ease, transform .32s ease;
}

.page-flow-transition.active{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.page-flow-transition::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:min(280px,70vw);
  height:4px;
  background:rgba(255,255,255,.14);
  transform:translate(-50%,-50%);
  overflow:hidden;
}

.page-flow-transition::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:min(280px,70vw);
  height:4px;
  background:#10b981;
  transform:translate(-150%,-50%);
  animation:pageFlowLine .8s ease-in-out infinite;
}

@keyframes pageFlowLine{
  to{ transform:translate(50%,-50%); }
}

body.page-flow-leaving{
  cursor:progress;
}

/* HERO */

.hero-section{
  min-height:100vh;
  background:linear-gradient(135deg,#031b14,#064635);
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:80px 20px;
  position:relative;
  overflow:hidden;
}

.hero-content{
  max-width:900px;
  z-index:2;
}

.hero-content h1{
  font-size:clamp(3rem,8vw,6rem);
  font-weight:800;
  color:white;
  line-height:1.1;
}

.hero-content h1 span{
  color:var(--secondary);
}

.hero-content p{
  color:rgba(255,255,255,.8);
  font-size:1.1rem;
  margin:30px auto;
  max-width:700px;
  line-height:1.8;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 20px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  backdrop-filter:blur(10px);
  color:white;
  margin-bottom:30px;
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
  padding:18px 35px;
  border-radius:18px;
  text-decoration:none;
  font-weight:700;
  transition:.4s ease;
  display:flex;
  align-items:center;
  gap:10px;
}

.primary-btn{
  background:var(--secondary);
  color:var(--dark);
}

.primary-btn:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 30px rgba(16,185,129,.4);
}

.secondary-btn{
  border:1px solid rgba(255,255,255,.2);
  color:white;
}

.secondary-btn:hover{
  background:white;
  color:var(--primary);
}

/* FLOATING SHAPES */

.floating-shape{
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
  animation:float 8s infinite ease-in-out;
}

.shape-1{
  width:300px;
  height:300px;
  background:rgba(16,185,129,.15);
  top:-100px;
  right:-100px;
}

.shape-2{
  width:250px;
  height:250px;
  background:rgba(255,255,255,.08);
  bottom:-100px;
  left:-100px;
}

/* SECTIONS */

section{
  padding:120px 8%;
}

.section-header{
  text-align:center;
  margin-bottom:70px;
}

.section-header span{
  color:var(--secondary);
  font-weight:700;
  letter-spacing:3px;
  font-size:.8rem;
}

.section-header h2{
  font-size:3rem;
  margin:20px 0;
}

.section-header p{
  max-width:700px;
  margin:auto;
  line-height:1.8;
  color:#64748b;
}

/* CARDS */

.card-grid,
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.glass-card,
.service-card,
.testimonial-card{
  background:white;
  padding:40px;
  border-radius:30px;
  transition:.5s ease;
  position:relative;
  overflow:hidden;
}

.glass-card:hover,
.service-card:hover,
.testimonial-card:hover{
  transform:translateY(-12px);
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.icon-wrapper{
  width:70px;
  height:70px;
  border-radius:20px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:25px;
}

.emerald{
  background:#dcfce7;
  color:#16a34a;
}

.blue{
  background:#dbeafe;
  color:#2563eb;
}

.orange{
  background:#ffedd5;
  color:#ea580c;
}

.services-section{
  background:#050505;
}

.services-section h2,
.services-section p,
.services-section h3{
  color:white;
}

.service-card{
  background:#0f172a;
}

.service-card i{
  color:var(--secondary);
  width:40px;
  height:40px;
  margin-bottom:20px;
}

/* REVEAL ANIMATION */

.reveal{
  opacity:0;
  transform:translateY(100px);
  transition:all 1s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* ANIMATIONS */

@keyframes spin{
  to{
    transform:rotate(360deg);
  }
}

@keyframes float{
  50%{
    transform:translateY(-20px);
  }
}

/* RESPONSIVE */

@media(max-width:768px){

  .hero-content h1{
    font-size:3rem;
  }

  section{
    padding:90px 20px;
  }

}
/* =========================
   PRICING SECTION
========================= */

.pricing-section{
    background:#f8fafc;
}

.pricing-card{
    background:white;
    border-radius:35px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr 1.3fr;
    box-shadow:0 20px 50px rgba(0,0,0,.06);
}

.pricing-left{
    background:#f1f5f9;
    padding:60px;
    position:relative;
}

.popular-badge{
    position:absolute;
    top:30px;
    right:30px;
    background:var(--secondary);
    color:white;
    padding:10px 18px;
    border-radius:999px;
    font-size:.7rem;
    font-weight:700;
    letter-spacing:2px;
}

.pricing-left h3{
    font-size:2rem;
    margin-bottom:20px;
}

.pricing-left p{
    color:#64748b;
    line-height:1.8;
}

.price{
    font-size:4rem;
    font-weight:800;
    margin-top:40px;
    background:linear-gradient(90deg,#064635,#10b981);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.pricing-right{
    padding:60px;
}

.pricing-right ul{
    list-style:none;
}

.pricing-right li{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
    font-weight:600;
}

.pricing-right li i{
    color:var(--secondary);
}

.pricing-btn{
    margin-top:40px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:var(--primary);
    color:white;
    padding:18px 35px;
    border-radius:18px;
    text-decoration:none;
    font-weight:700;
    transition:.4s ease;
}

.pricing-btn:hover{
    transform:translateY(-5px);
    background:var(--secondary);
}

/* =========================
   STATISTICS
========================= */

.statistics-section{
    background:linear-gradient(135deg,#020617,#0f172a);
    position:relative;
    overflow:hidden;
}

.stats-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(16,185,129,.15),
    transparent 30%);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    position:relative;
    z-index:2;
}

.stats-card{
    background:white;
    padding:50px 35px;
    border-radius:30px;
    transition:.5s ease;
    border-bottom:5px solid #facc15;
}

.stats-card:hover{
    transform:translateY(-12px);
    border-color:var(--secondary);
}

.stats-card h3{
    font-size:3rem;
    margin-bottom:15px;
    color:#111827;
}

.stats-card p{
    color:#64748b;
    line-height:1.8;
}

/* =========================
   PARTNERSHIP
========================= */

.partnership-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.partnership-card{
    background:white;
    padding:35px;
    border-radius:30px;
    display:flex;
    align-items:flex-start;
    gap:20px;
    transition:.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.partnership-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.partnership-card i{
    width:55px;
    height:55px;
    background:#dcfce7;
    color:#16a34a;
    padding:14px;
    border-radius:18px;
}

.partnership-card h3{
    margin-bottom:10px;
    font-size:1.1rem;
}

.partnership-card p{
    color:#64748b;
    line-height:1.7;
}

/* =========================
   ADVANCED ANIMATIONS
========================= */

.stats-card,
.partnership-card,
.pricing-card{
    opacity:0;
    transform:translateY(80px);
    animation:fadeUp 1s forwards;
}

@keyframes fadeUp{

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

    .pricing-card{
        grid-template-columns:1fr;
    }

    .pricing-left,
    .pricing-right{
        padding:40px 30px;
    }

}
/* RIPPLE EFFECT */

button,
a{
    position:relative;
    overflow:hidden;
}

.ripple{
    position:absolute;
    width:20px;
    height:20px;
    background:rgba(255,255,255,.4);
    border-radius:50%;
    transform:scale(0);
    animation:ripple .6s linear;
}

@keyframes ripple{

    to{
        transform:scale(20);
        opacity:0;
    }

}/* =========================================================
   PREMIUM ENTERPRISE NAVIGATION SYSTEM
========================================================= */

:root{

    --primary:#10b981;
    --primary-dark:#064635;

    --dark:#02140f;

    --text:#0f172a;

    --muted:#64748b;

    --white:#ffffff;

    --border:rgba(226,232,240,.85);

    --shadow:
    0 20px 50px rgba(0,0,0,.08);

}

/* =========================================================
   RESET
========================================================= */

*{

    margin:0;
    padding:0;

    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;
}

body{

    font-family:
    'Plus Jakarta Sans',
    sans-serif;

    background:#f8fafc;

    overflow-x:hidden;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar{

    width:100%;

    position:sticky;

    top:0;

    z-index:999;

    background:
    rgba(255,255,255,.82);

    backdrop-filter:blur(22px);

    border-bottom:
    1px solid rgba(226,232,240,.7);

    transition:.35s ease;
}

/* WRAPPER */

.nav-wrapper{

    width:100%;

    max-width:1440px;

    margin:auto;

    padding:
    18px 28px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;
}

/* =========================================================
   LOGO
========================================================= */

.brand-logo{

    display:flex;

    align-items:center;

    gap:14px;

    text-decoration:none;

    flex-shrink:0;
}

/* IMAGE */

.brand-logo img{

    width:56px;
    height:56px;

    border-radius:18px;

    object-fit:cover;
}

/* TEXT */

.brand-text h2{

    font-size:1.2rem;

    font-weight:900;

    color:var(--dark);

    letter-spacing:-.5px;
}

.brand-text span{

    color:var(--primary);
}

.brand-text p{

    font-size:.68rem;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:2px;

    color:#94a3b8;

    margin-top:3px;
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-nav{

    flex:1;

    display:flex;

    justify-content:center;
}

/* LINKS */

.nav-links{

    display:flex;

    align-items:center;

    gap:16px;

    list-style:none;
}

/* LINK */

.nav-links a,
.mega-trigger{

    border:none;

    background:none;

    text-decoration:none;

    display:flex;

    align-items:center;

    gap:8px;

    padding:
    14px 18px;

    border-radius:18px;

    font-size:.95rem;

    font-weight:700;

    color:#334155;

    cursor:pointer;

    transition:.35s ease;

    position:relative;

    overflow:hidden;
}

/* SHINE */

.nav-links a::before,
.mega-trigger::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(16,185,129,.06),
    transparent
    );

    transform:
    translateX(-100%);

    transition:.7s ease;
}

/* HOVER */

.nav-links a:hover,
.mega-trigger:hover{

    background:
    rgba(16,185,129,.06);

    color:var(--primary-dark);

    transform:
    translateY(-2px);
}

.nav-links a:hover::before,
.mega-trigger:hover::before{

    transform:
    translateX(100%);
}

/* ACTIVE */

.active-link{

    background:
    rgba(16,185,129,.08);

    color:var(--primary-dark) !important;
}

/* =========================================================
   MEGA MENU
========================================================= */

.mega-dropdown{

    position:relative;
}

/* BUTTON ICON */

.mega-trigger i{

    width:18px;
    height:18px;

    transition:.35s ease;
}

/* MENU */

.mega-menu{

    position:absolute;

    top:120%;
    left:50%;

    transform:
    translateX(-50%)
    translateY(10px);

    min-width:760px;

    background:white;

    border:
    1px solid rgba(226,232,240,.8);

    border-radius:30px;

    padding:28px;

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transition:.35s ease;

    box-shadow:var(--shadow);
}

/* ACTIVE */

.mega-dropdown.active .mega-menu{

    opacity:1;

    visibility:visible;

    pointer-events:auto;

    transform:
    translateX(-50%)
    translateY(0);
}

/* ROTATE */

.mega-dropdown.active .mega-trigger i{

    transform:rotate(180deg);
}

/* SMALL */

.small-menu{

    min-width:320px;
}

/* GRID */

.mega-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:28px;
}

.single-grid{

    grid-template-columns:1fr;
}

/* COLUMN */

.mega-column{

    display:flex;

    flex-direction:column;

    gap:10px;
}

/* TITLE */

.mega-title{

    font-size:.72rem;

    font-weight:900;

    text-transform:uppercase;

    letter-spacing:3px;

    color:#94a3b8;

    margin-bottom:6px;
}

/* MENU LINKS */

.mega-column a{

    padding:
    14px 16px;

    border-radius:16px;

    transition:.35s ease;
}

.mega-column a:hover{

    background:
    rgba(16,185,129,.06);

    transform:
    translateX(4px);
}

/* =========================================================
   ACTION BUTTONS
========================================================= */

.nav-actions{

    display:flex;

    align-items:center;

    gap:14px;
}

/* SIGN IN */

.signin-btn{

    height:54px;

    padding:
    0 24px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:.92rem;

    font-weight:800;

    color:#334155;

    transition:.35s ease;
}

.signin-btn:hover{

    background:
    rgba(16,185,129,.06);

    color:var(--primary-dark);
}

/* PRIMARY */

.navbar .primary-btn{

    height:56px;

    padding:
    0 28px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    background:
    linear-gradient(
    135deg,
    #02140f,
    #064635
    );

    color:white;

    text-decoration:none;

    font-size:.92rem;

    font-weight:800;

    transition:.35s ease;

    box-shadow:
    0 15px 35px rgba(6,70,53,.18);
}

.navbar .primary-btn:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 20px 40px rgba(6,70,53,.25);
}

/* =========================================================
   MOBILE TOGGLE
========================================================= */

.mobile-toggle{

    width:56px;
    height:56px;

    border:none;

    border-radius:18px;

    background:white;

    border:
    1px solid rgba(226,232,240,.8);

    display:none;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.35s ease;
}

.mobile-toggle:hover{

    background:#f8fafc;
}

.mobile-toggle i{

    width:22px;
    height:22px;
}

/* =========================================================
   MOBILE SIDEBAR
========================================================= */

.mobile-sidebar{

    position:fixed;

    top:0;
    right:-100%;

    width:360px;

    max-width:100%;

    height:100vh;

    background:white;

    z-index:1001;

    transition:
    right .45s cubic-bezier(.77,0,.18,1);

    display:flex;

    flex-direction:column;

    padding:24px;

    overflow-y:auto;

    box-shadow:
    -20px 0 50px rgba(0,0,0,.08);
}

/* ACTIVE */

.mobile-sidebar.active{

    right:0;
}

/* TOP */

.mobile-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:30px;
}

/* MOBILE BRAND */

.mobile-brand{

    display:flex;

    align-items:center;

    gap:12px;
}

.mobile-brand img{

    width:52px;
    height:52px;

    border-radius:16px;

    object-fit:cover;
}

.mobile-brand h2{

    font-size:1rem;

    font-weight:900;

    color:#02140f;
}

.mobile-brand span{

    color:#10b981;
}

.mobile-brand p{

    font-size:.65rem;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#94a3b8;

    font-weight:800;
}

/* CLOSE */

.close-mobile{

    width:48px;
    height:48px;

    border:none;

    border-radius:16px;

    background:#f8fafc;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.35s ease;
}

.close-mobile:hover{

    background:#eef2f7;
}

/* =========================================================
   MOBILE LINKS
========================================================= */

.mobile-links{

    display:flex;

    flex-direction:column;

    gap:12px;
}

/* LINKS */

.mobile-links > a,
.mobile-dropdown-btn{

    width:100%;

    border:none;

    background:none;

    text-decoration:none;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:
    16px 18px;

    border-radius:18px;

    font-size:.95rem;

    font-weight:700;

    color:#334155;

    cursor:pointer;

    transition:.35s ease;
}

.mobile-links > a:hover,
.mobile-dropdown-btn:hover{

    background:
    rgba(16,185,129,.06);

    color:#064635;
}

/* ICON */

.mobile-dropdown-btn i{

    width:18px;
    height:18px;

    transition:.35s ease;
}

/* ACTIVE */

.mobile-dropdown.active .mobile-dropdown-btn i{

    transform:rotate(180deg);
}

/* MENU */

.mobile-dropdown-menu{

    max-height:0;

    overflow:hidden;

    transition:
    max-height .45s ease;

    display:flex;

    flex-direction:column;

    margin-left:18px;

    border-left:
    1px solid rgba(226,232,240,.9);
}

/* SHOW */

.mobile-dropdown.active .mobile-dropdown-menu{

    max-height:500px;
}

/* SUB LINKS */

.mobile-dropdown-menu a{

    text-decoration:none;

    color:#64748b;

    font-size:.9rem;

    font-weight:700;

    padding:
    14px 20px;

    transition:.35s ease;
}

.mobile-dropdown-menu a:hover{

    color:#10b981;

    transform:
    translateX(4px);
}

/* =========================================================
   MOBILE BUTTONS
========================================================= */

.mobile-buttons{

    margin-top:auto;

    display:flex;

    flex-direction:column;

    gap:14px;

    padding-top:30px;
}

/* SIGN */

.mobile-signin{

    height:56px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    background:#f8fafc;

    color:#334155;

    font-weight:800;
}

/* START */

.mobile-start{

    height:58px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    background:
    linear-gradient(
    135deg,
    #02140f,
    #064635
    );

    color:white;

    font-weight:800;

    box-shadow:
    0 15px 35px rgba(6,70,53,.18);
}

/* =========================================================
   OVERLAY
========================================================= */

.mobile-overlay{

    position:fixed;

    inset:0;

    background:
    rgba(2,20,15,.55);

    backdrop-filter:blur(4px);

    z-index:1000;

    opacity:0;

    visibility:hidden;

    transition:.35s ease;
}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .desktop-nav,
    .nav-actions{

        display:none;
    }

    .mobile-toggle{

        display:flex;
    }

}

@media(max-width:480px){

    .mobile-sidebar{

        width:100%;
    }

    .nav-wrapper{

        padding:
        16px 18px;
    }

    .brand-logo img{

        width:48px;
        height:48px;
    }

}
/* =========================
   PREMIUM FOOTER
========================= */

.premium-footer{

    position:relative;

    background:
    linear-gradient(
    135deg,
    #02140f,
    #052e24
    );

    overflow:hidden;

    padding:
    80px 8% 40px;
}

/* GLOW EFFECTS */

.footer-blur{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:.12;
}

.blur-one{
    width:350px;
    height:350px;
    background:#10b981;
    top:-120px;
    left:-120px;
}

.blur-two{
    width:400px;
    height:400px;
    background:#ffffff;
    bottom:-200px;
    right:-200px;
}

.footer-inner{
    position:relative;
    z-index:2;
}

/* =========================
   NEWSLETTER
========================= */

.newsletter-wrapper{

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:32px;

    padding:45px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:40px;

    flex-wrap:wrap;

    margin-bottom:70px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.18);
}

/* LEFT */

.newsletter-content{
    flex:1;
    min-width:300px;
}

.newsletter-content span{
    color:#10b981;
    letter-spacing:3px;
    font-size:.8rem;
    font-weight:700;
}

.newsletter-content h2{
    color:white;
    font-size:clamp(2rem,4vw,3rem);
    line-height:1.2;
    margin:16px 0;
}

.newsletter-content p{
    color:rgba(255,255,255,.72);
    line-height:1.8;
    max-width:550px;
}

/* FORM */

.newsletter-form{
    flex:1;
    display:flex;
    align-items:center;
    gap:15px;
    min-width:320px;
}

.newsletter-field{

    flex:1;

    height:68px;

    border-radius:18px;

    background:
    rgba(255,255,255,.06);

    border:
    1px solid rgba(255,255,255,.08);

    display:flex;
    align-items:center;

    padding:0 20px;

    gap:12px;
}

.newsletter-field i{
    color:#10b981;
}

.newsletter-field input{
    width:100%;
    border:none;
    outline:none;
    background:none;
    color:white;
    font-size:1rem;
}

.newsletter-field input::placeholder{
    color:rgba(255,255,255,.4);
}

.newsletter-form button{

    height:68px;

    padding:0 28px;

    border:none;

    border-radius:18px;

    background:#10b981;

    color:#02140f;

    font-weight:700;

    display:flex;
    align-items:center;

    gap:10px;

    cursor:pointer;

    transition:.4s ease;
}

.newsletter-form button:hover{
    background:white;
    transform:translateY(-5px);
}

/* =========================
   FOOTER GRID
========================= */

.footer-grid{

    display:grid;

    grid-template-columns:
    1.5fr 1fr 1fr 1fr;

    gap:50px;

    padding-bottom:50px;

    border-bottom:
    1px solid rgba(255,255,255,.08);
}

/* BRAND */

.footer-logo{
    color:white;
    text-decoration:none;
    font-size:2rem;
    font-weight:800;
}

.footer-logo span{
    color:#10b981;
}

.footer-brand p{
    margin:24px 0;
    color:rgba(255,255,255,.68);
    line-height:1.9;
    max-width:380px;
}

/* SOCIALS */

.footer-socials{
    display:flex;
    gap:14px;
}

.footer-socials a{

    width:48px;
    height:48px;

    border-radius:16px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;

    transition:.4s ease;
}

.footer-socials a:hover{
    background:#10b981;
    transform:translateY(-6px);
}

/* LINKS */

.footer-links h3,
.footer-contact h3{
    color:white;
    margin-bottom:25px;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    color:rgba(255,255,255,.65);
    text-decoration:none;
    margin-bottom:16px;
    transition:.3s ease;
}

.footer-links a:hover{
    color:#10b981;
    transform:translateX(6px);
}

/* CONTACT */

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:20px;
    color:rgba(255,255,255,.72);
}

.contact-item i{
    color:#10b981;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{

    padding-top:35px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    flex-wrap:wrap;

    gap:20px;
}

.footer-bottom p{
    color:rgba(255,255,255,.45);
}

.footer-bottom-legal{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
    min-width:0;
}

.footer-legal-links{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.footer-legal-links a{
    color:rgba(255,255,255,.62);
    font-size:.88rem;
    font-weight:800;
    text-decoration:none;
    transition:color .2s ease;
}

.footer-legal-links a:not(:last-child)::after{
    content:"";
    display:inline-block;
    width:4px;
    height:4px;
    margin-left:10px;
    border-radius:50%;
    background:rgba(255,255,255,.24);
    vertical-align:middle;
}

.footer-legal-links a:hover{
    color:#10b981;
}

/* BUTTON */

.back-top{

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    color:white;

    padding:14px 24px;

    border-radius:16px;

    display:flex;
    align-items:center;

    gap:10px;

    cursor:pointer;

    transition:.4s ease;
}

.back-top:hover{
    background:#10b981;
    transform:translateY(-5px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .newsletter-wrapper{
        padding:35px 25px;
    }

    .newsletter-form{
        flex-direction:column;
        width:100%;
    }

    .newsletter-form button{
        width:100%;
        justify-content:center;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

}
/* =========================
   PARTNERS SECTION
========================= */

.partners-section{

    padding:120px 0;

    background:#f8fafc;

    overflow:hidden;

    position:relative;
}

/* HEADER */

.partners-header{
    text-align:center;
    margin-bottom:60px;
    padding:0 8%;
}

.partners-header span{
    color:#10b981;
    font-size:.8rem;
    letter-spacing:3px;
    font-weight:700;
}

.partners-header h2{
    font-size:clamp(2.2rem,5vw,4rem);
    margin:20px 0;
    color:#0f172a;
}

.partners-header p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    line-height:1.9;
}

/* SLIDER */

.partners-slider{
    position:relative;
    width:100%;
    overflow:hidden;
}

/* GRADIENT FADES */

.partners-slider::before,
.partners-slider::after{

    content:"";

    position:absolute;

    top:0;

    width:180px;
    height:100%;

    z-index:2;
}

.partners-slider::before{
    left:0;

    background:
    linear-gradient(
    to right,
    #f8fafc,
    transparent
    );
}

.partners-slider::after{
    right:0;

    background:
    linear-gradient(
    to left,
    #f8fafc,
    transparent
    );
}

/* TRACK */

.partners-track{

    display:flex;

    align-items:center;

    gap:25px;

    width:max-content;

    animation:
    infiniteScroll 30s linear infinite;
}

/* PAUSE ON HOVER */

.partners-slider:hover .partners-track{
    animation-play-state:paused;
}

/* CARDS */

.partner-card{

    min-width:220px;
    height:120px;

    border-radius:28px;

    background:white;

    border:
    1px solid rgba(15,23,42,.05);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:1.4rem;
    font-weight:800;

    color:#064635;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);

    transition:.4s ease;

    position:relative;

    overflow:hidden;
}

/* GLASS EFFECT */

.partner-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.5),
    transparent
    );

    opacity:0;

    transition:.4s ease;
}

.partner-card:hover{

    transform:
    translateY(-8px)
    scale(1.03);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);
}

.partner-card:hover::before{
    opacity:1;
}

/* INFINITE ANIMATION */

@keyframes infiniteScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* RESPONSIVE */

@media(max-width:768px){

    .partner-card{
        min-width:170px;
        height:100px;
        font-size:1.1rem;
    }

}
/* =========================
   PREMIUM WHATSAPP WIDGET
========================= */

.wa-widget{

    position:fixed;

    right:25px;
    bottom:25px;

    z-index:9999;
}

/* =========================
   CHAT CARD
========================= */

.wa-card{

    position:absolute;

    right:0;
    bottom:95px;

    width:360px;

    background:
    rgba(255,255,255,.92);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.3);

    border-radius:30px;

    overflow:hidden;

    opacity:0;
    visibility:hidden;

    transform:
    translateY(20px)
    scale(.95);

    transition:.45s cubic-bezier(
        0.4,
        0,
        0.2,
        1
    );

    box-shadow:
    0 30px 80px rgba(0,0,0,.18);
}

/* ACTIVE */

.wa-card.active{

    opacity:1;
    visibility:visible;

    transform:
    translateY(0)
    scale(1);
}

/* =========================
   HEADER
========================= */

.wa-header{

    background:
    linear-gradient(
    135deg,
    #25D366,
    #128C7E
    );

    padding:22px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.wa-profile{

    display:flex;
    align-items:center;
    gap:14px;
}

/* AVATAR */

.wa-avatar{

    width:58px;
    height:58px;

    background:white;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;
}

.wa-avatar img{
    width:32px;
    height:32px;
}

/* ONLINE */

.wa-online{

    position:absolute;

    right:3px;
    bottom:3px;

    width:14px;
    height:14px;

    border-radius:50%;

    background:#00ff66;

    border:2px solid white;
}

/* TEXT */

.wa-profile h4{

    color:white;

    font-size:1rem;

    margin-bottom:3px;
}

.wa-profile p{

    color:rgba(255,255,255,.8);

    font-size:.8rem;
}

/* Toggle switch for director shareholder option */
.switch-checkbox{
    position:relative;
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    border:1px solid #d1d5db;
    border-radius:12px;
    background:#f9fafb;
    cursor:pointer;
}

.switch-checkbox input[type="checkbox"]{
    position:absolute;
    opacity:0;
    width:0;
    height:0;
}

.switch-slider{
    position:relative;
    width:46px;
    height:26px;
    border-radius:999px;
    background:#e5e7eb;
    transition:background .25s ease;
    flex-shrink:0;
}

.switch-slider::before{
    content:'';
    position:absolute;
    top:3px;
    left:3px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:white;
    box-shadow:0 1px 3px rgba(15,23,42,.12);
    transition:transform .25s ease;
}

.switch-checkbox input[type="checkbox"]:checked + .switch-slider{
    background:#16a34a;
}

.switch-checkbox input[type="checkbox"]:checked + .switch-slider::before{
    transform:translateX(20px);
}

.switch-label{
    display:block;
    color:#111827;
    font-size:0.96rem;
    line-height:1.4;
}

/* CLOSE */

.wa-close{

    width:35px;
    height:35px;

    border:none;

    border-radius:12px;

    background:
    rgba(255,255,255,.12);

    color:white;

    cursor:pointer;

    transition:.3s ease;
}

.wa-close:hover{
    background:white;
    color:#128C7E;
}

/* =========================
   BODY
========================= */

.wa-body{
    padding:25px;
}

.wa-message{

    background:#f1f5f9;

    padding:18px 20px;

    border-radius:20px;

    line-height:1.8;

    color:#334155;

    font-size:.95rem;
}

/* =========================
   BUTTON
========================= */

.wa-start-btn{

    margin:0 25px 25px;

    height:60px;

    border-radius:18px;

    background:#25D366;

    color:white;

    font-weight:700;

    text-decoration:none;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:12px;

    transition:.4s ease;
}

.wa-start-btn img{
    width:24px;
    height:24px;
}

.wa-start-btn:hover{

    background:#128C7E;

    transform:translateY(-4px);
}

/* =========================
   FLOATING BUTTON
========================= */

.wa-button{

    width:74px;
    height:74px;

    border:none;

    border-radius:50%;

    background:#25D366;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;

    cursor:pointer;

    box-shadow:
    0 20px 50px rgba(37,211,102,.45);

    transition:.4s ease;
}

.wa-button:hover{
    transform:scale(1.08);
}

.wa-button img{
    width:38px;
    height:38px;
}

/* =========================
   PING
========================= */

.wa-ping{

    position:absolute;

    inset:0;

    border-radius:50%;

    border:
    2px solid rgba(37,211,102,.5);

    animation:
    waPing 2s infinite;
}

@keyframes waPing{

    0%{
        transform:scale(1);
        opacity:1;
    }

    100%{
        transform:scale(1.6);
        opacity:0;
    }

}

/* =========================
   TOOLTIP
========================= */

.wa-tooltip{

    position:absolute;

    right:90px;

    background:#02140f;

    color:white;

    padding:12px 16px;

    border-radius:14px;

    font-size:.85rem;

    white-space:nowrap;

    opacity:0;
    visibility:hidden;

    transform:translateX(10px);

    transition:.3s ease;
}

.wa-button:hover .wa-tooltip{

    opacity:1;
    visibility:visible;

    transform:translateX(0);
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .wa-widget{
        right:18px;
        bottom:18px;
    }

    .wa-card{
        width:310px;
    }

    .wa-button{
        width:68px;
        height:68px;
    }

}
/* LOGO IMAGE */

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo img{

    height:55px;
    width:auto;

    object-fit:contain;

    transition:.4s ease;
}

/* HOVER EFFECT */

.logo:hover img{
    transform:scale(1.04);
}

/* MOBILE */

@media(max-width:768px){

    .logo img{
        height:48px;
    }

}
/* ==================================================
   PREMIUM BUSINESS REGISTRATION PAGE
================================================== */

.business-page{

    background:
    linear-gradient(
    180deg,
    #02140f,
    #052e24
    );

    overflow-x:hidden;
}

/* GLOWS */

.business-bg-glow{

    position:fixed;

    border-radius:50%;

    filter:blur(140px);

    opacity:.12;

    z-index:-1;
}

.glow-left{

    width:400px;
    height:400px;

    background:#10b981;

    top:-150px;
    left:-120px;
}

.glow-right{

    width:450px;
    height:450px;

    background:#fbbf24;

    bottom:-200px;
    right:-200px;
}

/* HERO */

.business-hero-section{

    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:
    140px 8% 100px;

    position:relative;
}

.business-hero-container{

    max-width:1000px;

    text-align:center;
}

/* BADGE */

.business-badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:
    14px 22px;

    border-radius:999px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    margin-bottom:35px;
}

.badge-ping{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#fbbf24;

    animation:pulse 1.5s infinite;
}

.business-badge p{

    color:#fbbf24;

    font-size:.75rem;

    font-weight:800;

    letter-spacing:3px;
}

/* TITLE */

.business-title{

    font-size:
    clamp(3rem,8vw,6rem);

    line-height:1.05;

    font-weight:800;

    color:white;

    margin-bottom:30px;
}

.business-title span{

    color:#fbbf24;

    text-shadow:
    0 0 20px rgba(251,191,36,.25);
}

/* DESCRIPTION */

.business-description{

    max-width:780px;

    margin:auto;

    color:
    rgba(255,255,255,.72);

    line-height:1.9;

    font-size:1.15rem;

    margin-bottom:50px;
}

/* BUTTONS */

.business-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;
}

/* PRIMARY */

.primary-business-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:
    20px 38px;

    border-radius:20px;

    background:#fbbf24;

    color:#02140f;

    text-decoration:none;

    font-weight:800;

    transition:.4s ease;
}

.primary-business-btn:hover{

    background:white;

    transform:
    translateY(-5px)
    scale(1.03);
}

/* SECONDARY */

.secondary-business-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:
    20px 38px;

    border-radius:20px;

    border:
    1px solid rgba(255,255,255,.1);

    background:
    rgba(255,255,255,.04);

    color:white;

    text-decoration:none;

    font-weight:700;

    backdrop-filter:blur(20px);

    transition:.4s ease;
}

.secondary-business-btn:hover{

    background:
    rgba(255,255,255,.08);

    transform:translateY(-5px);
}

/* SECTION */

.business-features-section,
.business-roadmap-section,
.business-cta-section{

    padding:
    120px 8%;
}

/* HEADER */

.business-section-header{

    text-align:center;

    max-width:800px;

    margin:auto auto 70px;
}

.business-section-header span{

    color:#fbbf24;

    letter-spacing:4px;

    font-size:.8rem;

    font-weight:800;
}

.business-section-header h2{

    font-size:
    clamp(2.5rem,6vw,4.5rem);

    color:white;

    margin:20px 0;
}

.business-section-header p{

    color:
    rgba(255,255,255,.7);

    line-height:1.9;
}

/* FEATURES GRID */

.business-features-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;
}

/* CARD */

.business-feature-card{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:32px;

    padding:40px;

    transition:.4s ease;
}

.business-feature-card:hover{

    transform:
    translateY(-12px);

    border-color:
    rgba(251,191,36,.25);
}

.feature-icon{

    width:75px;
    height:75px;

    border-radius:24px;

    background:
    rgba(251,191,36,.08);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.feature-icon i{

    width:34px;
    height:34px;

    color:#fbbf24;
}

.business-feature-card h3{

    color:white;

    margin-bottom:18px;

    font-size:1.4rem;
}

.business-feature-card p{

    color:
    rgba(255,255,255,.68);

    line-height:1.9;
}

/* ROADMAP */

.business-roadmap-wrapper{

    display:flex;

    flex-direction:column;

    gap:24px;

    max-width:1000px;

    margin:auto;
}

.roadmap-card{

    display:flex;

    gap:30px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    border-left:
    4px solid transparent;

    border-radius:28px;

    padding:35px;

    transition:.4s ease;
}

.roadmap-card:hover{

    transform:
    translateX(10px);

    border-left-color:#fbbf24;
}

.roadmap-number{

    color:#fbbf24;

    font-size:2rem;

    font-weight:900;

    opacity:.5;
}

.roadmap-content h3{

    color:white;

    margin-bottom:12px;
}

.roadmap-content p{

    color:
    rgba(255,255,255,.68);

    line-height:1.9;
}

/* CTA */

.business-cta-box{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:70px;

    border-radius:40px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);
}

.business-cta-box span{

    color:#fbbf24;

    letter-spacing:3px;

    font-size:.8rem;

    font-weight:800;
}

.business-cta-box h2{

    font-size:
    clamp(2.5rem,6vw,4rem);

    color:white;

    margin:
    25px 0 40px;
}

.business-cta-button{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:
    22px 45px;

    border-radius:22px;

    background:#fbbf24;

    color:#02140f;

    text-decoration:none;

    font-weight:800;

    transition:.4s ease;
}

.business-cta-button:hover{

    background:white;

    transform:
    translateY(-6px)
    scale(1.03);
}

/* REVEAL */

.reveal{

    opacity:0;

    transform:
    translateY(40px);

    transition:
    1s cubic-bezier(
    0.4,
    0,
    0.2,
    1
    );
}

.reveal.active{

    opacity:1;

    transform:
    translateY(0);
}

/* PULSE */

@keyframes pulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.3);
    }

    100%{
        transform:scale(1);
    }

}

/* RESPONSIVE */

@media(max-width:768px){

    .business-hero-section,
    .business-features-section,
    .business-roadmap-section,
    .business-cta-section{

        padding-left:25px;
        padding-right:25px;
    }

    .roadmap-card{
        flex-direction:column;
    }

    .business-cta-box{
        padding:40px 25px;
    }

}
/* ==================================================
   POST INCORPORATION PAGE
================================================== */

.post-page{

    background:
    linear-gradient(
    180deg,
    #02140f,
    #052e24
    );

    overflow-x:hidden;
}

/* GLOWS */

.post-glow{

    position:fixed;

    border-radius:50%;

    filter:blur(140px);

    opacity:.12;

    z-index:-1;
}

.glow-left{

    width:400px;
    height:400px;

    background:#10b981;

    top:-150px;
    left:-120px;
}

.glow-right{

    width:450px;
    height:450px;

    background:#fbbf24;

    bottom:-200px;
    right:-200px;
}

/* HERO */

.post-hero-section{

    min-height:70vh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:
    140px 8% 100px;
}

.post-hero-container{

    max-width:950px;
}

/* BADGE */

.post-badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:
    14px 22px;

    border-radius:999px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    margin-bottom:35px;
}

.post-badge-dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#fbbf24;

    animation:pulse 1.5s infinite;
}

.post-badge p{

    color:#fbbf24;

    font-size:.75rem;

    font-weight:800;

    letter-spacing:3px;
}

/* TITLE */

.post-title{

    font-size:
    clamp(3rem,8vw,6rem);

    color:white;

    font-weight:800;

    line-height:1.05;

    margin-bottom:25px;
}

.post-title span{
    color:#fbbf24;
}

/* DESCRIPTION */

.post-description{

    color:
    rgba(255,255,255,.72);

    line-height:1.9;

    font-size:1.1rem;

    max-width:760px;

    margin:auto;
}

/* SERVICES */

.post-services-section{

    padding:
    100px 8%;
}

.post-services-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;
}

/* CARD */

.post-service-card{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:32px;

    padding:40px;

    backdrop-filter:blur(20px);

    transition:.45s ease;
}

.post-service-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(251,191,36,.25);
}

.featured-card{

    border:
    1px solid rgba(251,191,36,.35);

    background:
    rgba(251,191,36,.06);
}

/* ICON */

.post-service-icon{

    width:75px;
    height:75px;

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.post-service-icon i{

    width:32px;
    height:32px;
}

/* COLORS */

.yellow{
    background:rgba(251,191,36,.12);
    color:#fbbf24;
}

.emerald{
    background:rgba(16,185,129,.12);
    color:#10b981;
}

.orange{
    background:rgba(249,115,22,.12);
    color:#f97316;
}

.indigo{
    background:rgba(99,102,241,.12);
    color:#6366f1;
}

.purple{
    background:rgba(168,85,247,.12);
    color:#a855f7;
}

.cyan{
    background:rgba(6,182,212,.12);
    color:#06b6d4;
}

/* CARD TEXT */

.post-service-card h3{

    color:white;

    margin-bottom:18px;

    font-size:1.35rem;
}

.post-service-card p{

    color:
    rgba(255,255,255,.68);

    line-height:1.9;

    margin-bottom:35px;
}

/* BUTTON */

.post-service-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:
    16px 28px;

    border-radius:18px;

    background:#fbbf24;

    color:#02140f;

    text-decoration:none;

    font-weight:800;

    transition:.4s ease;
}

.post-service-btn:hover{

    background:white;

    transform:
    translateY(-5px)
    scale(1.03);
}

/* CTA */

.post-cta-section{

    padding:
    0 8% 120px;
}

.post-cta-box{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:70px;

    border-radius:40px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);
}

.post-cta-box span{

    color:#fbbf24;

    font-size:.8rem;

    font-weight:800;

    letter-spacing:3px;
}

.post-cta-box h2{

    color:white;

    font-size:
    clamp(2.5rem,6vw,4rem);

    margin:
    25px 0 40px;
}

.post-cta-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:
    22px 45px;

    border-radius:22px;

    background:#fbbf24;

    color:#02140f;

    text-decoration:none;

    font-weight:800;

    transition:.4s ease;
}

.post-cta-btn:hover{

    background:white;

    transform:
    translateY(-6px)
    scale(1.03);
}

/* RESPONSIVE */

@media(max-width:768px){

    .post-hero-section,
    .post-services-section,
    .post-cta-section{

        padding-left:25px;
        padding-right:25px;
    }

    .post-cta-box{
        padding:40px 25px;
    }

}
/* ==================================================
   CONTACT PAGE
================================================== */

.contact-page{

    background:
    linear-gradient(
    180deg,
    #02140f,
    #052e24
    );

    overflow-x:hidden;
}

/* GLOWS */

.contact-glow{

    position:fixed;

    border-radius:50%;

    filter:blur(140px);

    opacity:.12;

    z-index:-1;
}

/* HERO */

.contact-hero-section{

    min-height:80vh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:
    140px 8% 100px;
}

.contact-hero-container{
    max-width:950px;
}

/* BADGE */

.contact-badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:
    14px 22px;

    border-radius:999px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    margin-bottom:35px;
}

.contact-badge-dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#fbbf24;

    animation:pulse 1.5s infinite;
}

.contact-badge p{

    color:#fbbf24;

    font-size:.75rem;

    font-weight:800;

    letter-spacing:3px;
}

/* TITLE */

.contact-title{

    font-size:
    clamp(3rem,8vw,6rem);

    color:white;

    font-weight:800;

    line-height:1.05;

    margin-bottom:25px;
}

.contact-title span{
    color:#fbbf24;
}

/* DESCRIPTION */

.contact-description{

    color:
    rgba(255,255,255,.72);

    line-height:1.9;

    font-size:1.1rem;

    max-width:760px;

    margin:auto;
}

/* SERVICES */

.contact-services-section{

    padding:
    100px 8%;
}

.contact-services-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;
}

.contact-service-card{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:32px;

    padding:40px;

    backdrop-filter:blur(20px);

    transition:.45s ease;
}

.contact-service-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(251,191,36,.25);
}

/* ICONS */

.contact-service-icon{

    width:75px;
    height:75px;

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.contact-service-icon i{

    width:32px;
    height:32px;
}

.emerald{
    background:rgba(16,185,129,.12);
    color:#10b981;
}

.amber{
    background:rgba(251,191,36,.12);
    color:#fbbf24;
}

.blue{
    background:rgba(59,130,246,.12);
    color:#3b82f6;
}

/* CARD TEXT */

.contact-service-card h3{

    color:white;

    margin-bottom:18px;

    font-size:1.35rem;
}

.contact-service-card p{

    color:
    rgba(255,255,255,.68);

    line-height:1.9;
}

/* MISSION */

.contact-mission-section{

    padding:
    40px 8% 120px;
}

.contact-mission-wrapper{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(350px,1fr));

    gap:40px;

    align-items:center;
}

.contact-mission-content{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    padding:50px;

    border-radius:40px;

    backdrop-filter:blur(20px);
}

.contact-mission-content span{

    color:#fbbf24;

    letter-spacing:3px;

    font-size:.8rem;

    font-weight:800;
}

.contact-mission-content h2{

    color:white;

    font-size:
    clamp(2.5rem,6vw,4rem);

    margin:
    20px 0;
}

.contact-mission-content p{

    color:
    rgba(255,255,255,.68);

    line-height:1.9;

    margin-bottom:35px;
}

/* POINTS */

.mission-points{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.mission-points div{

    display:flex;
    align-items:center;

    gap:14px;

    color:white;
}

.mission-points i{
    color:#10b981;
}

/* QUOTE */

.contact-quote-box{

    background:
    linear-gradient(
    135deg,
    #064635,
    #042f24
    );

    border-radius:40px;

    padding:60px;

    position:relative;

    overflow:hidden;
}

.quote-icon{

    width:60px;
    height:60px;

    color:#10b981;

    opacity:.25;

    margin-bottom:30px;
}

.contact-quote-box p{

    color:white;

    font-size:1.3rem;

    line-height:1.8;

    margin-bottom:30px;
}

.contact-quote-box span{

    color:#10b981;

    font-weight:700;
}

/* FAQ */

.contact-faq-section{

    padding:
    0 8% 120px;
}

.faq-header{

    text-align:center;

    margin-bottom:60px;
}

.faq-header span{

    color:#fbbf24;

    letter-spacing:3px;

    font-size:.8rem;

    font-weight:800;
}

.faq-header h2{

    color:white;

    font-size:
    clamp(2.5rem,6vw,4rem);

    margin-top:20px;
}

.faq-wrapper{

    max-width:900px;

    margin:auto;

    display:flex;
    flex-direction:column;

    gap:20px;
}

/* FAQ CARD */

.faq-card{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:28px;

    padding:30px;

    backdrop-filter:blur(20px);
}

.faq-card summary{

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:white;

    cursor:pointer;

    font-weight:700;

    list-style:none;
}

.faq-card p{

    color:
    rgba(255,255,255,.68);

    line-height:1.9;

    margin-top:25px;
}

/* CTA */

.contact-cta-section{

    padding:
    0 8% 120px;
}

.contact-cta-box{

    max-width:1000px;

    margin:auto;

    text-align:center;

    padding:80px;

    border-radius:40px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);
}

.contact-cta-box span{

    color:#fbbf24;

    letter-spacing:3px;

    font-size:.8rem;

    font-weight:800;
}

.contact-cta-box h2{

    color:white;

    font-size:
    clamp(2.5rem,6vw,4rem);

    margin:
    25px 0 45px;
}

/* BUTTONS */

.contact-cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.contact-primary-btn,
.contact-secondary-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:
    22px 40px;

    border-radius:22px;

    text-decoration:none;

    font-weight:800;

    transition:.4s ease;
}

.contact-primary-btn{

    background:#10b981;

    color:white;
}

.contact-primary-btn:hover{

    transform:
    translateY(-6px)
    scale(1.03);
}

.contact-secondary-btn{

    border:
    1px solid rgba(255,255,255,.12);

    color:white;

    background:
    rgba(255,255,255,.04);
}

.contact-secondary-btn:hover{

    background:
    rgba(255,255,255,.08);

    transform:
    translateY(-6px);
}

/* RESPONSIVE */

@media(max-width:768px){

    .contact-hero-section,
    .contact-services-section,
    .contact-mission-section,
    .contact-faq-section,
    .contact-cta-section{

        padding-left:25px;
        padding-right:25px;
    }

    .contact-mission-content,
    .contact-quote-box,
    .contact-cta-box{

        padding:35px 25px;
    }

}
/* ==================================================
   PREMIUM PRICING PAGE
================================================== */

.premium-pricing-page{

    background:
    linear-gradient(
    180deg,
    #02140f,
    #052e24
    );

    overflow-x:hidden;
}

/* GLOWS */

.pricing-blur{

    position:fixed;

    border-radius:50%;

    filter:blur(140px);

    opacity:.12;

    z-index:-1;
}

.blur-left{

    width:400px;
    height:400px;

    background:#10b981;

    top:-150px;
    left:-120px;
}

.blur-right{

    width:450px;
    height:450px;

    background:#fbbf24;

    bottom:-200px;
    right:-200px;
}

/* HERO */

.premium-pricing-hero{

    min-height:70vh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:
    140px 8% 100px;
}

.premium-pricing-header{

    max-width:900px;
}

/* BADGE */

.premium-badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:
    14px 22px;

    border-radius:999px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    color:#fbbf24;

    font-size:.75rem;

    font-weight:800;

    letter-spacing:3px;

    margin-bottom:35px;

    backdrop-filter:blur(20px);
}

.premium-badge span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#fbbf24;

    animation:pulse 1.5s infinite;
}

/* TITLE */

.premium-pricing-header h1{

    font-size:
    clamp(3rem,8vw,6rem);

    color:white;

    line-height:1.05;

    font-weight:800;

    margin-bottom:25px;
}

.premium-pricing-header h1 span{
    color:#fbbf24;
}

/* DESCRIPTION */

.premium-pricing-header p{

    color:
    rgba(255,255,255,.72);

    line-height:1.9;

    font-size:1.1rem;

    max-width:760px;

    margin:auto;
}

/* SECTION */

.premium-pricing-section{

    padding:
    80px 8% 120px;
}

/* GRID */

.premium-pricing-grid{

    display:grid;

    grid-template-columns:
    1.2fr .8fr;

    gap:40px;

    align-items:stretch;
}

/* LEFT */

.premium-pricing-left{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:40px;

    padding:60px;

    backdrop-filter:blur(20px);
}

/* MINI BADGE */

.pricing-mini-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:
    12px 20px;

    border-radius:999px;

    background:
    rgba(251,191,36,.08);

    color:#fbbf24;

    font-size:.75rem;

    font-weight:800;

    margin-bottom:30px;
}

.pricing-mini-badge i{
    width:16px;
    height:16px;
}

/* TEXT */

.premium-pricing-left h2{

    color:white;

    font-size:
    clamp(2.5rem,6vw,4rem);

    margin-bottom:20px;
}

.pricing-lead{

    color:
    rgba(255,255,255,.68);

    line-height:1.9;

    margin-bottom:50px;
}

/* FEATURES */

.premium-feature-list{

    display:flex;

    flex-direction:column;

    gap:30px;
}

.premium-feature-item{

    display:flex;

    gap:20px;

    align-items:flex-start;

    padding-bottom:25px;

    border-bottom:
    1px solid rgba(255,255,255,.06);

    transition:.4s ease;
}

.premium-feature-item:hover{

    transform:translateX(10px);
}

/* ICON */

.feature-icon{

    width:65px;
    height:65px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}

.feature-icon i{

    width:28px;
    height:28px;
}

/* COLORS */

.emerald{
    background:rgba(16,185,129,.12);
    color:#10b981;
}

.blue{
    background:rgba(59,130,246,.12);
    color:#3b82f6;
}

.orange{
    background:rgba(249,115,22,.12);
    color:#f97316;
}

.purple{
    background:rgba(168,85,247,.12);
    color:#a855f7;
}

/* ITEM TEXT */

.premium-feature-item h4{

    color:white;

    margin-bottom:10px;
}

.premium-feature-item p{

    color:
    rgba(255,255,255,.65);

    line-height:1.8;
}

/* PRICE CARD */

.premium-price-card{

    background:
    linear-gradient(
    145deg,
    #0b6623,
    #064635
    );

    border-radius:40px;

    padding:60px 45px;

    text-align:center;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 30px 80px rgba(0,0,0,.25);
}

/* FLOATING */

.pricing-floating-box{

    position:absolute;

    top:25px;
    right:25px;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.12);

    border-radius:20px;

    padding:16px;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

    backdrop-filter:blur(20px);

    animation:
    float 3s ease-in-out infinite;
}

.pricing-floating-box i{

    width:24px;
    height:24px;

    color:white;
}

.pricing-floating-box span{

    color:white;

    font-size:.7rem;

    font-weight:700;

    line-height:1.4;
}

/* LABEL */

.price-label{

    color:
    rgba(255,255,255,.72);

    letter-spacing:4px;

    font-size:.8rem;

    font-weight:800;
}

/* PRICE */

.premium-price-display{

    display:flex;

    align-items:flex-start;

    justify-content:center;

    color:white;

    margin:
    25px 0 45px;
}

.premium-price-display small{

    font-size:2rem;

    margin-top:18px;
}

.premium-price-display h3{

    font-size:5rem;

    font-weight:900;

    line-height:1;
}

/* BENEFITS */

.premium-benefits{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:45px;

    text-align:left;
}

.premium-benefits div{

    display:flex;

    align-items:center;

    gap:12px;

    color:
    rgba(255,255,255,.85);

    font-weight:600;
}

.premium-benefits i{
    color:#10b981;
}

/* BUTTON */

.premium-pricing-btn{

    width:100%;

    display:flex;

    align-items:center;
    justify-content:center;

    gap:12px;

    padding:
    22px;

    border-radius:22px;

    background:white;

    color:#064635;

    text-decoration:none;

    font-weight:900;

    transition:.4s ease;
}

.premium-pricing-btn:hover{

    background:#f0fdf4;

    transform:
    translateY(-6px)
    scale(1.02);
}

/* FOOTER */

.pricing-bottom-text{

    color:
    rgba(255,255,255,.4);

    font-size:.75rem;

    margin-top:25px;
}

/* FLOAT */

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }

}

/* RESPONSIVE */

@media(max-width:992px){

    .premium-pricing-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .premium-pricing-hero,
    .premium-pricing-section{

        padding-left:25px;
        padding-right:25px;
    }

    .premium-pricing-left,
    .premium-price-card{

        padding:40px 25px;
    }

    .pricing-floating-box{
        display:none;
    }

}
/* ==================================================
   OTHER SERVICES PAGE
================================================== */

.other-services-page{

    background:
    linear-gradient(
    180deg,
    #02140f,
    #052e24
    );

    overflow-x:hidden;
}

/* GLOW */

.other-services-glow{

    position:fixed;

    border-radius:50%;

    filter:blur(140px);

    opacity:.12;

    z-index:-1;
}

/* HERO */

.other-services-hero{

    min-height:70vh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:
    140px 8% 100px;
}

.other-services-header{

    max-width:900px;
}

/* BADGE */

.other-services-badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:
    14px 22px;

    border-radius:999px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    color:#fbbf24;

    font-size:.75rem;

    font-weight:800;

    letter-spacing:3px;

    margin-bottom:35px;

    backdrop-filter:blur(20px);
}

.other-services-badge span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#fbbf24;

    animation:pulse 1.5s infinite;
}

/* TITLE */

.other-services-header h1{

    font-size:
    clamp(3rem,8vw,6rem);

    color:white;

    line-height:1.05;

    font-weight:800;

    margin-bottom:25px;
}

.other-services-header h1 span{
    color:#fbbf24;
}

/* DESCRIPTION */

.other-services-header p{

    color:
    rgba(255,255,255,.72);

    line-height:1.9;

    font-size:1.1rem;

    max-width:760px;

    margin:auto;
}

/* SECTION */

.other-services-section{

    padding:
    80px 8% 120px;
}

/* GRID */

.other-services-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

/* CARD */

.other-service-card{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:36px;

    padding:40px;

    backdrop-filter:blur(20px);

    transition:.45s ease;

    display:flex;

    flex-direction:column;
}

.other-service-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(251,191,36,.25);
}

/* ICON */

.other-icon{

    width:75px;
    height:75px;

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.other-icon i{

    width:32px;
    height:32px;
}

/* COLORS */

.emerald{
    background:rgba(16,185,129,.12);
    color:#10b981;
}

.amber{
    background:rgba(251,191,36,.12);
    color:#fbbf24;
}

.purple{
    background:rgba(168,85,247,.12);
    color:#a855f7;
}

.cyan{
    background:rgba(6,182,212,.12);
    color:#06b6d4;
}

/* TEXT */

.other-service-card h3{

    color:white;

    font-size:1.5rem;

    margin-bottom:18px;
}

.other-service-card p{

    color:
    rgba(255,255,255,.68);

    line-height:1.9;

    margin-bottom:35px;

    flex-grow:1;
}

/* LIST */

.other-service-card ul{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:35px;
}

.other-service-card ul li{

    display:flex;

    align-items:center;

    gap:12px;

    color:
    rgba(255,255,255,.82);

    font-weight:600;
}

.other-service-card ul li i{

    width:18px;
    height:18px;
}

/* BUTTON */

.other-service-btn{

    display:flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    padding:
    18px 22px;

    border-radius:18px;

    text-decoration:none;

    font-weight:800;

    transition:.4s ease;

    margin-top:auto;
}

.other-service-btn:hover{

    transform:
    translateY(-5px)
    scale(1.02);
}

/* BUTTON COLORS */

.emerald-btn{
    background:#10b981;
    color:white;
}

.amber-btn{
    background:#fbbf24;
    color:#02140f;
}

.purple-btn{
    background:#a855f7;
    color:white;
}

.cyan-btn{
    background:#06b6d4;
    color:white;
}

/* CTA */

.other-services-cta{

    padding:
    0 8% 120px;
}

.other-services-cta-box{

    max-width:1000px;

    margin:auto;

    text-align:center;

    padding:80px;

    border-radius:40px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);
}

.other-services-cta-box span{

    color:#fbbf24;

    letter-spacing:3px;

    font-size:.8rem;

    font-weight:800;
}

.other-services-cta-box h2{

    color:white;

    font-size:
    clamp(2.5rem,6vw,4rem);

    margin:
    25px 0;
}

.other-services-cta-box p{

    color:
    rgba(255,255,255,.72);

    line-height:1.9;

    max-width:760px;

    margin:
    0 auto 45px;
}

/* MAIN BTN */

.other-services-main-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:
    22px 45px;

    border-radius:22px;

    background:#10b981;

    color:white;

    text-decoration:none;

    font-weight:800;

    transition:.4s ease;
}

.other-services-main-btn:hover{

    transform:
    translateY(-6px)
    scale(1.03);
}

/* RESPONSIVE */

@media(max-width:768px){

    .other-services-hero,
    .other-services-section,
    .other-services-cta{

        padding-left:25px;
        padding-right:25px;
    }

    .other-service-card,
    .other-services-cta-box{

        padding:35px 25px;
    }

}
/* ==================================================
   PREMIUM CONTACT PAGE
================================================== */

.premium-contact-page{

    background:
    linear-gradient(
    180deg,
    #02140f,
    #052e24
    );

    overflow-x:hidden;
}

/* GLOW */

.contact-blur{

    position:fixed;

    border-radius:50%;

    filter:blur(140px);

    opacity:.12;

    z-index:-1;
}

/* HERO */

.premium-contact-hero{

    min-height:70vh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:
    140px 8% 100px;
}

.premium-contact-header{

    max-width:950px;
}

/* STATUS */

.business-status{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:
    14px 22px;

    border-radius:999px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    color:#10b981;

    font-size:.75rem;

    font-weight:800;

    letter-spacing:2px;

    margin-bottom:35px;

    backdrop-filter:blur(20px);
}

.status-dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#10b981;

    animation:pulse 1.5s infinite;
}

/* TITLE */

.premium-contact-header h1{

    font-size:
    clamp(3rem,8vw,6rem);

    color:white;

    line-height:1.05;

    font-weight:800;

    margin-bottom:25px;
}

.premium-contact-header h1 span{
    color:#fbbf24;
}

/* DESCRIPTION */

.premium-contact-header p{

    color:
    rgba(255,255,255,.72);

    line-height:1.9;

    font-size:1.1rem;

    max-width:760px;

    margin:auto;
}

/* SECTION */

.premium-contact-section{

    padding:
    80px 8% 120px;
}

/* GRID */

.premium-contact-grid{

    display:grid;

    grid-template-columns:
    1.2fr .8fr;

    gap:40px;
}

/* LEFT */

.premium-contact-left{

    display:flex;

    flex-direction:column;

    gap:30px;
}

/* CARD */

.contact-info-card,
.contact-mini-card,
.faq-box{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:36px;

    backdrop-filter:blur(20px);
}

/* LOCATION */

.contact-info-card{

    display:flex;

    gap:25px;

    padding:40px;

    transition:.4s ease;
}

.contact-info-card:hover{

    transform:translateY(-8px);
}

/* ICON */

.contact-icon,
.mini-icon{

    width:70px;
    height:70px;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}

.contact-icon i,
.mini-icon i{

    width:30px;
    height:30px;
}

/* COLORS */

.emerald{
    background:rgba(16,185,129,.12);
    color:#10b981;
}

.blue{
    background:rgba(59,130,246,.12);
    color:#3b82f6;
}

.orange{
    background:rgba(249,115,22,.12);
    color:#f97316;
}

/* TEXT */

.contact-info-card h3{

    color:white;

    font-size:1.5rem;

    margin-bottom:15px;
}

.contact-info-card p{

    color:
    rgba(255,255,255,.68);

    line-height:1.9;

    margin-bottom:20px;
}

.contact-info-card a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#10b981;

    font-weight:700;

    text-decoration:none;
}

/* MINI GRID */

.contact-mini-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;
}

/* MINI CARD */

.contact-mini-card{

    padding:35px;

    cursor:pointer;

    transition:.4s ease;
}

.contact-mini-card:hover{

    transform:
    translateY(-8px);

    border-color:
    rgba(251,191,36,.25);
}

/* COPY */

.copy-status{

    display:block;

    color:#fbbf24;

    font-size:.7rem;

    font-weight:800;

    letter-spacing:2px;

    margin:
    20px 0 12px;
}

.contact-mini-card h4{

    color:white;

    margin-bottom:10px;
}

.contact-mini-card p{

    color:
    rgba(255,255,255,.68);

    line-height:1.7;
}

/* FAQ */

.faq-box{

    padding:40px;
}

.faq-box h3{

    color:white;

    font-size:1.5rem;

    margin-bottom:30px;
}

/* FAQ ITEM */

.faq-list{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.faq-item{

    border-bottom:
    1px solid rgba(255,255,255,.06);

    padding-bottom:20px;
}

.faq-item summary{

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    color:white;

    font-weight:700;

    list-style:none;
}

.faq-item summary i{

    width:18px;
    height:18px;

    transition:.3s ease;
}

.faq-item[open] summary i{

    transform:rotate(180deg);
}

.faq-item p{

    color:
    rgba(255,255,255,.68);

    line-height:1.9;

    margin-top:18px;
}

/* RIGHT */

.premium-contact-right{

    background:
    linear-gradient(
    145deg,
    #0b6623,
    #064635
    );

    border-radius:40px;

    padding:60px 45px;

    position:sticky;

    top:40px;

    height:fit-content;

    box-shadow:
    0 30px 80px rgba(0,0,0,.25);
}

/* BADGE */

.priority-badge{

    display:inline-block;

    padding:
    10px 18px;

    border-radius:999px;

    background:
    rgba(255,255,255,.08);

    color:#10b981;

    font-size:.75rem;

    font-weight:800;

    letter-spacing:2px;

    margin-bottom:25px;
}

/* TEXT */

.premium-contact-right h2{

    color:white;

    font-size:
    clamp(2rem,5vw,3rem);

    margin-bottom:20px;
}

.premium-contact-right p{

    color:
    rgba(255,255,255,.72);

    line-height:1.9;

    margin-bottom:40px;
}

/* BUTTON */

.premium-whatsapp-btn{

    width:100%;

    display:flex;

    align-items:center;
    justify-content:center;

    gap:14px;

    padding:
    22px;

    border-radius:24px;

    background:#10b981;

    color:white;

    text-decoration:none;

    font-weight:800;

    transition:.4s ease;
}

.premium-whatsapp-btn img{

    width:28px;
    height:28px;
}

.premium-whatsapp-btn:hover{

    transform:
    translateY(-6px)
    scale(1.02);
}

/* SOCIALS */

.contact-socials{

    margin-top:60px;

    padding-top:40px;

    border-top:
    1px solid rgba(255,255,255,.08);

    text-align:center;
}

.contact-socials p{

    color:
    rgba(255,255,255,.5);

    letter-spacing:3px;

    font-size:.75rem;

    font-weight:800;

    margin-bottom:25px;
}

.contact-socials div{

    display:flex;

    justify-content:center;

    gap:20px;
}

.contact-socials a{

    width:55px;
    height:55px;

    border-radius:18px;

    background:
    rgba(255,255,255,.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;

    transition:.4s ease;
}

.contact-socials a:hover{

    transform:
    translateY(-5px);

    background:#10b981;
}

/* RESPONSIVE */

@media(max-width:992px){

    .premium-contact-grid{
        grid-template-columns:1fr;
    }

    .premium-contact-right{
        position:relative;
        top:0;
    }

}

@media(max-width:768px){

    .premium-contact-hero,
    .premium-contact-section{

        padding-left:25px;
        padding-right:25px;
    }

    .contact-info-card,
    .faq-box,
    .premium-contact-right{

        padding:35px 25px;
    }

    .contact-info-card{
        flex-direction:column;
    }

}
/* ==================================================
   PREMIUM AUTH PAGE
================================================== */

.auth-body{

    font-family:
    'Plus Jakarta Sans',
    sans-serif;

    background:
    linear-gradient(
    135deg,
    #02140f 0%,
    #052e24 40%,
    #02140f 100%
    );

    min-height:100vh;

    overflow-x:hidden;

    position:relative;
}

/* BACKGROUND GLOW */

.auth-body::before{

    content:"";

    position:fixed;

    width:500px;
    height:500px;

    background:
    radial-gradient(
    circle,
    rgba(16,185,129,.15),
    transparent 70%
    );

    top:-150px;
    left:-120px;

    filter:blur(80px);

    z-index:-1;
}

.auth-body::after{

    content:"";

    position:fixed;

    width:450px;
    height:450px;

    background:
    radial-gradient(
    circle,
    rgba(251,191,36,.12),
    transparent 70%
    );

    bottom:-150px;
    right:-120px;

    filter:blur(90px);

    z-index:-1;
}

/* GRID */

.auth-grid{

    min-height:100vh;

    display:grid;

    grid-template-columns:
    1fr 1fr;
}

/* LEFT SIDE */

.auth-left{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:
    80px 7%;

    color:white;

    overflow:hidden;
}

/* LEFT OVERLAY */

.auth-left::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(16,185,129,.08),
    transparent,
    rgba(251,191,36,.05)
    );

    z-index:0;
}

/* LOGO */

.auth-left h1{

    font-size:2rem;

    letter-spacing:-1px;
}

/* TITLE */

.auth-left h2{

    font-size:
    clamp(3rem,7vw,5rem);

    line-height:1.05;

    background:
    linear-gradient(
    90deg,
    #ffffff,
    #d1fae5
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

/* FEATURE CARDS */

.auth-left .grid > div{

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.45s ease;

    position:relative;

    overflow:hidden;
}

.auth-left .grid > div::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    145deg,
    rgba(255,255,255,.06),
    transparent
    );

    opacity:0;

    transition:.4s ease;
}

.auth-left .grid > div:hover{

    transform:
    translateY(-8px);

    border-color:
    rgba(16,185,129,.25);
}

.auth-left .grid > div:hover::before{

    opacity:1;
}

/* RIGHT SIDE */

.auth-grid > div:last-child{

    background:
    rgba(255,255,255,.92);

    backdrop-filter:blur(30px);

    position:relative;
}

/* LOGIN CARD */

.auth-grid .shadow-2xl{

    background:white;

    border:
    1px solid rgba(229,231,235,.8);

    box-shadow:
    0 30px 80px rgba(0,0,0,.12);

    position:relative;

    overflow:hidden;
}

.auth-grid .shadow-2xl::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    145deg,
    rgba(16,185,129,.03),
    transparent
    );

    pointer-events:none;
}

/* LOCK ICON */

.glow{

    position:relative;

    overflow:hidden;
}

.glow::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
    circle,
    rgba(16,185,129,.25),
    transparent 70%
    );

    animation:
    pulseGlow 3s infinite;
}

/* SOCIAL BUTTONS */

[data-provider]{

    position:relative;

    overflow:hidden;

    transition:.35s ease;
}

[data-provider]::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    145deg,
    rgba(16,185,129,.04),
    transparent
    );

    opacity:0;

    transition:.35s ease;
}

[data-provider]:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);
}

[data-provider]:hover::before{

    opacity:1;
}

/* FORM */

#login-form input{

    background:
    rgba(249,250,251,.8);

    transition:.35s ease;
}

#login-form input:focus{

    transform:translateY(-2px);

    background:white;

    box-shadow:
    0 10px 30px rgba(16,185,129,.08);
}

/* BUTTON */

#login-form button{

    position:relative;

    overflow:hidden;

    transition:.4s ease;
}

#login-form button::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(255,255,255,.08),
    transparent
    );

    transform:
    translateX(-100%);

    transition:.6s ease;
}

#login-form button:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 20px 40px rgba(16,185,129,.2);
}

#login-form button:hover::before{

    transform:
    translateX(100%);
}

/* ALERT */

.auth-notice{

    padding:
    16px 20px;

    border-radius:18px;

    font-size:.9rem;

    font-weight:600;
}

.auth-notice.success{

    background:
    rgba(16,185,129,.1);

    color:#047857;

    border:
    1px solid rgba(16,185,129,.2);
}

.auth-notice.error{

    background:
    rgba(239,68,68,.1);

    color:#b91c1c;

    border:
    1px solid rgba(239,68,68,.2);
}

/* ANIMATIONS */

@keyframes pulseGlow{

    0%{
        opacity:.3;
        transform:scale(1);
    }

    50%{
        opacity:.6;
        transform:scale(1.1);
    }

    100%{
        opacity:.3;
        transform:scale(1);
    }

}

/* RESPONSIVE */

@media(max-width:1100px){

    .auth-grid{

        grid-template-columns:1fr;
    }

    .auth-left{

        min-height:60vh;
    }

}

@media(max-width:768px){

    .auth-left{

        padding:
        70px 25px;
    }

    .auth-grid > div:last-child{

        padding:
        40px 25px;
    }

    .auth-left h2{

        font-size:3rem;
    }

}
/* ==================================================
   PREMIUM SIGNUP PAGE
================================================== */

.auth-body{

    font-family:
    'Plus Jakarta Sans',
    sans-serif;

    background:
    linear-gradient(
    135deg,
    #02140f 0%,
    #052e24 50%,
    #02140f 100%
    );

    overflow-x:hidden;

    position:relative;
}

/* BACKGROUND GLOWS */

.auth-body::before{

    content:"";

    position:fixed;

    width:500px;
    height:500px;

    background:
    radial-gradient(
    circle,
    rgba(16,185,129,.14),
    transparent 70%
    );

    top:-160px;
    left:-140px;

    filter:blur(100px);

    z-index:-1;
}

.auth-body::after{

    content:"";

    position:fixed;

    width:450px;
    height:450px;

    background:
    radial-gradient(
    circle,
    rgba(251,191,36,.12),
    transparent 70%
    );

    bottom:-180px;
    right:-140px;

    filter:blur(110px);

    z-index:-1;
}

/* GRID */

.auth-grid{

    min-height:100vh;

    display:grid;

    grid-template-columns:
    1fr 1fr;
}

/* LEFT */

.auth-left{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:
    80px 7%;

    color:white;

    overflow:hidden;
}

/* GRID BG */

.bg-grid{

    position:absolute;

    inset:0;

    background-image:
    linear-gradient(
    rgba(255,255,255,.03) 1px,
    transparent 1px
    ),
    linear-gradient(
    90deg,
    rgba(255,255,255,.03) 1px,
    transparent 1px
    );

    background-size:
    40px 40px;

    mask-image:
    radial-gradient(
    circle,
    white,
    transparent 85%
    );
}

/* LOGO */

.auth-logo{

    font-size:2rem;

    font-weight:900;

    text-transform:uppercase;

    letter-spacing:-1px;
}

.auth-logo-dot{

    display:inline-block;

    width:10px;
    height:10px;

    border-radius:50%;

    background:#10b981;

    margin-left:4px;
}

.auth-tagline{

    color:
    rgba(255,255,255,.55);

    text-transform:uppercase;

    letter-spacing:5px;

    font-size:.75rem;

    font-weight:700;

    margin-top:10px;
}

/* HEADLINE */

.auth-headline{

    font-size:
    clamp(3rem,7vw,5rem);

    font-weight:900;

    line-height:1.05;

    margin-bottom:25px;

    background:
    linear-gradient(
    90deg,
    #ffffff,
    #d1fae5
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

/* DESCRIPTION */

.auth-description{

    color:
    rgba(255,255,255,.72);

    line-height:1.9;

    font-size:1.05rem;

    max-width:520px;

    margin-bottom:50px;
}

/* FEATURES */

.auth-feature-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:22px;
}

/* CARD */

.auth-feature-card{

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:28px;

    padding:30px;

    backdrop-filter:blur(20px);

    transition:.45s ease;

    position:relative;

    overflow:hidden;
}

.auth-feature-card:hover{

    transform:
    translateY(-8px);

    border-color:
    rgba(16,185,129,.2);
}

.auth-feature-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    145deg,
    rgba(255,255,255,.06),
    transparent
    );

    opacity:0;

    transition:.4s ease;
}

.auth-feature-card:hover::before{

    opacity:1;
}

/* FEATURE TEXT */

.auth-feature-icon{

    width:52px;

    height:52px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border:1px solid rgba(248,195,58,.34);

    border-radius:16px;

    background:linear-gradient(135deg,rgba(248,195,58,.20),rgba(16,185,129,.12));

    color:#f8c33a;

    margin-bottom:20px;
}

.auth-feature-icon svg,
.auth-card-icon{

    width:28px;

    height:28px;

    stroke-width:2.4;
}

.auth-feature-title{

    font-size:1.1rem;

    font-weight:800;

    margin-bottom:10px;
}

.auth-feature-desc{

    color:
    rgba(255,255,255,.65);

    line-height:1.7;

    font-size:.95rem;
}

/* RIGHT SIDE */

.auth-grid > div:last-child{

    background:
    rgba(255,255,255,.95);

    backdrop-filter:blur(30px);

    position:relative;
}

/* CARD */

.shadow-2xl{

    background:white;

    border:
    1px solid rgba(229,231,235,.85);

    box-shadow:
    0 30px 80px rgba(0,0,0,.12);

    overflow:hidden;

    position:relative;
}

.shadow-2xl::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    145deg,
    rgba(16,185,129,.03),
    transparent
    );

    pointer-events:none;
}

/* GLOW */

.glow{

    position:relative;

    overflow:hidden;
}

.glow::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
    circle,
    rgba(16,185,129,.22),
    transparent 70%
    );

    animation:
    pulseGlow 3s infinite;
}

/* GOOGLE BUTTON */

.social-signup-wrapper{

    margin-bottom:35px;
}

.premium-google-btn{

    width:100%;

    height:64px;

    border-radius:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    background:white;

    border:
    1px solid rgba(229,231,235,.9);

    position:relative;

    overflow:hidden;

    transition:.4s ease;

    font-weight:800;

    font-size:.95rem;

    color:#111827;
}

.premium-google-btn::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(16,185,129,.06),
    transparent
    );

    transform:
    translateX(-100%);

    transition:.7s ease;
}

.premium-google-btn:hover{

    transform:
    translateY(-5px);

    border-color:
    rgba(16,185,129,.25);

    box-shadow:
    0 20px 40px rgba(16,185,129,.08);
}

.premium-google-btn:hover::before{

    transform:
    translateX(100%);
}

.premium-google-btn img{

    width:24px;
    height:24px;
}

/* INPUTS */

#signup-form input{

    background:
    rgba(249,250,251,.85);

    transition:.35s ease;
}

#signup-form input:focus{

    transform:translateY(-2px);

    background:white;

    box-shadow:
    0 10px 30px rgba(16,185,129,.08);
}

/* BUTTON */

#signup-form button{

    transition:.4s ease;

    position:relative;

    overflow:hidden;
}

#signup-form button::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(255,255,255,.08),
    transparent
    );

    transform:
    translateX(-100%);

    transition:.7s ease;
}

#signup-form button:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 20px 40px rgba(16,185,129,.18);
}

#signup-form button:hover::before{

    transform:
    translateX(100%);
}

/* FLOAT ANIMATION */

.float{

    animation:
    authFloat 4s ease-in-out infinite;
}

/* ANIMATIONS */

@keyframes authFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes pulseGlow{

    0%{
        opacity:.3;
        transform:scale(1);
    }

    50%{
        opacity:.6;
        transform:scale(1.1);
    }

    100%{
        opacity:.3;
        transform:scale(1);
    }

}

/* RESPONSIVE */

@media(max-width:1100px){

    .auth-grid{

        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .auth-left{

        padding:
        70px 25px;
    }

    .auth-grid > div:last-child{

        padding:
        40px 25px;
    }

    .auth-feature-grid{

        grid-template-columns:1fr;
    }

    .auth-headline{

        font-size:3rem;
    }

}
/* =========================================
   PREMIUM NRS TOPBAR CSS
   Ultra Modern Government Banner UI
========================================= */

:root {
    --nrs-primary: #10b981;
    --nrs-primary-dark: #059669;
    --nrs-dark: #07131f;
    --nrs-dark-2: #0d1b2a;
    --nrs-text: #e5eef7;
    --nrs-muted: #9fb3c8;
    --nrs-border: rgba(255,255,255,0.08);
    --nrs-shadow: 0 8px 30px rgba(0,0,0,0.25);
    --nrs-radius: 18px;
    --nrs-transition: all 0.35s ease;
    --nrs-glass: rgba(255,255,255,0.06);
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* TOPBAR FONT */
.nrs-topbar{
    font-family: "Inter", "Segoe UI", sans-serif;
    background:#f4f7fb;
}

/* =========================================
   TOPBAR CONTAINER
========================================= */

.nrs-topbar{
    width:100%;
    position:relative;
    overflow:hidden;
    z-index:999;
    background:
        linear-gradient(
            135deg,
            #07131f 0%,
            #0d1b2a 35%,
            #0f172a 100%
        );
    border-bottom:1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--nrs-shadow);
}

/* Animated Glow */
.nrs-topbar::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:radial-gradient(circle, rgba(16,185,129,0.25), transparent 70%);
    top:-220px;
    left:-100px;
    animation:nrsFloat 8s linear infinite;
    pointer-events:none;
}

.nrs-topbar::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:radial-gradient(circle, rgba(59,130,246,0.18), transparent 70%);
    bottom:-180px;
    right:-80px;
    animation:nrsFloatReverse 10s linear infinite;
    pointer-events:none;
}

/* =========================================
   INNER WRAPPER
========================================= */

.nrs-topbar-inner{
    max-width:1500px;
    margin:auto;
    padding:16px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    position:relative;
    z-index:2;
}

/* =========================================
   SECTIONS
========================================= */

.nrs-left,
.nrs-right,
.nrs-contact{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--nrs-text);
    position:relative;
}

.nrs-left,
.nrs-right{
    flex:1;
    min-width:0;
}

.nrs-contact{
    white-space:nowrap;
}

/* =========================================
   GLASS CARD EFFECT
========================================= */

.nrs-left,
.nrs-right{
    padding:14px 18px;
    border-radius:var(--nrs-radius);
    background:var(--nrs-glass);
    border:1px solid var(--nrs-border);
    transition:var(--nrs-transition);
}

.nrs-left:hover,
.nrs-right:hover{
    transform:translateY(-2px);
    background:rgba(255,255,255,0.08);
    border-color:rgba(16,185,129,0.25);
    box-shadow:
        0 12px 30px rgba(0,0,0,0.25),
        0 0 0 1px rgba(16,185,129,0.15);
}

/* =========================================
   ICONS
========================================= */

.nrs-icon,
.nrs-lock{
    min-width:42px;
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(16,185,129,0.12);
    border:1px solid rgba(16,185,129,0.25);
    transition:var(--nrs-transition);
}

.nrs-left:hover .nrs-icon,
.nrs-right:hover .nrs-lock{
    transform:scale(1.08) rotate(4deg);
    background:rgba(16,185,129,0.2);
}

/* =========================================
   TYPOGRAPHY
========================================= */

.nrs-bold{
    font-size:14px;
    font-weight:700;
    line-height:1.5;
    color:#fff;
}

.nrs-desc{
    font-size:13px;
    line-height:1.7;
    color:var(--nrs-muted);
}

.nrs-green{
    color:var(--nrs-primary);
    font-weight:700;
}

.nrs-emoji{
    font-size:14px;
}

/* =========================================
   LINKS
========================================= */

.nrs-link{
    color:#7dd3fc;
    text-decoration:none;
    position:relative;
    transition:var(--nrs-transition);
}

.nrs-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-2px;
    width:0%;
    height:1px;
    background:#7dd3fc;
    transition:var(--nrs-transition);
}

.nrs-link:hover{
    color:#fff;
}

.nrs-link:hover::after{
    width:100%;
}

/* =========================================
   REPORT BUTTON
========================================= */

.nrs-report-btn{
    padding:10px 18px;
    border-radius:999px;
    background:linear-gradient(
        135deg,
        var(--nrs-primary),
        var(--nrs-primary-dark)
    );
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    letter-spacing:0.3px;
    transition:var(--nrs-transition);
    box-shadow:
        0 8px 20px rgba(16,185,129,0.35);
}

.nrs-report-btn:hover{
    transform:translateY(-3px) scale(1.04);
    box-shadow:
        0 14px 28px rgba(16,185,129,0.45);
}

.nrs-dot{
    color:#d1fae5;
}

/* =========================================
   CONTACT AREA
========================================= */

.nrs-contact{
    padding-left:20px;
    border-left:1px solid rgba(255,255,255,0.08);
    font-size:13px;
    color:var(--nrs-muted);
}

.nrs-contact span,
.nrs-contact a{
    transition:var(--nrs-transition);
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes nrsFloat{
    0%{
        transform:translateX(0px) translateY(0px);
    }
    50%{
        transform:translateX(40px) translateY(20px);
    }
    100%{
        transform:translateX(0px) translateY(0px);
    }
}

@keyframes nrsFloatReverse{
    0%{
        transform:translateX(0px) translateY(0px);
    }
    50%{
        transform:translateX(-35px) translateY(-15px);
    }
    100%{
        transform:translateX(0px) translateY(0px);
    }
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */

@media (max-width:1200px){

    .nrs-topbar-inner{
        flex-wrap:wrap;
        gap:18px;
    }

    .nrs-contact{
        width:100%;
        justify-content:center;
        border-left:none;
        border-top:1px solid rgba(255,255,255,0.08);
        padding-top:15px;
        padding-left:0;
    }
}

@media (max-width:768px){

    .nrs-topbar-inner{
        padding:18px;
    }

    .nrs-left,
    .nrs-right{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        text-align:left;
    }

    .nrs-bold{
        font-size:13px;
    }

    .nrs-desc{
        font-size:12px;
    }

    .nrs-contact{
        flex-wrap:wrap;
        text-align:center;
        justify-content:center;
        line-height:1.8;
    }
}

@media (max-width:480px){

    .nrs-topbar-inner{
        padding:14px;
    }

    .nrs-left,
    .nrs-right{
        padding:14px;
        gap:10px;
    }

    .nrs-report-btn{
        width:100%;
        text-align:center;
    }

    .nrs-contact{
        font-size:12px;
    }
}/* =========================================
   EXACT NRS TOPBAR STRUCTURE
   PREMIUM RESPONSIVE VERSION
========================================= */

.nrs-top-header,
.nrs-dropdown-content{
    --primary:#10b981;
    --dark:#374151;
    --light:#e7efea;
    --text:#111827;
    --muted:#374151;
    --white:#ffffff;
    --transition:all .35s ease;
}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.nrs-top-header,
.nrs-dropdown-content{
    font-family:Inter, sans-serif;
}

/* =========================================
   TOP HEADER
========================================= */

.nrs-top-header{
    background:#374151;
    color:#fff;
    width:100%;
    font-size:14px;
}

.nrs-top-header-inner{
    max-width:1400px;
    margin:auto;
    padding:10px 24px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.nrs-top-left{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.nrs-top-left a{
    color:#fff;
    text-decoration:none;
}

.nrs-dropdown-btn{
    background:none;
    border:none;
    color:#fff;
    cursor:pointer;

    display:flex;
    align-items:center;
    gap:5px;

    font-size:14px;
}

.nrs-dropdown-btn svg{
    transition:var(--transition);
}

.nrs-dropdown-btn.active svg{
    transform:rotate(180deg);
}

/* RIGHT */

.nrs-top-right{
    display:flex;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.nrs-top-right a{
    color:#fff;
    text-decoration:none;
}

.nrs-report-btn{
    background:#dc2626;
    padding:7px 14px;
    border-radius:30px;

    font-size:13px;
    font-weight:600;

    transition:var(--transition);
}

.nrs-report-btn:hover{
    background:#b91c1c;
    transform:translateY(-2px);
}

.nrs-report-btn span{
    background:#10b981;
    padding:1px 6px;
    border-radius:10px;
    margin-left:2px;
}

.public-notice-left{
    gap:10px;
    line-height:1.5;
}

.public-notice-left strong{
    color:#ffffff;
    font-weight:900;
}

.public-notice-left span{
    color:#e5e7eb;
}

.public-notice-right .nrs-report-btn{
    background:#10b981;
    color:#052e1d;
    border-radius:8px;
    font-weight:900;
}

.public-notice-right .nrs-report-btn:hover{
    background:#34d399;
}

/* =========================================
   DROPDOWN CONTENT
========================================= */

.nrs-dropdown-content{
    background:#dfe8e2;
    overflow:hidden;

    max-height:500px;
    transition:max-height .5s ease;
}

.nrs-dropdown-content.collapsed{
    max-height:0;
}

/* INNER */

.nrs-dropdown-inner{
    max-width:1400px;
    margin:auto;

    padding:18px 24px;

    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:50px;
}

/* BOX */

.nrs-box{
    display:flex;
    align-items:flex-start;
    gap:14px;
    flex:1;
}

/* ICON */

.nrs-icon{
    min-width:18px;
    margin-top:4px;
}

.nrs-icon svg{
    width:18px;
    height:18px;
}

/* TEXT */

.nrs-box h4{
    font-size:15px;
    margin-bottom:6px;
    color:#111827;
    font-weight:700;
}

.nrs-box p{
    font-size:14px;
    line-height:1.7;
    color:#374151;
}

.nrs-box a{
    color:#047857;
    text-decoration:none;
    font-weight:600;
}

.nrs-box a:hover{
    text-decoration:underline;
}

.nrs-green{
    color:#059669;
    font-weight:700;
}

/* =========================================
   PREMIUM ANIMATION
========================================= */

.nrs-dropdown-content{
    animation:fadeIn .5s ease;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(-10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px){

    .nrs-dropdown-inner{
        flex-direction:column;
        gap:25px;
    }

    .nrs-top-header-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .nrs-top-right{
        width:100%;
        justify-content:flex-start;
    }
}

@media(max-width:768px){

    .nrs-top-header-inner,
    .nrs-dropdown-inner{
        padding:16px;
    }

    .nrs-top-right{
        gap:15px;
    }

    .nrs-box p{
        font-size:13px;
    }
}

@media(max-width:480px){

    .nrs-top-right{
        flex-direction:column;
        align-items:flex-start;
    }

    .nrs-report-btn{
        width:100%;
        text-align:center;
    }
}
/* =========================================
   FIXED COLLAPSIBLE DROPDOWN
========================================= */

.nrs-dropdown-content{

    background:#dfe8e2;

    overflow:hidden;

    max-height:500px;

    transition:
        max-height 0.5s ease,
        padding 0.4s ease;

    will-change:max-height;
}

/* Rotate Arrow */

.nrs-dropdown-btn svg{

    transition:transform 0.35s ease;
}

.nrs-dropdown-btn.active svg{

    transform:rotate(180deg);
}
/* =========================================
   DROPDOWN FIX
========================================= */

.nrs-dropdown-content{

    overflow:hidden;

    max-height:500px;

    transition:max-height 0.45s ease;
}

/* BUTTON */

.nrs-dropdown-btn{

    background:none;
    border:none;
    outline:none;
    cursor:pointer;

    display:flex;
    align-items:center;
    gap:6px;

    color:#fff;

    font-size:14px;
}

/* SVG */

.nrs-dropdown-btn svg{

    transition:transform 0.35s ease;

    transform-origin:center;
}
.cac-accredited-side-badge{
    position:fixed;
    right:18px;
    top:50%;
    z-index:9999;
    width:68px;
    min-height:250px;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:14px 8px;
    background:#064d2f;
    color:#ffffff;
    border:1px solid rgba(255,255,255,.18);
    box-shadow:0 18px 42px rgba(2,6,23,.22);
    text-decoration:none;
}

.cac-accredited-side-badge span{
    padding:5px 9px;
    background:#ffd400;
    color:#111827;
    font-size:.58rem;
    font-weight:900;
    max-width:56px;
    text-align:center;
    line-height:1.1;
}

.cac-accredited-side-badge strong{
    writing-mode:vertical-rl;
    transform:rotate(180deg);
    letter-spacing:.08em;
    font-size:.82rem;
    font-weight:900;
    text-align:center;
}

.cac-accredited-side-badge:hover{
    background:#043820;
}

.cac-accredited-page{
    min-height:100vh;
    background:#f5f8f6;
    color:#111827;
}

.cac-accredited-main{
    width:min(1120px,calc(100% - 32px));
    margin:0 auto;
    padding:56px 0;
}

.cac-accredited-hero{
    padding:42px;
    background:#064d2f;
    color:#ffffff;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 22px 60px rgba(2,6,23,.18);
}

.cac-accredited-badge{
    display:inline-flex;
    padding:9px 12px;
    border:1px solid rgba(255,255,255,.24);
    background:rgba(255,255,255,.1);
    font-weight:900;
    margin-bottom:18px;
}

.cac-accredited-hero h1{
    margin:0 0 14px;
    font-size:clamp(2rem,4vw,3.5rem);
    line-height:1.05;
}

.cac-accredited-hero p{
    max-width:820px;
    margin:0;
    color:rgba(255,255,255,.88);
    font-size:1.05rem;
    line-height:1.75;
}

.cac-accredited-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:26px;
}

.cac-primary-link,
.cac-secondary-link{
    min-height:46px;
    padding:0 18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    text-decoration:none;
}

.cac-primary-link{
    background:#ffffff;
    color:#064d2f;
}

.cac-secondary-link{
    border:1px solid rgba(255,255,255,.28);
    color:#ffffff;
}

.cac-accredited-content{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:22px;
}

.cac-accredited-content article{
    padding:24px;
    background:#ffffff;
    border:1px solid rgba(6,77,47,.12);
    box-shadow:0 14px 34px rgba(15,23,42,.06);
}

.cac-accredited-content h2{
    margin:0 0 10px;
    color:#064d2f;
    font-size:1.05rem;
}

.cac-accredited-content p{
    margin:0;
    color:#475467;
    line-height:1.7;
}

@media(max-width:800px){
    .cac-accredited-side-badge{
        right:10px;
        width:58px;
        min-height:220px;
    }

    .cac-accredited-hero{
        padding:28px;
    }

    .cac-accredited-content{
        grid-template-columns:1fr;
    }
}

/* 2026 public-site polish and responsive fixes */
body:not(.auth-body){
    background:#f5f8f6;
}

.navbar{
    background:rgba(255,255,255,.92);
    border-bottom:1px solid rgba(6,77,47,.1);
    box-shadow:0 12px 34px rgba(15,23,42,.06);
}

.hero-section{
    min-height:calc(100vh - 96px);
    padding:clamp(80px,10vw,140px) clamp(18px,5vw,72px);
    background:
        linear-gradient(135deg,rgba(6,77,47,.94),rgba(5,38,29,.92)),
        url("IMAGE/Untitled design (2).png") center/280px no-repeat;
    color:#ffffff;
}

.hero-section .badge,
.hero-buttons a,
.pricing-btn,
.business-cta-button{
    border-radius:0 !important;
}

.hero-content{
    max-width:860px;
}

.hero-content h1{
    color:#ffffff;
    letter-spacing:0;
}

.hero-content p{
    color:rgba(255,255,255,.86);
    max-width:680px;
}

.primary-btn{
    background:#ffffff;
    color:#064d2f;
    border:1px solid #ffffff;
}

.secondary-btn{
    border:1px solid rgba(255,255,255,.32);
    color:#ffffff;
    background:rgba(255,255,255,.08);
}

.section-header,
.partners-header{
    max-width:860px;
    margin-inline:auto;
}

.glass-card,
.service-card,
.pricing-card,
.stats-card,
.partnership-card,
.testimonial-card,
.partner-card{
    border-radius:0 !important;
    border:1px solid rgba(6,77,47,.12);
    box-shadow:0 16px 36px rgba(15,23,42,.06);
}

.services-section,
.pricing-section,
.partners-section,
.partnership-section,
.testimonial-section,
.values-section{
    padding-left:clamp(18px,5vw,72px);
    padding-right:clamp(18px,5vw,72px);
}

.mobile-toggle{
    display:none;
}

.mobile-sidebar{
    position:fixed;
    inset:0 0 0 auto;
    width:min(86vw,340px);
    z-index:10020;
    transform:translateX(105%);
    transition:transform .25s ease;
    background:#ffffff;
    box-shadow:-20px 0 50px rgba(15,23,42,.18);
    padding:22px;
    overflow-y:auto;
}

.mobile-sidebar.active{
    transform:translateX(0);
}

.mobile-overlay{
    position:fixed;
    inset:0;
    z-index:10010;
    background:rgba(2,6,23,.5);
    opacity:0;
    pointer-events:none;
    transition:opacity .25s ease;
}

.mobile-overlay.active{
    opacity:1;
    pointer-events:auto;
}

.mobile-close{
    width:42px;
    height:42px;
    border:1px solid rgba(6,77,47,.14);
    background:#ffffff;
    color:#064d2f;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-left:auto;
}

.mobile-links{
    display:grid;
    gap:10px;
    margin-top:24px;
}

.mobile-links a,
.mobile-dropdown-btn{
    min-height:48px;
    padding:12px 14px;
    border:1px solid rgba(6,77,47,.12);
    color:#111827;
    background:#f8faf9;
    text-decoration:none;
    font-weight:800;
}

.pricing-clean-main{
    width:min(1180px,calc(100% - 32px));
    margin:0 auto;
    padding:110px 0 56px;
}

.pricing-clean-hero{
    padding:42px;
    background:#064d2f;
    color:#ffffff;
}

.pricing-clean-hero span,
.pricing-clean-card span{
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:.76rem;
}

.pricing-clean-hero h1{
    max-width:760px;
    margin:12px 0;
    font-size:clamp(2rem,4vw,3.5rem);
    line-height:1.05;
}

.pricing-clean-hero p{
    max-width:680px;
    color:rgba(255,255,255,.84);
}

.pricing-clean-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:22px;
}

.pricing-clean-card{
    padding:24px;
    background:#ffffff;
    border:1px solid rgba(6,77,47,.12);
    box-shadow:0 16px 36px rgba(15,23,42,.06);
}

.pricing-clean-card.featured{
    border-color:#064d2f;
}

.pricing-clean-card h2{
    margin:10px 0;
    color:#064d2f;
}

.pricing-clean-card strong{
    display:block;
    margin-bottom:10px;
    font-size:1.25rem;
}

.pricing-clean-card p{
    color:#475467;
    line-height:1.65;
}

.pricing-clean-card a,
.pricing-footer-cta{
    min-height:42px;
    padding:0 14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#000000;
    color:#ffffff;
    text-decoration:none;
    font-weight:900;
    margin-top:16px;
}

.auth-body{
    min-height:100vh;
    overflow-x:hidden;
}

.auth-grid{
    min-height:100vh;
}

@media(max-width:1100px){
    .desktop-menu,
    .nav-links{
        display:none !important;
    }

    .mobile-toggle{
        display:inline-flex;
        width:44px;
        height:44px;
        align-items:center;
        justify-content:center;
        border:1px solid rgba(6,77,47,.14);
        background:#ffffff;
        color:#064d2f;
    }

    .nav-wrapper{
        padding-inline:16px;
    }

    .nav-actions{
        gap:8px;
    }
}

@media(max-width:860px){
    .hero-section{
        min-height:auto;
        padding-top:96px;
        text-align:left;
    }

    .hero-buttons,
    .cac-accredited-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .card-grid,
    .stats-grid,
    .partnership-grid,
    .testimonial-grid,
    .pricing-clean-grid{
        grid-template-columns:1fr !important;
    }

    .pricing-card{
        grid-template-columns:1fr !important;
    }

    .auth-grid{
        grid-template-columns:1fr !important;
        padding:16px;
    }

    .auth-left{
        display:none !important;
    }

    .auth-card,
    .auth-right > div{
        width:100% !important;
        max-width:520px !important;
        margin:0 auto !important;
    }
}

/* Final public polish */
html{
    scroll-behavior:smooth;
}

body{
    font-family:"Plus Jakarta Sans", Arial, sans-serif;
}

.brand-logo img,
.mobile-brand img{
    background:transparent !important;
    box-shadow:none !important;
}

.nav-actions .signin-btn,
.nav-actions .primary-btn,
.login-btn,
.signup-btn,
.mobile-signin,
.mobile-start{
    min-height:44px;
    padding:0 18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border-radius:0;
    font-weight:900;
    text-decoration:none;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-actions .signin-btn,
.login-btn,
.mobile-signin{
    border:1px solid rgba(6,77,47,.18);
    color:#064d2f;
    background:#ffffff;
}

.nav-actions .primary-btn,
.signup-btn,
.mobile-start{
    background:#064d2f;
    color:#ffffff;
    border:1px solid #064d2f;
    box-shadow:0 12px 26px rgba(6,77,47,.18);
}

.nav-actions .signin-btn:hover,
.nav-actions .primary-btn:hover,
.login-btn:hover,
.signup-btn:hover,
.mobile-signin:hover,
.mobile-start:hover{
    transform:translateY(-1px);
}

.hero-section{
    background:linear-gradient(135deg,#063f2a 0%,#075c39 52%,#04291f 100%) !important;
    position:relative;
    overflow:hidden;
}

.hero-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px),
        linear-gradient(0deg,rgba(255,255,255,.08) 1px,transparent 1px);
    background-size:52px 52px;
    opacity:.16;
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:1;
}

.hero-content .badge,
.hero-content h1,
.hero-content p,
.hero-buttons{
    animation:heroTextRise .75s ease both;
}

.hero-content h1{ animation-delay:.08s; }
.hero-content p{ animation-delay:.16s; }
.hero-buttons{ animation-delay:.24s; }

@keyframes heroTextRise{
    from{
        opacity:0;
        transform:translateY(18px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.partner-card.logo-card{
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:center;
    justify-content:center;
    min-width:180px;
    min-height:112px;
    padding:18px;
    background:#ffffff;
}

.partner-card.logo-card img{
    max-width:118px;
    max-height:42px;
    object-fit:contain;
}

.partner-card.logo-card span{
    font-size:.78rem;
    color:#475467;
    font-weight:900;
}

.footer-socials a{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.16);
    background:rgba(255,255,255,.08);
}

.footer-socials img{
    width:20px;
    height:20px;
    object-fit:contain;
}

.newsletter-wrapper{
    align-items:center;
}

.newsletter-form{
    gap:10px;
}

.newsletter-form button{
    white-space:nowrap;
    border-radius:0;
}

.cookie-notice{
    position:fixed;
    left:24px;
    right:24px;
    bottom:22px;
    z-index:10060;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    max-width:980px;
    margin:0 auto;
    padding:18px 20px;
    background:#ffffff;
    border:1px solid rgba(6,77,47,.18);
    box-shadow:0 22px 60px rgba(15,23,42,.18);
}

.cookie-copy{
    min-width:0;
}

.cookie-notice.hide{
    display:none;
}

.cookie-notice strong{
    display:block;
    color:#064d2f;
    margin-bottom:4px;
}

.cookie-notice p{
    margin:0;
    color:#475467;
    line-height:1.55;
}

.cookie-notice p a{
    color:#047857;
    font-weight:900;
    text-decoration:underline;
    text-underline-offset:3px;
}

.cookie-actions{
    display:flex;
    align-items:center;
    gap:10px;
    flex:0 0 auto;
}

.cookie-notice button{
    min-height:44px;
    padding:0 18px;
    border:1px solid transparent;
    font-weight:900;
    cursor:pointer;
    transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.cookie-notice button:hover{
    transform:translateY(-1px);
}

.cookie-accept{
    background:#064d2f;
    color:#ffffff;
}

.cookie-decline{
    background:#ffffff;
    color:#344054;
    border-color:rgba(15,23,42,.18) !important;
}

.cookie-decline:hover{
    background:#f2f4f7;
    color:#101828;
}

.auth-body{
    background:#f3f7f4;
    font-family:"Plus Jakarta Sans", Arial, sans-serif;
}

.auth-left{
    background:linear-gradient(135deg,#052b20,#075c39) !important;
}

.auth-card,
.auth-body .shadow-2xl{
    border-radius:0 !important;
    border:1px solid rgba(6,77,47,.12) !important;
    box-shadow:0 20px 60px rgba(15,23,42,.12) !important;
}

.auth-body input,
.auth-body button{
    border-radius:0 !important;
}

.premium-google-btn{
    width:100%;
    min-height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border:1px solid rgba(6,77,47,.16);
    background:#ffffff;
    color:#111827;
    font-weight:900;
    cursor:pointer;
}

.premium-google-btn img{
    width:20px;
    height:20px;
}

.auth-mini-mark{
    display:inline-flex;
    min-width:44px;
    height:28px;
    align-items:center;
    justify-content:center;
    padding:0 10px;
    margin-bottom:8px;
    background:rgba(16,185,129,.14);
    color:#bbf7d0;
    font-size:.72rem;
    font-weight:900;
    letter-spacing:.08em;
}

.auth-card-mark{
    width:64px;
    height:64px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    background:#ecfdf3;
    color:#047857;
    font-weight:900;
    font-size:1.1rem;
    letter-spacing:.08em;
}

.auth-card-icon{
    display:block;
}

@media(max-width:1100px){
    .desktop-nav,
    .desktop-menu,
    .nav-links{
        display:none !important;
    }

    .navbar .nav-actions{
        display:none !important;
    }
}

@media(max-width:760px){
    .brand-text p{
        display:none;
    }

    .brand-text h2{
        font-size:1rem;
    }

    .newsletter-wrapper,
    .footer-grid,
    .footer-bottom{
        text-align:left;
    }

    .newsletter-form,
    .newsletter-field,
    .newsletter-form button,
    .cookie-notice{
        width:100%;
    }

    .cookie-notice{
        left:12px;
        right:12px;
        bottom:12px;
        flex-direction:column;
        align-items:stretch;
    }

    .cookie-actions{
        width:100%;
        flex-direction:column-reverse;
        align-items:stretch;
    }

    .cookie-actions button{
        width:100%;
    }
}

/* Homepage pricing section */
.homepage-pricing-grid{
    width:min(1180px,100%);
    margin:0 auto;
    display:grid;
    grid-template-columns:1.25fr .95fr .95fr;
    gap:22px;
    align-items:stretch;
}

.homepage-price-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-height:520px;
    padding:30px;
    background:#ffffff;
    border:1px solid rgba(6,77,47,.12);
    box-shadow:0 18px 46px rgba(15,23,42,.08);
    color:#10201a;
}

.homepage-price-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto;
    height:4px;
    background:linear-gradient(90deg,#064d2f,#10b981);
}

.homepage-price-card.featured{
    background:
        radial-gradient(circle at 90% 6%,rgba(16,185,129,.18),transparent 34%),
        #f8fffb;
    border-color:#064d2f;
    box-shadow:0 26px 70px rgba(6,77,47,.14);
}

.homepage-price-card .popular-badge{
    position:absolute;
    top:22px;
    right:22px;
    background:#064d2f;
    color:#ffffff;
    border:1px solid rgba(255,255,255,.18);
    padding:8px 11px;
    font-size:.7rem;
    font-weight:900;
    letter-spacing:.07em;
    text-transform:uppercase;
}

.homepage-price-card .price-kicker{
    width:max-content;
    min-height:30px;
    display:inline-flex;
    align-items:center;
    padding:0 11px;
    margin-bottom:18px;
    background:rgba(6,77,47,.08);
    border:1px solid rgba(6,77,47,.12);
    color:#064d2f;
    font-size:.72rem;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.homepage-price-card h3{
    margin:0 0 12px;
    color:#10201a;
    font-size:clamp(1.45rem,2.5vw,2.05rem);
    line-height:1.12;
}

.homepage-price-card p{
    color:#5b6b63;
    line-height:1.72;
    margin:0 0 22px;
}

.homepage-price-card .price{
    margin:0 0 22px;
    color:#064d2f;
    font-size:clamp(1.8rem,4vw,3rem);
    line-height:1;
    font-weight:900;
    letter-spacing:0;
}

.homepage-price-card .muted-price{
    font-size:1.25rem;
    color:#0f766e;
}

.homepage-price-card ul{
    list-style:none;
    padding:0;
    margin:0 0 26px;
    display:grid;
    gap:13px;
}

.homepage-price-card li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:#34443c;
    font-weight:800;
    line-height:1.45;
}

.homepage-price-card li i{
    width:19px;
    height:19px;
    flex:0 0 auto;
    margin-top:1px;
    color:#10b981;
}

.homepage-price-card .pricing-btn{
    width:100%;
    margin-top:auto;
    background:#000000;
    border:1px solid #000000;
    color:#ffffff;
    justify-content:center;
}

.homepage-price-card.featured .pricing-btn{
    background:#064d2f;
    border-color:#064d2f;
}

.homepage-price-card .secondary-price-btn{
    background:#10201a;
    border-color:#10201a;
}

.homepage-price-card .pricing-btn:hover{
    background:#064d2f;
    border-color:#064d2f;
}

@media(max-width:980px){
    .homepage-pricing-grid{
        grid-template-columns:1fr;
    }

    .homepage-price-card{
        min-height:auto;
    }
}

@media(max-width:560px){
    .homepage-price-card{
        padding:24px;
    }

    .homepage-price-card .popular-badge{
        position:static;
        width:max-content;
        margin-bottom:12px;
    }
}

/* Final page consistency pass */
.footer-logo-image{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#ffffff;
    text-decoration:none;
    font-size:1rem;
    font-weight:900;
}

.footer-logo-image img{
    width:58px;
    height:58px;
    object-fit:contain;
    background:#ffffff;
    padding:6px;
    border:1px solid rgba(255,255,255,.16);
}

.footer-logo-image span{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

.services-section,
.pricing-section,
.statistics-section,
.partners-section,
.partnership-section,
.testimonial-section{
    position:relative;
}

.services-section .card-grid,
.stats-grid,
.partnership-grid,
.testimonial-grid{
    width:min(1180px,100%);
    margin-inline:auto;
}

.service-card,
.stats-card,
.partnership-card,
.testimonial-card{
    background:#ffffff;
}

.pricing-section{
    background:linear-gradient(180deg,#f8fafc 0%,#eef7f1 100%);
}

.pricing-section .section-header{
    margin-bottom:32px;
}

.pricing-card{
    width:min(1120px,100%);
    margin-inline:auto;
    border-radius:0 !important;
    border:1px solid rgba(6,77,47,.12);
}

.popular-badge,
.pricing-btn{
    border-radius:0 !important;
}

.pricing-left{
    background:linear-gradient(135deg,#064d2f,#0f766e);
    color:#ffffff;
}

.pricing-left p{
    color:rgba(255,255,255,.78);
}

.pricing-left .price{
    color:#ffffff;
    background:none;
    -webkit-text-fill-color:currentColor;
}

.pricing-right{
    background:#ffffff;
}

.pricing-right li{
    color:#172033;
}

.pricing-btn{
    min-height:52px;
    background:#000000;
    color:#ffffff;
    font-weight:900;
}

.pricing-clean-main{
    padding-top:130px;
}

.pricing-clean-card{
    border-radius:0 !important;
}

.premium-footer .newsletter-wrapper{
    border-radius:0 !important;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(360px,.9fr);
    gap:24px;
    align-items:center;
    padding:clamp(24px,4vw,44px);
}

.premium-footer .newsletter-content{
    min-width:0;
}

.premium-footer .newsletter-content h2{
    font-size:clamp(1.6rem,3vw,2.65rem);
}

.premium-footer .newsletter-form{
    min-width:0;
    width:100%;
}

.premium-footer .newsletter-field{
    border-radius:0 !important;
    min-width:0;
}

.premium-footer .newsletter-form button{
    border-radius:0 !important;
    min-width:148px;
    justify-content:center;
}

@media(max-width:900px){
    .pricing-card{
        grid-template-columns:1fr;
    }

    .pricing-left,
    .pricing-right{
        padding:34px 24px;
    }

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

@media(max-width:560px){
    .premium-footer{
        padding:56px 18px 28px;
    }

    .premium-footer .newsletter-form{
        flex-direction:column;
    }

    .premium-footer .newsletter-field,
    .premium-footer .newsletter-form button{
        width:100%;
        height:56px;
    }

    .footer-logo-image img{
        width:50px;
        height:50px;
    }

    .pricing-clean-main{
        width:calc(100% - 24px);
        padding-top:110px;
    }
}

/* Index sections after pricing: card contrast and professional polish */
.statistics-section{
    background:
        radial-gradient(circle at 15% 10%,rgba(16,185,129,.18),transparent 32%),
        linear-gradient(135deg,#031a13 0%,#064d2f 54%,#10201a 100%) !important;
}

.statistics-section .section-header :where(span,h2,p){
    color:#ffffff !important;
}

.statistics-section .section-header span{
    background:rgba(255,255,255,.1);
    border-color:rgba(255,255,255,.18);
}

.statistics-section .stats-grid{
    position:relative;
    z-index:1;
}

.statistics-section .stats-card{
    background:#ffffff !important;
    border:1px solid rgba(255,255,255,.18) !important;
    box-shadow:0 22px 50px rgba(0,0,0,.16) !important;
    color:#172033 !important;
    text-align:left;
}

.statistics-section .stats-card h3{
    color:#064d2f !important;
    font-size:clamp(2.25rem,4vw,3.35rem);
    line-height:1;
}

.statistics-section .stats-card p{
    color:#475467 !important;
    font-weight:700;
}

.partners-section{
    background:#ffffff !important;
}

.partners-section .partners-header :where(span,h2,p),
.partnership-section .section-header :where(span,h2,p),
.testimonial-section .section-header :where(span,h2,p){
    color:revert;
}

.partners-section .partners-header span,
.partnership-section .section-header span,
.testimonial-section .section-header span{
    color:#064d2f !important;
}

.partners-section .partners-header h2,
.partnership-section .section-header h2,
.testimonial-section .section-header h2{
    color:#10201a !important;
}

.partners-section .partners-header p,
.partnership-section .section-header p,
.testimonial-section .section-header p{
    color:#5b6b63 !important;
}

.partners-slider{
    border-radius:0 !important;
    background:linear-gradient(180deg,#ffffff,#f8fbf9) !important;
}

.partner-card.logo-card span{
    color:#34443c !important;
}

.partnership-section{
    background:#f4f8f5 !important;
}

.partnership-card{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#ffffff !important;
    color:#172033 !important;
}

.partnership-card h3{
    color:#064d2f !important;
}

.partnership-card p{
    color:#475467 !important;
}

.partnership-card i{
    flex:0 0 auto;
    background:#e9f8ef !important;
    color:#064d2f !important;
}

.testimonial-section{
    background:#ffffff !important;
}

.testimonial-card{
    background:#ffffff !important;
    color:#172033 !important;
    position:relative;
}

.testimonial-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#064d2f,#10b981);
}

.testimonial-card h3{
    color:#064d2f !important;
}

.testimonial-card p{
    color:#475467 !important;
}

.testimonial-card .client strong{
    color:#10201a !important;
}

.testimonial-card .client span{
    color:#667085 !important;
}

@media(max-width:760px){
    .statistics-section .stats-card,
    .partnership-card,
    .testimonial-card{
        padding:24px !important;
    }
}

/* Pricing page professional presentation */
.pricing-page{
    background:
        radial-gradient(circle at 10% 0%,rgba(16,185,129,.12),transparent 34%),
        linear-gradient(180deg,#f4f8f5 0%,#ffffff 46%,#f4f8f5 100%);
}

.pricing-page .pricing-clean-main{
    width:min(1200px,calc(100% - 32px));
    padding:132px 0 72px;
}

.pricing-page .pricing-clean-hero{
    position:relative;
    overflow:hidden;
    min-height:320px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:clamp(34px,5vw,64px);
    background:
        radial-gradient(circle at 88% 18%,rgba(16,185,129,.28),transparent 34%),
        linear-gradient(135deg,#032319 0%,#064d2f 58%,#0f766e 100%) !important;
    border:1px solid rgba(255,255,255,.18) !important;
    box-shadow:0 28px 80px rgba(6,77,47,.18) !important;
}

.pricing-page .pricing-clean-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px),
        linear-gradient(0deg,rgba(255,255,255,.08) 1px,transparent 1px);
    background-size:48px 48px;
    opacity:.14;
}

.pricing-page .pricing-clean-hero::after{
    content:"No hidden fees. Guided filing. Secure dashboard access.";
    position:absolute;
    top:28px;
    right:28px;
    max-width:270px;
    padding:14px 16px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    color:#ffffff;
    font-weight:800;
    line-height:1.5;
}

.pricing-page .pricing-clean-hero > *{
    position:relative;
    z-index:1;
}

.pricing-page .pricing-clean-hero span{
    width:max-content;
    padding:8px 12px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    color:#bbf7d0;
}

.pricing-page .pricing-clean-hero h1{
    max-width:820px;
    color:#ffffff;
    font-size:clamp(2.2rem,5vw,4.45rem);
    letter-spacing:0;
}

.pricing-page .pricing-clean-hero p{
    max-width:720px;
    font-size:1.05rem;
    line-height:1.75;
    color:rgba(255,255,255,.86) !important;
}

.pricing-page .pricing-clean-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
    margin-top:28px;
}

.pricing-page .pricing-clean-card{
    position:relative;
    min-height:310px;
    padding:30px;
    background:#ffffff !important;
    border:1px solid rgba(6,77,47,.12) !important;
    box-shadow:0 18px 50px rgba(15,23,42,.08) !important;
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.pricing-page .pricing-clean-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto;
    height:4px;
    background:linear-gradient(90deg,#064d2f,#10b981);
    opacity:.75;
}

.pricing-page .pricing-clean-card:hover{
    transform:translateY(-6px);
    box-shadow:0 28px 70px rgba(15,23,42,.13) !important;
    border-color:rgba(6,77,47,.28) !important;
}

.pricing-page .pricing-clean-card.featured{
    background:#f8fffb !important;
    border-color:#064d2f !important;
}

.pricing-page .pricing-clean-card.featured::after{
    content:"Most requested";
    position:absolute;
    top:18px;
    right:18px;
    padding:7px 10px;
    background:#064d2f;
    color:#ffffff;
    font-size:.7rem;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.pricing-page .pricing-clean-card span{
    width:max-content;
    padding:7px 10px;
    margin-bottom:8px;
    background:rgba(6,77,47,.08);
    border:1px solid rgba(6,77,47,.12);
    color:#064d2f !important;
}

.pricing-page .pricing-clean-card h2{
    min-height:58px;
    margin:14px 0 12px;
    color:#10201a !important;
    font-size:clamp(1.18rem,2vw,1.55rem);
    line-height:1.18;
}

.pricing-page .pricing-clean-card strong{
    margin:0 0 14px;
    color:#064d2f;
    font-size:clamp(1.35rem,2.5vw,1.95rem);
    line-height:1.1;
}

.pricing-page .pricing-clean-card p{
    color:#5b6b63 !important;
    line-height:1.72;
    margin-bottom:22px;
}

.pricing-page .pricing-clean-card a{
    width:100%;
    min-height:50px;
    background:#000000 !important;
    color:#ffffff !important;
    border:1px solid #000000;
}

.pricing-page .pricing-clean-card.featured a{
    background:#064d2f !important;
    border-color:#064d2f;
}

.pricing-page .pricing-clean-card a:hover{
    background:#064d2f !important;
    border-color:#064d2f;
}

.launch-offer-banner{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:14px;
    width:100%;
    margin:0 0 16px;
    padding:12px 14px;
    border:1px solid rgba(6,77,47,.18);
    background:linear-gradient(135deg,#f7fff9 0%,#fff8df 100%);
    color:#173127;
    font-size:.88rem;
    line-height:1.4;
    box-shadow:0 14px 30px rgba(6,77,47,.08);
}

.launch-offer-mark{
    display:grid;
    place-items:center;
    flex:0 0 auto;
    width:48px;
    height:48px;
    border-radius:50%;
    background:#064d2f;
    color:#ffffff !important;
    font-size:.95rem;
    font-weight:900;
    letter-spacing:0;
    box-shadow:inset 0 0 0 2px rgba(255,255,255,.14),0 10px 22px rgba(6,77,47,.18);
}

.launch-offer-copy{
    display:grid;
    gap:2px;
    min-width:0;
}

.launch-offer-copy strong{
    color:#064d2f;
    font-size:.76rem;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.launch-offer-copy span{
    color:#516156;
    font-weight:800;
}

.pricing-page .pricing-clean-hero .launch-offer-banner span,
.pricing-page .pricing-clean-card .launch-offer-banner span{
    width:auto;
    margin:0;
    padding:0;
    background:transparent;
    border:0;
    color:#516156 !important;
    text-transform:none;
}

.pricing-page .pricing-clean-hero .launch-offer-banner .launch-offer-mark,
.pricing-page .pricing-clean-card .launch-offer-banner .launch-offer-mark{
    display:grid;
    color:#ffffff !important;
}

.pricing-page .pricing-clean-hero .launch-offer-banner .launch-offer-copy,
.pricing-page .pricing-clean-card .launch-offer-banner .launch-offer-copy{
    display:grid;
}

.pricing-page .pricing-clean-hero .launch-offer-banner .launch-offer-copy strong,
.pricing-page .pricing-clean-card .launch-offer-banner .launch-offer-copy strong{
    color:#064d2f !important;
    text-transform:uppercase;
}

.pricing-clean-hero .launch-offer-banner,
.business-hero-container .launch-offer-banner{
    width:min(520px,100%);
    background:rgba(255,255,255,.94);
    border-color:rgba(248,195,58,.62);
    position:relative;
    z-index:2;
}

.clickable-service .launch-offer-banner,
.pricing-clean-card .launch-offer-banner{
    margin-bottom:14px;
}

.launch-offer-price{
    display:flex !important;
    align-items:baseline;
    gap:10px;
    flex-wrap:wrap;
}

.launch-offer-current{
    color:#064d2f !important;
    font-weight:900;
}

.launch-offer-price del{
    color:#7a867d !important;
    font-size:.68em;
    font-weight:800;
    text-decoration-thickness:2px;
}

@media(max-width:560px){
    .launch-offer-banner{
        align-items:flex-start;
        padding:12px;
    }

    .launch-offer-mark{
        width:42px;
        height:42px;
        font-size:.82rem;
    }
}

@media(max-width:980px){
    .pricing-page .pricing-clean-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .pricing-page .pricing-clean-hero::after{
        position:relative;
        top:auto;
        right:auto;
        margin-top:22px;
    }
}

@media(max-width:640px){
    .pricing-page .pricing-clean-main{
        width:calc(100% - 24px);
        padding-top:110px;
        padding-bottom:48px;
    }

    .pricing-page .pricing-clean-hero{
        min-height:auto;
        padding:28px;
    }

    .pricing-page .pricing-clean-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .pricing-page .pricing-clean-card{
        min-height:auto;
        padding:24px;
    }

    .pricing-page .pricing-clean-card h2{
        min-height:0;
    }
}

/* Global public notice banner */
.public-site-notice{
    position:relative;
    z-index:10030;
    width:100%;
    background:
        linear-gradient(90deg,#031f17 0%,#064d2f 52%,#0f766e 100%) !important;
    color:#ffffff;
    border-bottom:1px solid rgba(255,255,255,.12);
    box-shadow:0 10px 28px rgba(15,23,42,.12);
}

.public-site-notice .nrs-top-header-inner{
    width:min(1280px,calc(100% - 32px));
    min-height:48px;
    margin:0 auto;
    padding:8px 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}

.public-site-notice .public-notice-left{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:0;
}

.public-site-notice .public-notice-left strong{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:0 10px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    color:#ffffff;
    font-size:.72rem;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.public-site-notice .public-notice-left span{
    color:rgba(255,255,255,.9);
    font-size:.9rem;
    font-weight:700;
    line-height:1.45;
}

.public-site-notice .public-notice-right{
    flex:0 0 auto;
}

.public-site-notice .nrs-report-btn{
    min-height:34px;
    padding:0 14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#ffffff !important;
    color:#064d2f !important;
    border:1px solid rgba(255,255,255,.5);
    border-radius:0 !important;
    font-weight:900;
    text-decoration:none;
    box-shadow:none;
}

.public-site-notice .nrs-report-btn:hover{
    background:#d1fae5 !important;
    transform:translateY(-1px);
}

@media(max-width:780px){
    .public-site-notice .nrs-top-header-inner{
        width:calc(100% - 24px);
        align-items:flex-start;
        flex-direction:column;
        gap:10px;
        padding:12px 0;
    }

    .public-site-notice .public-notice-left{
        align-items:flex-start;
        flex-direction:column;
        gap:8px;
    }

    .public-site-notice .public-notice-left span{
        font-size:.84rem;
    }

    .public-site-notice .public-notice-right,
    .public-site-notice .nrs-report-btn{
        width:100%;
    }
}

/* Public content readability and shared page polish */
.about-page,
.premium-contact-page,
.business-page,
.post-page,
.other-services-page{
    background:#f4f8f5;
    color:#172033;
}

.about-page .contact-services-section,
.about-page .contact-why-section,
.about-page .contact-faq-section,
.premium-contact-page .premium-contact-section,
.business-page .business-features-section,
.business-page .business-roadmap-section,
.post-page .post-services-section,
.other-services-page .other-services-section{
    background:#f4f8f5;
}

.about-page .contact-service-card,
.about-page .why-card,
.about-page .faq-card,
.premium-contact-page .contact-info-card,
.premium-contact-page .contact-form-card,
.premium-contact-page .premium-contact-right,
.business-page .business-feature-card,
.business-page .roadmap-card,
.post-page .post-service-card,
.other-services-page .other-service-card{
    background:#ffffff !important;
    color:#172033 !important;
    border:1px solid rgba(6,77,47,.12) !important;
    box-shadow:0 16px 40px rgba(15,23,42,.07) !important;
    border-radius:0 !important;
}

.about-page .contact-service-card h3,
.about-page .why-card h3,
.about-page .faq-card summary,
.premium-contact-page .contact-info-card h3,
.premium-contact-page .contact-form-card h2,
.premium-contact-page .premium-contact-right h2,
.business-page .business-feature-card h3,
.business-page .roadmap-card h3,
.post-page .post-service-card h3,
.other-services-page .other-service-card h3{
    color:#064d2f !important;
}

.about-page .contact-service-card p,
.about-page .why-card p,
.about-page .faq-card p,
.premium-contact-page .contact-info-card p,
.premium-contact-page .contact-form-card p,
.premium-contact-page .premium-contact-right p,
.business-page .business-feature-card p,
.business-page .roadmap-card p,
.post-page .post-service-card p,
.other-services-page .other-service-card p,
.other-services-page .other-service-card li{
    color:#475467 !important;
}

.about-page .faq-header h2,
.about-page .contact-section-header h2,
.business-page .business-section-header h2,
.post-page .post-services-section h2,
.other-services-page .other-services-section h2{
    color:#064d2f !important;
}

.about-page .faq-header span,
.about-page .contact-section-header span,
.business-page .business-section-header span,
.post-page .post-badge p,
.other-services-page .other-services-badge{
    color:#0f766e !important;
}

.premium-contact-page input,
.premium-contact-page textarea,
.premium-contact-page select{
    background:#ffffff !important;
    color:#172033 !important;
    border:1px solid rgba(6,77,47,.18) !important;
    border-radius:0 !important;
}

.premium-contact-page input::placeholder,
.premium-contact-page textarea::placeholder{
    color:#667085 !important;
}

.business-page .business-hero-section,
.post-page .post-hero-section,
.other-services-page .other-services-hero,
.about-page .contact-hero-section,
.premium-contact-page .premium-contact-hero{
    padding-top:clamp(120px,12vw,160px);
}

.business-page .business-services-grid,
.business-page .business-features-grid,
.post-page .post-services-grid,
.other-services-page .other-services-grid{
    width:min(1180px,calc(100% - 32px));
    margin-inline:auto;
}

.primary-business-btn,
.business-cta-button,
.post-service-btn,
.post-cta-btn,
.other-service-btn,
.other-services-main-btn{
    border-radius:0 !important;
    font-weight:900 !important;
}

.premium-footer .newsletter-field{
    height:64px;
    background:#ffffff !important;
    border:1px solid rgba(255,255,255,.18) !important;
    box-shadow:0 16px 36px rgba(0,0,0,.16);
}

.premium-footer .newsletter-field i{
    color:#064d2f !important;
    flex:0 0 auto;
}

.premium-footer .newsletter-field input{
    color:#172033 !important;
    font-weight:700;
}

.premium-footer .newsletter-field input::placeholder{
    color:#667085 !important;
    opacity:1;
}

.premium-footer .newsletter-form button{
    background:#10b981 !important;
    color:#02140f !important;
    box-shadow:0 16px 34px rgba(16,185,129,.24);
}

.premium-footer .newsletter-form button:hover{
    background:#ffffff !important;
    color:#064d2f !important;
}

@media(max-width:700px){
    .about-page .contact-services-grid,
    .business-page .business-features-grid,
    .post-page .post-services-grid,
    .other-services-page .other-services-grid,
    .premium-contact-page .premium-contact-grid{
        grid-template-columns:1fr !important;
    }

    .premium-footer .newsletter-wrapper{
        padding:22px !important;
    }

    .premium-footer .newsletter-content p{
        line-height:1.65;
    }
}

/* Hard visibility fallback for public service pages */
.about-page .reveal,
.premium-contact-page .reveal,
.business-page .reveal,
.post-page .reveal,
.other-services-page .reveal{
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
}

.about-page :where(h1,h2,h3,h4,p,span,li,summary,label,strong,small),
.premium-contact-page :where(h1,h2,h3,h4,p,span,li,summary,label,strong,small),
.business-page :where(h1,h2,h3,h4,p,span,li,summary,label,strong,small),
.post-page :where(h1,h2,h3,h4,p,span,li,summary,label,strong,small),
.other-services-page :where(h1,h2,h3,h4,p,span,li,summary,label,strong,small){
    opacity:1;
    visibility:visible;
}

.about-page :where(.contact-services-section,.contact-mission-section,.contact-faq-section) :where(h1,h2,h3,h4,summary,strong),
.premium-contact-page :where(.premium-contact-section) :where(h1,h2,h3,h4,summary,strong),
.business-page :where(.business-features-section,.business-roadmap-section) :where(h1,h2,h3,h4,summary,strong),
.post-page :where(.post-services-section) :where(h1,h2,h3,h4,summary,strong),
.other-services-page :where(.other-services-section) :where(h1,h2,h3,h4,summary,strong){
    color:#064d2f !important;
}

.about-page :where(.contact-services-section,.contact-mission-section,.contact-faq-section) :where(p,li,span,label,small),
.premium-contact-page :where(.premium-contact-section) :where(p,li,span,label,small),
.business-page :where(.business-features-section,.business-roadmap-section) :where(p,li,span,label,small),
.post-page :where(.post-services-section) :where(p,li,span,label,small),
.other-services-page :where(.other-services-section) :where(p,li,span,label,small){
    color:#475467 !important;
}

.about-page :where(.contact-hero-section,.contact-cta-section,.premium-footer) :where(h1,h2,h3,h4,p,span,li,summary,label,strong,small),
.premium-contact-page :where(.premium-contact-hero,.premium-footer) :where(h1,h2,h3,h4,p,span,li,summary,label,strong,small),
.business-page :where(.business-hero-section,.business-cta-section,.premium-footer) :where(h1,h2,h3,h4,p,span,li,summary,label,strong,small),
.post-page :where(.post-hero-section,.post-cta-section,.premium-footer) :where(h1,h2,h3,h4,p,span,li,summary,label,strong,small),
.other-services-page :where(.other-services-hero,.other-services-cta,.premium-footer) :where(h1,h2,h3,h4,p,span,li,summary,label,strong,small){
    color:#ffffff !important;
}

.about-page :where(a,button),
.premium-contact-page :where(a,button),
.business-page :where(a,button),
.post-page :where(a,button),
.other-services-page :where(a,button){
    opacity:1;
    visibility:visible;
}

.about-page :where(.contact-primary-btn,.contact-secondary-btn,.contact-service-icon,.contact-badge),
.premium-contact-page :where(.premium-whatsapp-btn,.business-status,.priority-badge,.contact-icon),
.business-page :where(.primary-business-btn,.secondary-business-btn,.business-cta-button,.business-badge),
.post-page :where(.post-service-btn,.post-cta-btn,.post-badge,.post-service-icon),
.other-services-page :where(.other-service-btn,.other-services-main-btn,.other-services-badge,.other-icon){
    color:inherit;
}

.about-page :where(.contact-primary-btn,.contact-secondary-btn),
.premium-contact-page :where(.premium-whatsapp-btn),
.business-page :where(.primary-business-btn,.secondary-business-btn,.business-cta-button),
.post-page :where(.post-service-btn,.post-cta-btn),
.other-services-page :where(.other-service-btn,.other-services-main-btn){
    color:#ffffff !important;
}

/* Professional visual system for homepage and public pages */
:root{
    --mtp-ink:#10201a;
    --mtp-muted:#5b6b63;
    --mtp-line:rgba(6,77,47,.13);
    --mtp-green:#064d2f;
    --mtp-green-2:#0f766e;
    --mtp-soft:#f4f8f5;
    --mtp-card:#ffffff;
    --mtp-shadow:0 18px 46px rgba(15,23,42,.08);
}

body:not(.auth-body):not(.dashboard-body){
    background:var(--mtp-soft);
    color:var(--mtp-ink);
}

body:not(.auth-body):not(.dashboard-body) section{
    overflow:hidden;
}

.password-strength{
    margin-top:8px;
    display:grid;
    gap:6px;
    font-size:12px;
    font-weight:800;
    color:#6b7280;
}
.password-strength::before{
    content:"";
    display:block;
    width:100%;
    height:6px;
    border-radius:999px;
    background:#e5e7eb;
}
.password-strength span{
    display:block;
    height:6px;
    margin-top:-12px;
    border-radius:999px;
    width:12%;
    background:#b91c1c;
    transition:width .2s ease, background .2s ease;
}
.password-strength[data-state="medium"] span{background:#f59e0b;}
.password-strength[data-state="strong"] span{background:#047857;}
.password-strength[data-state="weak"] strong{color:#b91c1c;}
.password-strength[data-state="medium"] strong{color:#b45309;}
.password-strength[data-state="strong"] strong{color:#047857;}

.otp-box-grid{
    display:grid;
    grid-template-columns:repeat(6, minmax(38px, 1fr));
    gap:8px;
    margin-bottom:10px;
}
.otp-box-grid input{
    width:100%;
    height:54px;
    text-align:center;
    font-size:22px;
    font-weight:900;
    border:1px solid #d1d5db;
    outline:none;
    background:#fff;
    transition:border-color .2s ease, box-shadow .2s ease;
}
.otp-box-grid input:focus{
    border-color:#047857;
    box-shadow:0 0 0 4px rgba(4,120,87,.14);
}
.otp-countdown{
    margin-top:8px;
    font-size:12px;
    font-weight:800;
    color:#065f46;
    text-align:center;
}

.support-widget{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:9999;
    font-family:"Plus Jakarta Sans", Arial, sans-serif;
}
.support-widget-button{
    min-width:116px;
    height:48px;
    border:0;
    background:#03140f;
    color:#fff;
    font-weight:900;
    letter-spacing:.04em;
    box-shadow:0 18px 40px rgba(3,20,15,.22);
    cursor:pointer;
}
.support-widget-panel{
    width:min(380px, calc(100vw - 28px));
    max-height:min(680px, calc(100vh - 88px));
    margin-bottom:12px;
    background:#fff;
    border:1px solid rgba(6,77,47,.16);
    box-shadow:0 24px 70px rgba(3,20,15,.24);
    overflow:auto;
}
.support-widget.expanded .support-widget-panel{
    width:min(720px, calc(100vw - 28px));
}
.support-widget-panel header{
    display:flex;
    justify-content:space-between;
    gap:12px;
    padding:16px;
    background:#03140f;
    color:#fff;
}
.support-widget-panel header span{
    display:block;
    margin-top:3px;
    color:#d1fae5;
    font-size:12px;
}
.support-widget-actions{
    display:flex;
    gap:6px;
}
.support-widget-actions button,
.support-widget-options button{
    border:1px solid rgba(6,77,47,.16);
    background:#fff;
    color:#03140f;
    font-weight:800;
    cursor:pointer;
}
.support-widget-actions button{
    width:30px;
    height:30px;
}
.support-widget-options{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    padding:14px;
}
.support-widget-options button{
    padding:10px;
    text-align:left;
}
.support-widget-chat{
    padding:0 14px 12px;
}
.support-widget-chat p{
    margin:0 0 8px;
    padding:12px;
    background:#f3f7f4;
    color:#111827;
    line-height:1.5;
}
.support-widget-form{
    display:grid;
    gap:8px;
    padding:14px;
    border-top:1px solid #e5e7eb;
}
.support-widget-form input,
.support-widget-form textarea{
    width:100%;
    border:1px solid #d1d5db;
    padding:11px;
    font:inherit;
}
.support-widget-form textarea{
    min-height:88px;
    resize:vertical;
}
.support-widget-form button{
    border:0;
    background:#047857;
    color:#fff;
    padding:12px;
    font-weight:900;
    cursor:pointer;
}

/* Part 2 auth redesign */
.auth-body{
    background:#f6faf7 !important;
}
.auth-body .auth-grid{
    min-height:100vh;
    background:
        linear-gradient(120deg, rgba(3,20,15,.94), rgba(6,95,70,.90)),
        url("IMAGE/Untitled design.png") center/cover no-repeat;
}
.auth-body .auth-left{
    background:transparent !important;
}
.auth-body .auth-left::before,
.auth-body::before,
.auth-body::after{
    display:none !important;
}
.auth-body .auth-grid > div:last-child{
    background:rgba(255,255,255,.96) !important;
    backdrop-filter:blur(18px);
}
.auth-body .shadow-2xl{
    border-radius:8px !important;
    border:1px solid rgba(6,77,47,.14) !important;
    box-shadow:0 24px 70px rgba(3,20,15,.16) !important;
    animation:authCardIn .45s ease both;
}
.auth-logo-lockup,
.auth-card-brand{
    display:flex;
    align-items:center;
    gap:12px;
}
.auth-logo-lockup img,
.auth-card-brand img{
    width:48px;
    height:48px;
    object-fit:contain;
    border-radius:8px;
    background:#fff;
    padding:4px;
    box-shadow:0 10px 26px rgba(0,0,0,.12);
}
.auth-logo-lockup strong,
.auth-card-brand strong{
    display:block;
    font-weight:900;
    letter-spacing:0;
    color:inherit;
}
.auth-logo-lockup span,
.auth-card-brand span{
    display:block;
    margin-top:3px;
    font-size:12px;
    font-weight:800;
    color:#f8c33a;
    letter-spacing:0;
}
.auth-card-brand{
    margin-bottom:22px;
    color:#03140f;
}
.auth-card-brand img{
    background:#f3f7f4;
    box-shadow:none;
    border:1px solid #dfe7e1;
}
.auth-card-brand span{
    color:#047857;
}
.auth-body input,
.auth-body select,
.auth-body textarea{
    border-radius:8px !important;
}
.auth-body button,
.auth-body .premium-google-btn{
    border-radius:8px !important;
}
.auth-body input:focus,
.auth-body select:focus{
    box-shadow:0 0 0 4px rgba(4,120,87,.15) !important;
}
.auth-notice{
    border-radius:8px !important;
    animation:authCardIn .25s ease both;
}
.auth-notice.success{
    background:#ecfdf3 !important;
    color:#047857 !important;
    border:1px solid #bbf7d0 !important;
}
.auth-notice.error{
    background:#fef2f2 !important;
    color:#b91c1c !important;
    border:1px solid #fecaca !important;
}
@keyframes authCardIn{
    from{opacity:0;transform:translateY(12px)}
    to{opacity:1;transform:translateY(0)}
}
@media(max-width:900px){
    .auth-body .auth-grid{
        display:block !important;
        background:#f6faf7;
    }
    .auth-body .auth-left{
        display:none !important;
    }
    .auth-body .auth-grid > div:last-child{
        min-height:100vh;
        padding:22px !important;
    }
    .auth-body .shadow-2xl{
        padding:24px !important;
    }
}

/* Login page production fixes */
.auth-body .auth-grid{
    grid-template-columns:minmax(420px, 1fr) minmax(440px, .86fr) !important;
    align-items:stretch;
    overflow-x:hidden;
}

.auth-body .auth-left{
    min-height:100vh;
    padding:clamp(64px,7vw,108px) clamp(42px,7vw,108px) !important;
    display:flex;
    align-items:center;
    color:#ffffff;
}

.auth-left-content{
    width:min(620px,100%);
}

.auth-body .auth-headline{
    margin-top:34px;
    color:#eefbf3;
    font-size:clamp(3.4rem,6vw,5rem) !important;
    line-height:1.06 !important;
    letter-spacing:0 !important;
}

.auth-body .auth-grid > div:last-child{
    min-height:100vh;
    padding:clamp(38px,6vw,72px) clamp(24px,5vw,72px) !important;
}

.auth-body .login-card,
.auth-body .shadow-2xl{
    width:min(448px,100%) !important;
    margin:0 auto;
}

.auth-body .login-card{
    padding:32px !important;
}

.auth-body .auth-card-brand{
    margin-bottom:26px;
}

.auth-body .auth-card-mark{
    display:none !important;
}

.auth-body .auth-mobile-brand,
.auth-body .lg\:hidden.text-center{
    display:none !important;
}

.auth-body .auth-form-icon{
    display:none !important;
}

.auth-body .premium-google-btn{
    display:flex !important;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-height:64px;
    color:#111827;
    background:#ffffff;
    border:1px solid #d6ded9;
    font-weight:900;
    overflow:hidden;
}

.auth-body .premium-google-btn img{
    display:none !important;
}

.google-mark{
    width:22px;
    height:22px;
    display:inline-grid;
    place-items:center;
    border-radius:50%;
    color:#ffffff;
    background:conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
    font-size:13px;
    font-weight:900;
    line-height:1;
}

#login-form .password-strength{
    display:none !important;
}

.auth-body input[type="password"]{
    font-family:Arial, sans-serif;
}

@media(max-width:1100px){
    .auth-body .auth-grid{
        grid-template-columns:1fr !important;
    }

    .auth-body .auth-left{
        display:none !important;
    }
}

.section-header,
.partners-header,
.business-section-header,
.other-services-header,
.premium-contact-header,
.faq-header{
    text-align:center;
    max-width:820px;
    margin:0 auto 34px;
}

.section-header span,
.partners-header span,
.business-section-header span,
.faq-header span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:30px;
    padding:0 12px;
    margin-bottom:12px;
    background:rgba(6,77,47,.08);
    border:1px solid rgba(6,77,47,.12);
    color:var(--mtp-green);
    font-size:.72rem;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.section-header h2,
.partners-header h2,
.business-section-header h2,
.faq-header h2{
    color:var(--mtp-ink);
    font-size:clamp(2rem,4vw,3.25rem);
    line-height:1.08;
    margin:0;
}

.section-header p,
.partners-header p,
.business-section-header p,
.faq-header p{
    color:var(--mtp-muted);
    line-height:1.75;
    margin:14px auto 0;
    max-width:680px;
}

.values-section,
.services-section,
.pricing-section,
.statistics-section,
.partners-section,
.partnership-section,
.testimonial-section{
    padding:clamp(68px,8vw,112px) clamp(18px,5vw,72px);
}

.values-section,
.partners-section,
.testimonial-section{
    background:#ffffff;
}

.services-section,
.partnership-section{
    background:linear-gradient(180deg,#f4f8f5 0%,#ffffff 100%);
}

.card-grid,
.stats-grid,
.partnership-grid,
.testimonial-grid,
.partners-slider{
    width:min(1180px,100%);
    margin-inline:auto;
}

.card-grid,
.partnership-grid,
.testimonial-grid{
    gap:22px;
}

.glass-card,
.service-card,
.stats-card,
.partnership-card,
.testimonial-card,
.partner-card.logo-card,
.pricing-clean-card,
.business-feature-card,
.roadmap-card,
.post-service-card,
.other-service-card,
.contact-service-card,
.contact-info-card,
.contact-mini-card,
.premium-contact-right,
.faq-card{
    border-radius:0 !important;
    border:1px solid var(--mtp-line) !important;
    box-shadow:var(--mtp-shadow) !important;
}

.glass-card,
.service-card,
.partnership-card,
.testimonial-card,
.business-feature-card,
.roadmap-card,
.post-service-card,
.other-service-card,
.contact-service-card,
.contact-info-card,
.contact-mini-card,
.faq-card{
    background:#ffffff !important;
    color:var(--mtp-ink) !important;
}

.glass-card i,
.service-card i,
.partnership-card i,
.business-feature-card .feature-icon,
.post-service-icon,
.other-icon,
.contact-service-icon,
.contact-icon{
    color:var(--mtp-green) !important;
}

.glass-card h3,
.service-card h3,
.partnership-card h3,
.testimonial-card h3,
.business-feature-card h3,
.roadmap-card h3,
.post-service-card h3,
.other-service-card h3,
.contact-service-card h3,
.contact-info-card h3,
.contact-mini-card h3,
.faq-card summary{
    color:var(--mtp-green) !important;
}

.glass-card p,
.service-card p,
.partnership-card p,
.testimonial-card p,
.business-feature-card p,
.roadmap-card p,
.post-service-card p,
.other-service-card p,
.contact-service-card p,
.contact-info-card p,
.contact-mini-card p,
.faq-card p{
    color:var(--mtp-muted) !important;
    line-height:1.72;
}

.hero-section,
.business-hero-section,
.post-hero-section,
.other-services-hero,
.contact-hero-section,
.premium-contact-hero,
.statistics-section,
.business-cta-section,
.post-cta-section,
.other-services-cta,
.contact-cta-section{
    background:linear-gradient(135deg,#043122 0%,#064d2f 52%,#10201a 100%) !important;
    color:#ffffff !important;
}

.hero-section :where(h1,h2,h3,p,span),
.business-hero-section :where(h1,h2,h3,p,span),
.post-hero-section :where(h1,h2,h3,p,span),
.other-services-hero :where(h1,h2,h3,p,span),
.contact-hero-section :where(h1,h2,h3,p,span),
.premium-contact-hero :where(h1,h2,h3,p,span),
.statistics-section :where(h1,h2,h3,p,span),
.business-cta-section :where(h1,h2,h3,p,span),
.post-cta-section :where(h1,h2,h3,p,span),
.other-services-cta :where(h1,h2,h3,p,span),
.contact-cta-section :where(h1,h2,h3,p,span){
    color:#ffffff !important;
}

.hero-section :where(p),
.business-hero-section :where(p),
.post-hero-section :where(p),
.other-services-hero :where(p),
.contact-hero-section :where(p),
.premium-contact-hero :where(p),
.statistics-section :where(p),
.business-cta-section :where(p),
.post-cta-section :where(p),
.other-services-cta :where(p),
.contact-cta-section :where(p){
    color:rgba(255,255,255,.84) !important;
}

.hero-buttons a,
.primary-business-btn,
.secondary-business-btn,
.business-cta-button,
.post-service-btn,
.post-cta-btn,
.other-service-btn,
.other-services-main-btn,
.contact-primary-btn,
.contact-secondary-btn,
.pricing-btn,
.pricing-clean-card a,
.premium-whatsapp-btn{
    border-radius:0 !important;
    min-height:48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-weight:900 !important;
    text-decoration:none;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.hero-buttons a:hover,
.primary-business-btn:hover,
.secondary-business-btn:hover,
.business-cta-button:hover,
.post-service-btn:hover,
.post-cta-btn:hover,
.other-service-btn:hover,
.other-services-main-btn:hover,
.contact-primary-btn:hover,
.contact-secondary-btn:hover,
.pricing-btn:hover,
.pricing-clean-card a:hover,
.premium-whatsapp-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 34px rgba(15,23,42,.18);
}

.pricing-section{
    background:#f4f8f5 !important;
}

.pricing-card,
.pricing-clean-hero{
    border-radius:0 !important;
    border:1px solid var(--mtp-line);
    box-shadow:var(--mtp-shadow);
}

.pricing-clean-hero{
    background:linear-gradient(135deg,#043122,#064d2f) !important;
}

.pricing-clean-grid{
    align-items:stretch;
}

.pricing-clean-card{
    display:flex;
    flex-direction:column;
}

.pricing-clean-card a{
    margin-top:auto;
    background:#000000;
    color:#ffffff;
}

.partners-slider{
    background:#ffffff;
    border:1px solid var(--mtp-line);
    box-shadow:var(--mtp-shadow);
    padding:18px 0;
}

.partner-card.logo-card{
    box-shadow:none !important;
    background:#ffffff !important;
}

.premium-contact-grid,
.business-features-grid,
.business-roadmap-wrapper,
.post-services-grid,
.other-services-grid,
.contact-services-grid,
.faq-wrapper{
    width:min(1180px,calc(100% - 32px));
    margin-inline:auto;
}

.premium-contact-section,
.business-features-section,
.business-roadmap-section,
.post-services-section,
.other-services-section,
.contact-services-section,
.contact-mission-section,
.contact-faq-section{
    padding:clamp(68px,8vw,112px) 0;
}

.business-cta-box,
.post-cta-box,
.other-services-cta-box,
.contact-cta-box{
    border-radius:0 !important;
    border:1px solid rgba(255,255,255,.16);
    box-shadow:0 24px 60px rgba(0,0,0,.18);
}

.premium-footer{
    margin-top:0;
}

/* Privacy policy page */
.privacy-policy-page{
    background:#f6faf8;
    color:#162033;
    font-family:'Inter', sans-serif;
}

.policy-main{
    overflow:hidden;
}

.policy-container{
    width:min(1140px, calc(100% - 32px));
    margin:0 auto;
}

.policy-hero{
    position:relative;
    padding:96px 0 76px;
    background:
        radial-gradient(circle at 12% 18%, rgba(16,185,129,.18), transparent 30%),
        linear-gradient(135deg, #063f28 0%, #082f25 55%, #101828 100%);
    color:#ffffff;
}

.policy-hero:after{
    content:"";
    position:absolute;
    inset:auto 0 0;
    height:1px;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
}

.policy-kicker{
    display:inline-flex;
    align-items:center;
    min-height:36px;
    padding:0 14px;
    border:1px solid rgba(255,255,255,.24);
    background:rgba(255,255,255,.1);
    color:#d1fae5;
    font-size:.78rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.policy-hero h1{
    max-width:820px;
    margin:24px 0 18px;
    color:#ffffff;
    font-size:clamp(2.1rem, 5vw, 4.35rem);
    line-height:1.05;
    letter-spacing:0;
}

.policy-hero p{
    max-width:820px;
    color:rgba(255,255,255,.82);
    font-size:1.05rem;
    line-height:1.8;
}

.policy-content-section{
    padding:64px 0 88px;
}

.policy-layout{
    display:grid;
    grid-template-columns:minmax(240px, 320px) minmax(0, 1fr);
    gap:28px;
    align-items:start;
}

.policy-summary,
.policy-card{
    background:#ffffff;
    border:1px solid rgba(6,63,40,.1);
    box-shadow:0 24px 70px rgba(16,32,51,.08);
}

.policy-summary{
    position:sticky;
    top:112px;
    padding:28px;
}

.policy-summary h2,
.policy-block h2{
    color:#0f172a;
    letter-spacing:0;
}

.policy-summary h2{
    margin:0 0 12px;
    font-size:1.2rem;
}

.policy-summary p{
    margin:0 0 22px;
    color:#475467;
    line-height:1.75;
}

.policy-contact-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 18px;
    background:#064d2f;
    color:#ffffff;
    text-decoration:none;
    font-weight:800;
}

.policy-contact-link:hover{
    background:#0f172a;
}

.policy-card{
    padding:10px;
}

.policy-block{
    padding:28px;
    border-bottom:1px solid rgba(15,23,42,.08);
}

.policy-block:last-child{
    border-bottom:0;
}

.policy-block h2{
    margin:0 0 14px;
    font-size:1.22rem;
}

.policy-block p,
.policy-block li{
    color:#475467;
    font-size:.98rem;
    line-height:1.8;
}

.policy-block p{
    margin:0;
}

.policy-block ul{
    display:grid;
    gap:10px;
    margin:0;
    padding-left:20px;
}

.policy-block strong{
    color:#0f172a;
}

.policy-block a{
    color:#047857;
    font-weight:800;
}

.policy-note{
    margin-top:16px !important;
    padding:14px 16px;
    border-left:4px solid #10b981;
    background:#ecfdf5;
    color:#064d2f !important;
    font-weight:800;
}

.policy-contact-block{
    background:#f0fdf4;
}

.policy-contact-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
    margin-top:18px;
}

.policy-contact-grid a{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
    min-height:52px;
    padding:12px 14px;
    background:#ffffff;
    border:1px solid rgba(6,63,40,.12);
    color:#064d2f;
    text-decoration:none;
    overflow-wrap:anywhere;
}

.policy-contact-grid svg{
    width:18px;
    height:18px;
    flex:0 0 auto;
}

@media (max-width: 900px){
    .policy-hero{
        padding:72px 0 54px;
    }

    .policy-layout{
        grid-template-columns:1fr;
    }

    .policy-summary{
        position:relative;
        top:auto;
    }
}

@media (max-width: 640px){
    .policy-container{
        width:calc(100% - 24px);
    }

    .policy-content-section{
        padding:36px 0 60px;
    }

    .policy-summary,
    .policy-block{
        padding:22px;
    }

    .policy-card{
        padding:6px;
    }

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

@media(max-width:900px){
    .card-grid,
    .partnership-grid,
    .testimonial-grid,
    .business-features-grid,
    .post-services-grid,
    .other-services-grid,
    .contact-services-grid,
    .premium-contact-grid{
        grid-template-columns:1fr !important;
    }

    .values-section,
    .services-section,
    .pricing-section,
    .statistics-section,
    .partners-section,
    .partnership-section,
    .testimonial-section,
    .premium-contact-section,
    .business-features-section,
    .business-roadmap-section,
    .post-services-section,
    .other-services-section,
    .contact-services-section,
    .contact-mission-section,
    .contact-faq-section{
        padding-top:58px;
        padding-bottom:58px;
    }
}

@media(max-width:560px){
    .section-header,
    .partners-header,
    .business-section-header,
    .other-services-header,
    .premium-contact-header,
    .faq-header{
        text-align:left;
        margin-bottom:24px;
    }

    .hero-buttons,
    .business-buttons,
    .contact-cta-buttons{
        align-items:stretch !important;
    }

    .hero-buttons a,
    .business-buttons a,
    .contact-cta-buttons a,
    .pricing-btn{
        width:100%;
    }
}


/* Final auth-brand visibility overrides */
@media(max-width:900px){
    .auth-body .auth-mobile-brand,
    .auth-body .lg\:hidden.text-center{
        display:block !important;
    }
    .auth-body .auth-mobile-brand .auth-logo-lockup,
    .auth-body .lg\:hidden.text-center .auth-logo-lockup{
        justify-content:center;
        margin-bottom:18px;
    }
}
