:root{
  --bg1:#0ea5ea;
  --bg2:#2af598;
  --ink:#0b1220;
  --muted:#5d6b85;
  --glass:rgba(255,255,255,.08);
  --card:#0b1220ba;
  --ring:#8ed1ff;
  --grad:linear-gradient(135deg,var(--bg1),#7c3aed 35%,#ef4444 65%,var(--bg2));
}



body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #f8fbff;
  background: radial-gradient(1200px 800px at 20% -10%, #101826 0%, #070b12 60%, #05080f 100%);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}





/* PARTICLE WRAPPER */
#global-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: -1000;
}

/* PARTICLES */
#global-particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0.55;
  animation: particleFloat 13s linear infinite, particleColor 6s ease-in-out infinite;
}

/* RANDOM POSITIONS + SIZES */
#global-particles span:nth-child(1)  { left: 5%;  width:5px; height:5px; animation-duration: 12s; }
#global-particles span:nth-child(2)  { left: 12%; width:7px; height:7px; animation-duration: 14s; }
#global-particles span:nth-child(3)  { left: 18%; width:6px; height:6px; animation-duration: 11s; }
#global-particles span:nth-child(4)  { left: 25%; width:5px; height:5px; animation-duration: 10s; }
#global-particles span:nth-child(5)  { left: 30%; width:9px; height:9px; animation-duration: 16s; }
#global-particles span:nth-child(6)  { left: 38%; width:6px; height:6px; animation-duration: 9s; }
#global-particles span:nth-child(7)  { left: 45%; width:7px; height:7px; animation-duration: 15s; }
#global-particles span:nth-child(8)  { left: 52%; width:8px; height:8px; animation-duration: 12s; }
#global-particles span:nth-child(9)  { left: 60%; width:6px; height:6px; animation-duration: 11s; }
#global-particles span:nth-child(10) { left: 67%; width:5px; height:5px; animation-duration: 13s; }
#global-particles span:nth-child(11) { left: 74%; width:8px; height:8px; animation-duration: 14s; }
#global-particles span:nth-child(12) { left: 80%; width:6px; height:6px; animation-duration: 12s; }
#global-particles span:nth-child(13) { left: 87%; width:7px; height:7px; animation-duration: 10s; }
#global-particles span:nth-child(14) { left: 92%; width:5px; height:5px; animation-duration: 11s; }
#global-particles span:nth-child(15) { left: 97%; width:9px; height:9px; animation-duration: 16s; }

/* FLOAT UP ANIMATION */
@keyframes particleFloat {
  0% {
    transform: translateY(120vh) scale(0.5);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-10vh) scale(1.3);
    opacity: 0;
  }
}

/* COLOR SHIFT ANIMATION */
@keyframes particleColor {
  0%   { background: #ff00ff; }
  25%  { background: #00eaff; }
  50%  { background: #00ff6a; }
  75%  { background: #ffea00; }
  100% { background: #ff006a; }
}



/* ===== HEADER ===== */
.site-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1rem 2rem;
  position:sticky;
  top:0;
  background:rgba(15,19,29,.6);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:saturate(140%) blur(16px);
  z-index:10;
}

.site-header .logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.3px;
  color:#e6f4ff;
}
/* Desktop */
.logoimg {
    height: 60px;
    width: auto;
    max-width: 100%;
}

/* Mobile */
@media (max-width: 767px) {
    .logoimg {
        height: 50px;
        width: 100%;
        object-fit: contain;
    }
}


.site-nav a{
  color:#cfe3ff;
  text-decoration:none;
  font-weight:600;
  margin:0 .75rem;
  transition:.25s;
}
.site-nav a:hover{color:#fff}

/* ===== HEADER ENHANCEMENTS ===== */
.nav-list{
  list-style:none;
  display:flex;
  align-items:center;
  gap:1.25rem;
  margin:0;
  padding:0;
}
.nav-link{
  color:#cfe3ff;
  text-decoration:none;
  font-weight:600;
  font-size:.95rem;
  position:relative;
  transition:.25s;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:0; bottom:-4px;
  width:0; height:2px;
  background:var(--grad);
  transition:.3s;
  border-radius:4px;
}
.nav-link:hover{color:#fff;}
.nav-link:hover::after{width:100%;}

/* ===== DROPDOWN ===== */
.dropdown{
  position:relative;
}
.dropdown-menu{
  position:absolute;
  top:120%;
  left:0;
  background:rgba(15,19,29,.9);
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  min-width:180px;
  display:none;
  flex-direction:column;
  box-shadow:0 8px 24px rgba(0,0,0,.4);
  z-index:100;
  backdrop-filter:blur(10px);
}
.dropdown-menu a{
  color:#cfe3ff;
  text-decoration:none;
  padding:.65rem 1rem;
  display:block;
  font-size:.9rem;
  transition:.25s;
}
.dropdown-menu a:hover{
  background:rgba(255,255,255,.08);
  color:#fff;
}
.dropdown:hover .dropdown-menu{
  display:flex;
}

/* ===== CTA Buttons in Header ===== */
.header-cta{
  display:flex;
  gap:.6rem;
  align-items:center;
}
@media(max-width:960px){
  .nav-list{display:none;}
}


/* ===== FIXED FULLSCREEN MOBILE MENU LAYOUT ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  z-index: 9999; /* ensure above all content */
  background: radial-gradient(circle at 30% 30%, rgba(16,24,38,.98) 0%, rgba(7,11,18,.98) 100%);
  backdrop-filter: blur(22px) saturate(180%);
  overflow-y: auto;
  padding: 4rem 1.5rem 2rem;
  box-sizing: border-box;
  animation: fadeIn .35s ease both;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* center + spacing for links */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 400px;
  margin-top: 2rem;
}

.mobile-nav-links a {
  color: #eaf2ff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  transition: all .25s ease;
  width: 100%;
  text-align: center;
}
.mobile-nav-links a:hover {
  color: #fff;
  transform: scale(1.04);
}

/* buttons take full width with consistent spacing */
.mobile-nav-links .btn,
.mobile-nav-links .btn-ghost {
  width: 100%;
  max-width: 260px;
  text-align: center;
  margin-top: .75rem;
}

/* close button positioning */
.menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #eaf2ff;
  cursor: pointer;
  transition: opacity .25s;
}
.menu-close:hover {opacity: .7;}

/* animation */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(1.05);}
  to {opacity: 1; transform: scale(1);}
}

/* disable scroll under overlay */
body.menu-open {
  overflow: hidden;
}

/* RESPONSIVE TRIGGER */
@media (max-width: 960px) {
  .desktop-nav,
  .header-cta {display: none !important;}
  .menu-toggle {display: block;}
}

/* ===== DESKTOP & MOBILE MENU VISIBILITY FIX ===== */

/* Hide mobile elements on desktop */
.menu-toggle {
  display: none !important;
}

/* Show mobile menu + hide desktop nav below 960px */
@media (max-width: 960px) {
  .desktop-nav,
  .header-cta {
    display: none !important;
  }

  .menu-toggle {
    display: block !important;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
  }

  /* Ensure icon color & alignment */
  .menu-toggle svg {
    stroke: #eaf2ff;
    transition: opacity .25s;
  }

  .menu-toggle:hover svg {
    opacity: .85;
  }
}


/* ===== MOBILE DROPDOWNS ===== */
.mobile-dropdown {
  width: 100%;
  text-align: center;
}

.mobile-dropdown summary {
  font-size: 1.3rem;
  font-weight: 600;
  color: #eaf2ff;
  cursor: pointer;
  list-style: none;
  margin: 0.5rem 0;
  transition: color .25s;
}
.mobile-dropdown summary::-webkit-details-marker {
  display: none;
}
.mobile-dropdown[open] summary {
  color: #0ea5ea;
}

.mobile-submenu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
  animation: fadeIn .3s ease both;
}
.mobile-submenu a {
  font-size: 1.05rem;
  color: #cfe3ff;
  text-decoration: none;
  transition: color .25s;
}
.mobile-submenu a:hover {
  color: #fff;
}

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









/* ===== FOOTER ===== */
.site-footer{
  margin-top:auto;
  padding:1.5rem 2rem;
  color:#96a7c6;
  font-size:.9rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(15,19,29,.6);
  backdrop-filter:saturate(140%) blur(16px);
}

.site-footer .links a{
  color:#9fb2d8;
  margin-left:1rem;
  text-decoration:none;
  font-weight:600;
}
.site-footer .links a:hover{color:#fff}
/* ===== FOOTER ===== */
.site-footer {
  width: 100%;
  background: linear-gradient(180deg, #060b13 0%, #020408 100%);
  color: #cfe3ff;
  font-family: 'Inter', sans-serif;
  padding: 4rem 1rem 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

/* Brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}
.footer-brand p {
  margin-top: .75rem;
  color: #9fb2d8;
  line-height: 1.6;
  font-size: .95rem;
  max-width: 260px;
}

/* Columns */
.footer-links h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: .75rem;
  font-weight: 600;
}
.footer-links a {
  display: block;
  color: #cfe3ff;
  text-decoration: none;
  margin-bottom: .45rem;
  font-size: .95rem;
  transition: .25s;
}
.footer-links a:hover {
  color: #0ea5ea;
  transform: translateX(3px);
}
/* Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem;
  padding-top: 1.25rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: #96a7c6;
  font-size: .9rem;
}
.footer-bottom-links a {
  color: #9fb2d8;
  margin-left: 1rem;
  text-decoration: none;
  font-size: .9rem;
  transition: color .25s;
}
.footer-bottom-links a:hover {
  color: #0ea5ea;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    text-align: center;
  }
  .footer-brand p {
    margin: 0 auto;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links a {
    margin: 0 .6rem;
  }
}























/* ===== BUTTONS ===== */
.btn,
.btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1rem;
  border-radius:14px;
  font-weight:700;
  cursor:pointer;
  transition:.25s;
  text-decoration:none;
}
.btn{
  background:var(--grad);
  color:#051019;
  border:none;
}
.btn:hover{opacity:.9}

.btn-ghost{
  background:rgba(255,255,255,.06);
  color:#eaf2ff;
  border:1px solid rgba(255,255,255,.15);
}
.btn-ghost:hover{
  background:rgba(255,255,255,.12);
}







/* ===== TEXT & TITLES ===== */
h1,h2,h3{
  color:#fff;
  line-height:1.1;
}
h1{
  background:var(--grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 10px 40px rgba(14,165,234,.25);
}










/* ============================================
   YOUR EXISTING CSS BELOW (unchanged)
   ============================================ */

/* hero container */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: nowrap;
}

/* text */
.hero-text {
  flex: 0 0 48%;
  z-index: 5;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero .lead {
  color: #cfe3ff;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* image area */
.hero-img {
  flex: 0 0 52%;
  display: flex;
  justify-content: flex-end;
}

/* mobile image frame */
@media (max-width: 768px) {
  .hero-img-frame {
    margin: 12px !important;
    margin-top: 20px;
    display: block;
  }
  .hero-brain-img {
    border-radius: 18px;
  }
}

.hero-img img {
  width: 100%;
  max-width: 780px;
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(0,0,0,.6);
}

/* responsive */
@media (max-width: 991px) {
  .hero-container {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
  }
  .hero-text,
  .hero-img {
    flex: 1 1 100%;
    justify-content: center;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero .lead {
    font-size: 1rem;
  }
  .hero-img img {
    max-width: 95%;
  }
}

/* bordered frame */
.hero-img-frame {
  display: inline-block;
  border-radius: 24px;
  padding: 0;
  position: relative;
}

.hero-img-frame::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 26px;
  border: 4px solid transparent;
  background: linear-gradient(
    120deg,
    #ff00ff,
    #00eaff,
    #00ff6a,
    #ffea00,
    #ff6600,
    #ff00ff
  ) border-box;
  -webkit-mask:
      linear-gradient(#fff 0 0) padding-box,
      linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  background-size: 300% 300%;
  animation: borderAnim 4s linear infinite, borderBlink 2.5s ease-in-out infinite;
  z-index: 2;
}

.hero-brain-img {
  display: block;
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 3;
}

/* border animations */
@keyframes borderAnim {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes borderBlink {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.45); }
}


/* ===== GLOBAL SECTION STYLING ===== */
section {
  position: relative;
  width: 100%;
  padding: 6rem 1.5rem;
  box-sizing: border-box;
  z-index: 2;
}
.container {
  max-width: 1600px;
  margin: 0 auto;
}



/* ========== FEATURES ========== */
sth-features {
  height:70vh;
    padding: 100px 20px;
    text-align: center;
    background-color: rgba(120, 100, 255, 0.3);
   
}

.sth-title {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 60px;
}


/* ========== GRID ========== */
.sth-features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}


/* ========== CARD DESIGN ========== */
.sth-card {
  
    padding: 50px 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    position: relative;
    color: #fff;
    overflow: hidden;
    text-align: center;
}

/* Neon Animated BORDER (REAL BORDER) */
.sth-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 24px;

    background: linear-gradient(
        120deg,
        #ff00ff,
        #00eaff,
        #00ff6a,
        #ffea00,
        #ff6600,
        #ff00ff
    );

    background-size: 300% 300%;

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

    animation: sth-borderMove 4s linear infinite,
               sth-borderPulse 3s ease-in-out infinite;

    z-index: 1;
}


/* ========== ICON STYLE ========== */
.sth-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* glowing effect */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4),
                 0 0 20px rgba(255, 255, 255, 0.2);
}

.sth-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.sth-card p {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.7;
}


/* ========== ANIMATIONS ========== */
@keyframes sth-borderMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes sth-borderPulse {
    0%, 100% { filter: brightness(1); }
    50%      { filter: brightness(1.4); }
}


/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    .sth-card {
        width: 100%;
        max-width: 360px;
        padding: 45px 30px;
    }

    .sth-title {
        font-size: 2.2rem;
    }

    .sth-icon {
        font-size: 2.4rem;
    }
}







/* ========== TOOLS SECTION ========== */
.tools-section {
    padding: 80px 20px;
    background: transparent;
}

.tools-header {
    text-align: center;
    margin-bottom: 60px;
}

.tools-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #22d3ee;
    margin-bottom: 20px;
}

.tools-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tools-subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ========== TOOLS GRID ========== */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tools-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}


/* ========== TOOL CARD WITH RAINBOW BORDER ========== */
.tool-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
}

.tool-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        #ff0080,
        #ff8c00,
        #40e0d0,
        #7b68ee,
        #ff0080
    );
    background-size: 300% 300%;
    animation: rainbowBorderSpin 6s linear infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
    z-index: -1;
}

.tool-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25);
}

.tool-card:hover::before {
    opacity: 1;
    animation-duration: 3s;
}

@keyframes rainbowBorderSpin {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* ========== TOOL ICON ========== */
.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.4));
}


/* ========== TOOL CARD TEXT ========== */
.tool-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.tool-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
    flex-grow: 1;
    margin-bottom: 15px;
}

.tool-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 50%;
    font-size: 1.2rem;
    color: #22d3ee;
    margin-top: auto;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.tool-card:hover .tool-arrow {
    background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
    color: #fff;
    transform: translateX(5px);
}


/* ========== TOOLS CTA ========== */
.tools-cta {
    text-align: center;
    margin-top: 50px;
}

.tools-cta .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #0ea5e9, #8b5cf6, #ec4899);
    color: #fff;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
}

.tools-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
}


/* ========== TOOLS MOBILE ========== */
@media (max-width: 768px) {
    .tools-section {
        padding: 60px 15px;
    }
    
    .tools-title {
        font-size: 2.2rem;
    }
    
    .tools-subtitle {
        font-size: 1rem;
    }
    
    .tool-card {
        padding: 28px 22px;
    }
    
    .tool-icon {
        font-size: 2.2rem;
    }
}


.hr-glow {
  border: 0;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, #ff00ff, #00eaff, #00ff6a, #ffea00, #ff6600, #ff00ff);
  background-size: 300% 100%;
  animation: hrGlowAnim 4s linear infinite;
  margin: 40px 0;
}

@keyframes hrGlowAnim {
  0% { background-position: 0% 50%; filter: brightness(1); }
  50% { background-position: 100% 50%; filter: brightness(1.5); }
  100% { background-position: 0% 50%; filter: brightness(1); }
}

.hr-dot {
  position: relative;
  border: none;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 40px 0;
}

.hr-dot::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -10%;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #00eaff, #6a5af9);
  border-radius: 50%;
  animation: hrDotMove 3.5s infinite ease-in-out;
}

@keyframes hrDotMove {
  0%   { left: -10%; opacity: 0; transform: scale(0.6); }
  20%  { opacity: 1; }
  50%  { left: 50%; transform: scale(1); }
  80%  { opacity: 1; }
  100% { left: 110%; opacity: 0; transform: scale(0.6); }
}

.hr-dash {
  border: none;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 10px,
    #6a5af9 10px 20px
  );
  animation: dashGlow 1.2s linear infinite;
  opacity: 0.9;
  border-radius: 4px;
  margin: 40px 0;
}

@keyframes dashGlow {
  from { background-position: 0; }
  to   { background-position: 20px; }
}

.hr-center {
  border: 0;
  height: 2px;
  margin: 50px 0;
  background: radial-gradient(circle, #00eaff, transparent 70%);
  animation: hrCenterPulse 2.5s infinite ease-in-out;
}

@keyframes hrCenterPulse {
  0%   { opacity: 0.4; transform: scaleX(0.7); }
  50%  { opacity: 1;   transform: scaleX(1); }
  100% { opacity: 0.4; transform: scaleX(0.7); }
}

.hr-dual {
  border: none;
  height: 2px;
  margin: 50px 0;
  background: linear-gradient(
    90deg,
    transparent,
    #6a5af9,
    transparent
  );
  animation: hrDual 3s infinite ease-in-out;
}

@keyframes hrDual {
  0% { opacity: .4; transform: scaleX(.7); }
  50% { opacity: 1; transform: scaleX(1); }
  100% { opacity: .4; transform: scaleX(.7); }
}



/* ================================
   ABOUT SECTION – MODERN DESIGN
================================ */
.about-section {
    padding: 80px 20px;
    background: transparent;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #f472b6;
    margin-bottom: 20px;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ========== ABOUT CONTENT LAYOUT ========== */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto 50px;
}

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


/* ========== ABOUT TEXT CARDS ========== */
.about-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text-card {
    position: relative;
    padding: 30px 35px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.about-text-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        #ec4899,
        #8b5cf6,
        #0ea5e9,
        #10b981,
        #ec4899
    );
    background-size: 300% 300%;
    animation: aboutBorderSpin 8s linear infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    z-index: -1;
}

.about-text-card:hover::before {
    opacity: 1;
    animation-duration: 4s;
}

@keyframes aboutBorderSpin {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.about-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-text-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.about-text-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #94a3b8;
}


/* ========== STATS CARDS ========== */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        #22d3ee,
        #8b5cf6,
        #ec4899,
        #22d3ee
    );
    background-size: 300% 300%;
    animation: statBorderSpin 6s linear infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
    z-index: -1;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
}

@keyframes statBorderSpin {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #22d3ee, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #94a3b8;
    font-weight: 500;
}


/* ========== ABOUT FEATURES ========== */
.about-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
}


/* ========== ABOUT CTA ========== */
.about-cta {
    text-align: center;
}

.about-cta .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #0ea5e9);
    color: #fff;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.3);
}

.about-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.5);
}


/* ========== ABOUT MOBILE ========== */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 15px;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-text-card {
        padding: 25px 20px;
    }
    
    .about-text-card h3 {
        font-size: 1.2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-features {
        gap: 12px;
    }
    
    .feature-item {
        padding: 10px 18px;
    }
}


.hr-full-glow {
    width: 100%;
    height: 4px;
    border: none;
    background: linear-gradient(90deg, #00eaff, #6a5af9, #ff00ff, #ff6600, #00ff6a);
    background-size: 300% 100%;
    animation: hrGlowMove 4s linear infinite, hrGlowPulse 2s ease-in-out infinite;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.8),
                0 0 40px rgba(255, 0, 255, 0.4);
    margin: 60px 0;
}

@keyframes hrGlowMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes hrGlowPulse {
    0%, 100% { filter: brightness(1); }
    50%      { filter: brightness(1.8); }
}

.hr-soft-glow {
    width: 100%;
    height: 2px;
    border: none;
    margin: 0px 0;
    background: linear-gradient(
        90deg,
        rgba(255,0,255,0.8),
        rgba(0,255,255,0.8),
        rgba(0,255,106,0.8),
        rgba(255,234,0,0.8),
        rgba(255,102,0,0.8),
        rgba(255,0,255,0.8)
    );
    background-size: 300% 100%;
    border-radius: 40px;
    animation: hrSoftMove 5s ease infinite;
    box-shadow: 0 0 35px rgba(255,255,255,0.25);
}

@keyframes hrSoftMove {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hr-laser {
    width: 100%;
    border: none;
    height: 2px;
    background: #00eaff;
    margin: 60px 0;
    position: relative;
    box-shadow: 0 0 15px #00eaff, 0 0 40px #00eaff;
    animation: hrLaserPulse 2.5s infinite ease-in-out;
}

@keyframes hrLaserPulse {
    0%, 100% { opacity: 0.6; filter: blur(1px); }
    50%      { opacity: 1; filter: blur(2px); }
}







/* ============================
   SMARTTOOLSHOUSE FOOTER
============================ */
.stt-footer {
    background: #080b12;
    padding: 70px 20px 40px;
    position: relative;
    overflow: hidden;
}

/* Floating particles (animated background) */
.stt-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0,255,255,0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255,0,255,0.06) 0%, transparent 40%);
    animation: footerPulse 6s ease-in-out infinite alternate;
    opacity: 0.7;
}

@keyframes footerPulse {
    0% { opacity: .4; }
    100% { opacity: .9; }
}

/* Footer container */
.footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 3;
}

/* Titles */
.footer-col h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

/* Neon underline */
.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00eaff, #ff00ff);
    animation: underlineGlow 3s infinite ease-in-out;
}

@keyframes underlineGlow {
    0% { filter: brightness(0.8); }
    50% { filter: brightness(2); }
    100% { filter: brightness(0.8); }
}

/* List styling */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* Links */
.footer-col ul li a {
    color: #cbd5e1;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
    position: relative;
}

/* Hover glow effect */
.footer-col ul li a:hover {
    color: #00eaff;
    text-shadow: 0 0 8px #00eaff, 0 0 18px #00eaff;
    transform: translateX(6px);
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 3;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #9ba4b5;
    font-size: 0.95rem;
    margin: 0;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-copyright .powered-by {
    font-size: 0.85rem;
    color: #6b7893;
}

.footer-copyright .powered-by a {
    color: #0ea5ea;
    text-decoration: none;
    transition: color 0.25s;
}

.footer-copyright .powered-by a:hover {
    color: #7c3aed;
}

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

.footer-legal-links a {
    color: #9ba4b5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s;
}

.footer-legal-links a:hover {
    color: #0ea5ea;
}

.footer-legal-links .separator {
    color: rgba(255,255,255,0.2);
    font-size: 0.8rem;
}

/* Bottom Social Icons */
.social-icons-bottom {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ba4b5;
    transition: all 0.3s ease;
}

.social-icon-sm svg {
    fill: #9ba4b5;
    transition: fill 0.3s ease;
}

.social-icon-sm:hover {
    transform: translateY(-3px);
}

.social-icon-sm[title="Facebook"]:hover {
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.15);
}
.social-icon-sm[title="Facebook"]:hover svg {
    fill: #1877f2;
}

.social-icon-sm[title="Instagram"]:hover {
    border-color: #e4405f;
    background: rgba(228, 64, 95, 0.15);
}
.social-icon-sm[title="Instagram"]:hover svg {
    fill: #e4405f;
}

.social-icon-sm[title="LinkedIn"]:hover {
    border-color: #0a66c2;
    background: rgba(10, 102, 194, 0.15);
}
.social-icon-sm[title="LinkedIn"]:hover svg {
    fill: #0a66c2;
}

/* Social Icons */
.footer-social {
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-4px);
    border-color: #0ea5e9;
    background: rgba(14, 165, 233, 0.1);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.25);
}

.social-icon:hover svg {
    fill: #0ea5e9;
}

.social-icon svg {
    width: 22px;
    height: 22px;
    transition: fill 0.3s ease;
}

/* Facebook hover */
.social-icon[title="Facebook"]:hover {
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.25);
}
.social-icon[title="Facebook"]:hover svg {
    fill: #1877f2;
}

/* Instagram hover */
.social-icon[title="Instagram"]:hover {
    border-color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.25);
}
.social-icon[title="Instagram"]:hover svg {
    fill: #e4405f;
}

/* LinkedIn hover */
.social-icon[title="LinkedIn"]:hover {
    border-color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
    box-shadow: 0 8px 25px rgba(10, 102, 194, 0.25);
}
.social-icon[title="LinkedIn"]:hover svg {
    fill: #0a66c2;
}


/* ============================
   RESPONSIVE
============================ */

/* Tablet */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-col {
        padding: 10px 0;
    }

    .footer-col ul li a:hover {
        transform: translateX(0);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-copyright {
        align-items: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .social-icons-bottom {
        justify-content: center;
    }
}






/* =============== SMARTTOOLSHOUSE ABOUT =============== */
.sth-about-wrap {
    padding: 80px 0 70px;
    background: radial-gradient(900px circle at 0 0, rgba(111,66,193,0.16), transparent 55%),
                radial-gradient(900px circle at 100% 20%, rgba(59,130,246,0.16), transparent 55%),
                #050711;
    color: #f9fafb;
}

.sth-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

/* HERO */
.sth-about-hero {
    text-align: center;
    margin-bottom: 64px;
}

.sth-kicker {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #a5b4fc;
    margin-bottom: 8px;
    font-weight: 600;
}

.sth-about-hero h1 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 14px;
    background: linear-gradient(90deg,#f97316,#ec4899,#6366f1);
    -webkit-background-clip: text;
    color: transparent;
}

.sth-about-hero .sth-sub {
    max-width: 640px;
    margin: 0 auto;
    font-size: 16px;
    opacity: .85;
}

/* GRID / LAYOUT */
.sth-row {
    display: flex;
    flex-wrap: wrap;
}

.sth-col-6 { width: 50%; }
.sth-col-7 { width: 58.333%; }
.sth-col-5 { width: 41.667%; }
.sth-gap-40 { gap: 40px; }

.sth-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
}
.sth-grid-1-m {}
.sth-gap-24 { gap: 24px; }

.sth-mb-60 { margin-bottom: 60px; }
.sth-mt-60 { margin-top: 60px; }

/* CARDS */
.sth-card {
    background: linear-gradient(135deg, rgba(15,23,42,0.98), rgba(15,23,42,0.85));
    border-radius: 18px;
    padding: 24px 24px 22px;
    border: 1px solid rgba(148,163,184,0.16);
    box-shadow: 0 18px 40px rgba(15,23,42,0.65);
}

.sth-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.sth-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #e5e7eb;
}

/* SECTION HEADING */
.sth-section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.sth-section-heading h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.sth-section-heading p {
    font-size: 15px;
    opacity: .8;
}

/* FEATURES */
.sth-feature-card {
    background: radial-gradient(circle at 0 0, rgba(56,189,248,0.16), transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(236,72,153,0.16), transparent 55%),
                rgba(15,23,42,0.96);
    border-radius: 18px;
    padding: 22px 20px 20px;
    border: 1px solid rgba(55,65,81,0.8);
    box-shadow: 0 16px 32px rgba(15,23,42,0.8);
}

.sth-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.5);
    margin-bottom: 14px;
    font-size: 20px;
}

.sth-feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.sth-feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #e5e7eb;
}

/* WHY BLOCK */
.sth-why-block {
    border-radius: 22px;
    padding: 28px 26px;
    background: linear-gradient(135deg, rgba(79,70,229,0.22), rgba(236,72,153,0.25));
    border: 1px solid rgba(165,180,252,0.6);
}

.sth-why-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.sth-why-content ul {
    padding-left: 18px;
    margin: 0;
}

.sth-why-content li {
    font-size: 15px;
    line-height: 1.9;
}

/* CTA / VISION */
.sth-text-gradient {
    background: linear-gradient(90deg,#22c55e,#06b6d4);
    -webkit-background-clip: text;
    color: transparent;
}

.sth-cta-card {
    background: linear-gradient(135deg, rgba(15,23,42,0.96), rgba(15,23,42,0.9));
    border-radius: 20px;
    padding: 22px 22px 20px;
    border: 1px solid rgba(55,65,81,0.9);
    box-shadow: 0 18px 40px rgba(15,23,42,0.9);
}

.sth-cta-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.sth-cta-card p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.sth-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(90deg,#6366f1,#ec4899,#f97316);
    color: #0b1020;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0,0,0,0.7);
}

.sth-cta-btn:hover {
    filter: brightness(1.05);
}

/* BOTTOM NOTE */
.sth-bottom-note {
    margin-top: 36px;
    text-align: center;
    font-size: 14px;
    opacity: .85;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 991px) {
    .sth-col-6,
    .sth-col-7,
    .sth-col-5 {
        width: 100%;
    }
    .sth-row { gap: 24px; }
}

@media (max-width: 767px) {
    .sth-about-wrap {
        padding: 64px 0 60px;
    }
    .sth-about-hero h1 {
        font-size: 26px;
    }
    .sth-grid-3 {
        grid-template-columns: 1fr;
    }
    .sth-container {
        padding: 0 16px;
    }
    .sth-mb-60 { margin-bottom: 40px; }
}


/* ========== MODERN HERO SECTION ========== */
.hero-modern {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #7c3aed, #0ea5ea);
  top: -200px;
  left: -100px;
  animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #ef4444, #2af598);
  bottom: -150px;
  right: -100px;
  animation: glowPulse 8s ease-in-out infinite 4s;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(14, 165, 234, 0.15);
  border: 1px solid rgba(14, 165, 234, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0ea5ea;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #2af598;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
  animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: #b8c9e8;
  margin-bottom: 2rem;
  max-width: 540px;
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.hero-btn-primary,
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-primary {
  background: var(--grad);
  color: #051019;
  box-shadow: 0 4px 20px rgba(14, 165, 234, 0.3);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(14, 165, 234, 0.4);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #eaf2ff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-icon {
  font-size: 1.1rem;
}

.trust-text {
  font-size: 0.9rem;
  color: #9fb2d8;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-visual {
  position: relative;
  z-index: 5;
  animation: fadeInRight 0.8s ease-out 0.3s backwards;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  background: radial-gradient(circle, rgba(14, 165, 234, 0.3) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

.hero-image-frame {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 26px;
  padding: 3px;
  background: linear-gradient(120deg, #ff00ff, #00eaff, #00ff6a, #ffea00, #ff6600, #ff00ff);
  background-size: 300% 300%;
  animation: borderAnim 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.hero-image-frame img {
  width: 100%;
  max-width: 550px;
  display: block;
  border-radius: 20px;
}

.floating-badge {
  position: absolute;
  padding: 0.6rem 1.2rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  backdrop-filter: blur(10px);
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.floating-badge-1 {
  top: 10%;
  left: -10%;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.9));
  animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge-2 {
  top: 50%;
  right: -8%;
  background: linear-gradient(135deg, rgba(14, 165, 234, 0.9), rgba(59, 130, 246, 0.9));
  animation: floatBadge 4s ease-in-out infinite 1s;
}

.floating-badge-3 {
  bottom: 15%;
  left: 5%;
  background: linear-gradient(135deg, rgba(42, 245, 152, 0.9), rgba(16, 185, 129, 0.9));
  animation: floatBadge 4s ease-in-out infinite 2s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Responsive Styles */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-visual {
    order: 2;
  }
  
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .hero-image-frame img {
    max-width: 450px;
  }
  
  .floating-badge-1 {
    left: 5%;
  }
  
  .floating-badge-2 {
    right: 5%;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    padding: 3rem 1rem 2rem;
    min-height: auto;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .trust-divider {
    display: none;
  }
  
  .hero-image-frame img {
    max-width: 100%;
  }
  
  .floating-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  .floating-badge-1 {
    top: 5%;
    left: 2%;
  }
  
  .floating-badge-2 {
    top: 40%;
    right: 2%;
  }
  
  .floating-badge-3 {
    bottom: 10%;
    left: 2%;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .floating-badge {
    display: none;
  }
}



/* ========== WHY SMARTTOOLSHOUSE SECTION ========== */
.why-section {
  padding: 5rem 1.5rem;
  position: relative;
}

.why-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--bg1);
  margin-bottom: 1rem;
  padding: 0.5rem 1.25rem;
  background: rgba(14, 165, 234, 0.1);
  border: 1px solid rgba(14, 165, 234, 0.2);
  border-radius: 50px;
}

.why-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-subtitle {
  font-size: 1.1rem;
  color: #9fb2d8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.why-card {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

/* Animated Rainbow Border */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 20px;
  background: linear-gradient(
    120deg,
    #ff00ff,
    #00eaff,
    #00ff6a,
    #ffea00,
    #ff6600,
    #ff00ff
  );
  background-size: 300% 300%;
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rainbowBorder 4s linear infinite, borderPulse 3s ease-in-out infinite;
  z-index: -1;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(14, 165, 234, 0.15);
}

/* Card inner glow on hover */
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 0%, rgba(14, 165, 234, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.why-card:hover::after {
  opacity: 1;
}

@keyframes rainbowBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes borderPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
}

.why-card:nth-child(1) .why-icon { animation-delay: 0s; }
.why-card:nth-child(2) .why-icon { animation-delay: 0.2s; }
.why-card:nth-child(3) .why-icon { animation-delay: 0.4s; }
.why-card:nth-child(4) .why-icon { animation-delay: 0.6s; }
.why-card:nth-child(5) .why-icon { animation-delay: 0.8s; }
.why-card:nth-child(6) .why-icon { animation-delay: 1s; }
.why-card:nth-child(7) .why-icon { animation-delay: 1.2s; }
.why-card:nth-child(8) .why-icon { animation-delay: 1.4s; }

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.92rem;
  color: #9fb2d8;
  line-height: 1.7;
}

/* Responsive Grid */
@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 3rem 1rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .why-card {
    padding: 1.75rem;
  }
  
  .why-icon {
    font-size: 2rem;
  }
  
  .why-card h3 {
    font-size: 1.1rem;
  }
  
  .why-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .why-header {
    margin-bottom: 2.5rem;
  }
  
  .why-label {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }
  
  .why-subtitle {
    font-size: 1rem;
  }
}


/* ========================================
   TOOLS PAGE STYLES
======================================== */

.tools-page-hero {
    padding: 60px 20px 40px;
    background: transparent;
}

.tools-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.tools-page-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #22d3ee;
    margin-bottom: 20px;
}

.tools-page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff, #22d3ee, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tools-page-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ========== SEARCH BOX ========== */
.tools-search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto 30px;
}

.tools-search-input {
    width: 100%;
    padding: 16px 50px 16px 24px;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.tools-search-input::placeholder {
    color: #64748b;
}

.tools-search-input:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.tools-search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}


/* ========== FILTER BUTTONS ========== */
.tools-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: #fff;
}

.filter-btn.active {
    background: linear-gradient(135deg, #8b5cf6, #0ea5e9);
    border-color: transparent;
    color: #fff;
}


/* ========== TOOLS PAGE CONTENT ========== */
.tools-page-content {
    padding: 40px 20px 80px;
}


/* ========== TOOLS CATEGORY ========== */
.tools-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-icon {
    font-size: 2rem;
}

.category-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    flex-grow: 1;
}

.category-count {
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: #a78bfa;
    font-weight: 600;
}


/* ========== TOOLS CATEGORY GRID ========== */
.tools-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .tools-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .tools-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tools-category-grid {
        grid-template-columns: 1fr;
    }
}


/* ========== TOOL ITEM CARD ========== */
.tool-item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
}

.tool-item::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        #ff0080,
        #ff8c00,
        #40e0d0,
        #7b68ee,
        #ff0080
    );
    background-size: 300% 300%;
    animation: toolItemBorder 8s linear infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
    z-index: -1;
}

.tool-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.25);
}

.tool-item:hover::before {
    opacity: 1;
    animation-duration: 3s;
}

@keyframes toolItemBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.tool-item-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.4));
}

.tool-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.tool-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #94a3b8;
    margin: 0;
}


/* ========== TOOLS STATS BAR ========== */
.tools-stats-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
    margin-top: 60px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.stat-item .stat-icon {
    font-size: 2rem;
}

.stat-item .stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #22d3ee, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-item .stat-name {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}


/* ========== TOOLS PAGE MOBILE ========== */
@media (max-width: 768px) {
    .tools-page-hero {
        padding: 40px 15px 30px;
    }
    
    .tools-page-title {
        font-size: 2.5rem;
    }
    
    .tools-page-subtitle {
        font-size: 1rem;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .category-header h2 {
        font-size: 1.5rem;
    }
    
    .tool-item {
        padding: 22px 20px;
    }
    
    .tool-item-icon {
        font-size: 1.8rem;
    }
    
    .tool-item h3 {
        font-size: 1.05rem;
    }
    
    .tools-stats-bar {
        gap: 25px;
        padding: 30px 20px;
    }
    
    .stat-item .stat-value {
        font-size: 1.5rem;
    }
}



/* ========== AUTHENTICATION PAGES ========== */
.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.auth-container {
    width: 100%;
    max-width: 460px;
}

.auth-card {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 20px;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.auth-icon svg {
    stroke: #0ea5e9;
}

.auth-header h1 {
    font-size: 1.85rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.auth-header p {
    color: #94a3b8;
    font-size: 1rem;
}

.auth-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.auth-alert-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.auth-alert-success svg {
    stroke: #22c55e;
    flex-shrink: 0;
}

.auth-alert-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.auth-alert-error svg {
    stroke: #ef4444;
    flex-shrink: 0;
}

.auth-form .form-group {
    margin-bottom: 22px;
}

.auth-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.auth-form .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-form .input-wrapper svg {
    position: absolute;
    left: 16px;
    stroke: #64748b;
    pointer-events: none;
    transition: stroke 0.3s ease;
}

.auth-form .input-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 50px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #f1f5f9;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-form .input-wrapper input::placeholder {
    color: #64748b;
}

.auth-form .input-wrapper input:focus {
    outline: none;
    border-color: #0ea5e9;
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

.auth-form .input-wrapper:has(input:focus) svg {
    stroke: #0ea5e9;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #94a3b8;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0ea5e9;
    cursor: pointer;
}

.forgot-link {
    color: #0ea5e9;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #38bdf8;
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.auth-btn svg {
    transition: transform 0.3s ease;
}

.auth-btn:hover svg {
    transform: translateX(4px);
}

.auth-footer {
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-footer p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.auth-footer a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #38bdf8;
    text-decoration: underline;
}

/* ========== USER DASHBOARD ========== */
.dashboard-section {
    padding: 60px 20px 80px;
    min-height: calc(100vh - 200px);
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 30px 35px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-avatar {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
    border-radius: 16px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.user-info h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 4px;
}

.user-info p {
    color: #94a3b8;
    font-size: 1rem;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    color: #f87171;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.dashboard-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.dashboard-card.full-width {
    grid-column: span 2;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-header svg {
    stroke: #0ea5e9;
}

.card-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 25px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 10px;
}

.info-label {
    color: #94a3b8;
    font-size: 0.9rem;
}

.info-value {
    color: #f1f5f9;
    font-weight: 500;
}

.edit-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.edit-profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 14px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 12px;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
}

.stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
}

.quick-tools {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.quick-tool-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-tool-link:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-2px);
}

.quick-tool-link svg {
    stroke: #64748b;
    transition: stroke 0.3s ease;
}

.quick-tool-link:hover svg {
    stroke: #0ea5e9;
}

.quick-tool-link.view-all {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(168, 85, 247, 0.15));
    border-color: rgba(14, 165, 233, 0.2);
}

.quick-tool-link.view-all:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.25), rgba(168, 85, 247, 0.25));
}

/* Profile Edit Page */
.profile-section {
    padding: 60px 20px 80px;
    min-height: calc(100vh - 200px);
}

.profile-container {
    max-width: 800px;
    margin: 0 auto;
}

.profile-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
}

.profile-form .form-group {
    margin-bottom: 22px;
}

.profile-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.profile-form input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #f1f5f9;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.profile-form input:focus {
    outline: none;
    border-color: #0ea5e9;
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

.profile-form input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.save-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.danger-zone {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
}

.danger-zone .card-header svg {
    stroke: #ef4444;
}

.danger-zone p {
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.delete-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    color: #f87171;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delete-btn:hover {
    background: rgba(239, 68, 68, 0.25);
    border-color: rgba(239, 68, 68, 0.5);
}

/* Dashboard Responsive */
@media (max-width: 900px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-card.full-width {
        grid-column: span 1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 650px) {
    .dashboard-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .user-welcome {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-tools {
        grid-template-columns: 1fr;
    }
    
    .auth-card {
        padding: 32px 24px;
    }
}

/* Logout Button in Header */
.btn-logout {
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.6);
}

.btn-logout.w-full {
    width: 100%;
    text-align: center;
}

/* Profile Page Header */
.profile-page-header {
    margin-bottom: 35px;
}

.profile-page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-top: 15px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #0ea5e9;
}

.back-link svg {
    transition: transform 0.3s ease;
}

.back-link:hover svg {
    transform: translateX(-4px);
}
