/* ============================
   Dent Erased - styles.css
   No /images folder (assets in same directory)
   Locked brand orange across browsers
   ============================ */

:root{
  --bg: #050b14;
  --panel: rgba(7, 18, 34, 0.62);
  --panel-2: rgba(7, 18, 34, 0.78);
  --stroke: rgba(255,255,255,0.10);
  --stroke-2: rgba(255,255,255,0.14);

  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);

  /* LOCKED ORANGE (consistent on Safari/Chrome/Edge) */
  --brand-orange: #ff8c1a;
  --brand-orange-hover: #ffa94d;

  --brand-blue: #071427;
  --brand-blue-2:#0b1f3a;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --shadow: 0 18px 60px rgba(0,0,0,0.55);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.35);

  --max: 1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% 0%, rgba(20,55,110,0.35), transparent 60%),
              radial-gradient(900px 700px at 90% 10%, rgba(255,140,26,0.18), transparent 55%),
              var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x:hidden;
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

/* ============================
   Layout helpers
   ============================ */
.container{
  width: min(100% - 32px, var(--max));
  margin-inline:auto;
}

.section{
  padding: 72px 0;
}

.section-head h2{
  margin:0 0 10px;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing:-0.02em;
}
.section-head p{
  margin:0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

/* ============================
   Top Nav
   ============================ */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(3,8,16,0.92), rgba(3,8,16,0.55));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 180px;
}
.brand img{
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.brand .brand-text{
  line-height:1.05;
}
.brand .brand-text strong{
  display:block;
  font-size: 18px;
  letter-spacing:-0.01em;
}
.brand .brand-text span{
  display:block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 18px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.nav-links a{
  padding: 10px 10px;
  border-radius: 999px;
}
.nav-links a:hover{
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
}

/* Right side: social icons */
.nav-right{
  display:flex;
  align-items:center;
  gap: 12px;
}

.icon-link{
  width: 44px;
  height: 44px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 28px rgba(0,0,0,0.20);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.icon-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.16);
}
.icon-link svg{
  width: 22px;
  height: 22px;
  fill: rgba(255,255,255,0.9);
}

/* If you have a CTA button in the header (optional), keep it inside screen */
.call-btn{
  display:none; /* hide by default to prevent horizontal scroll on mobile */
}

/* ============================
   Hero
   ============================ */
.hero{
  position:relative;
  padding: 46px 0 36px;
  overflow:hidden;
}

.hero-aria-label{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip: rect(0 0 0 0);
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(5,11,20,0.62) 0%, rgba(5,11,20,0.92) 70%),
    url("hero.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.02);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 25% 20%, rgba(255,140,26,0.16), transparent 60%),
    radial-gradient(900px 520px at 85% 30%, rgba(0,170,255,0.12), transparent 55%);
}

.hero-content{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items:center;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.hero h1{
  margin:0 0 10px;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.05;
  letter-spacing:-0.03em;
}
.hero p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 62ch;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 8px;
}

.cta-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;

  /* LOCKED ORANGE - NO GRADIENT */
  background: var(--brand-orange) !important;
  color: #071427 !important;

  box-shadow: 0 14px 34px rgba(255,140,26,0.35);
  border: 0;
  transition: transform .15s ease, background .15s ease;
}
.cta-primary:hover{
  transform: translateY(-1px);
  background: var(--brand-orange-hover) !important;
}

.cta-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.cta-secondary:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
}

.trust-row{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  justify-items:start;
}

.trust-item{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.86);
  font-weight: 650;
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}

.trust-item .check{
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display:grid;
  place-items:center;
  background: rgba(31, 201, 106, 0.22);
  border: 1px solid rgba(31, 201, 106, 0.35);
}
.trust-item .check::before{
  content:"✓";
  font-weight: 900;
  color: rgba(185, 255, 218, 0.95);
  font-size: 14px;
  line-height: 1;
}

/* ============================
   Results section
   ============================ */
.results-title{
  margin: 54px 0 18px;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing:-0.02em;
  text-align:center;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card{
  border-radius: var(--radius-lg);
  overflow:hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.card img{
  width:100%;
  height: 210px;
  object-fit: cover;
}

.card .card-body{
  padding: 14px 14px 16px;
}
.card .card-body h3{
  margin:0;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}

/* ============================
   Footer
   ============================ */
.footer{
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.60);
  font-size: 13px;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 920px){
  .hero-content{
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .cards{
    grid-template-columns: 1fr;
  }
  .card img{
    height: 220px;
  }
}

@media (max-width: 520px){
  .nav{
    gap: 10px;
  }
  .nav-links{
    display:none; /* keep clean on mobile */
  }
  .brand img{
    width: 40px;
    height: 40px;
  }
  .icon-link{
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .hero{
    padding: 26px 0 26px;
  }
  .hero-content{
    padding: 18px;
  }
  .cta-primary, .cta-secondary{
    width: 100%;
  }
  .trust-row{
    width: 100%;
  }
  .trust-item{
    width: 100%;
    justify-content:flex-start;
  }
}
/* Pulse animation for primary CTA */
.cta-primary {
  position: relative;
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 138, 43, 0.75);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(255, 138, 43, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 138, 43, 0);
  }
}