/* =========================
   ROOT VARIABLES
========================= */
:root{
  --deep-blue:#050B1A;
  --navy:#0A1F44;
  --accent-blue:#1C4FA3;
  --gold:#C9A23F;
  --text-light:#dfe6f3;
}

/* =========================
   GLOBAL RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Segoe UI",sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--deep-blue);
  color:var(--text-light);
  padding-top:90px;
  overflow-x:hidden;
}

/* =========================
   NAVBAR
========================= */
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:18px 60px;

  z-index:1000;

  background:rgba(3,10,30,0.78);
  backdrop-filter:blur(18px);

  border-bottom:1px solid rgba(255,255,255,0.05);
}

/* LOGO */
.logo-box{
  display:flex;
  align-items:center;
  gap:16px;
}

.logo{
  width:92px;
  height:92px;
  object-fit:contain;

  border-radius:50%;
  border:2px solid var(--gold);

  padding:6px;
  background:#07152d;

  box-shadow:
  0 0 20px rgba(201,162,63,0.35),
  0 0 40px rgba(28,79,163,0.25);
}

header h1{
  font-size:20px;
  letter-spacing:3px;
  color:white;
}

/* NAV */
nav{
  display:flex;
  align-items:center;
}

nav a{
  color:var(--text-light);
  text-decoration:none;

  margin-left:35px;

  font-size:15px;

  position:relative;

  transition:all 0.3s ease;
}

nav a::after{
  content:"";

  position:absolute;
  left:0;
  bottom:-8px;

  width:0%;
  height:2px;

  background:var(--gold);

  transition:all 0.3s ease;
}

nav a:hover{
  color:var(--gold);
}

nav a:hover::after{
  width:100%;
}

/* =========================
   SECTION
========================= */
section{
  padding:100px 60px;
  position:relative;
}

/* =========================
   HERO SECTION
========================= */
.hero{
  min-height:100vh;

  display:flex;
  justify-content:space-between;
  align-items:center;

  gap:60px;

  padding:90px 60px 100px;

  position:relative;
  overflow:hidden;

  background:
  linear-gradient(rgba(2,8,25,0.88), rgba(2,8,25,0.94)),
  url('image/bg.jpg');

  background-size:cover;
  background-position:center;
}

/* GLOW EFFECT */
.hero::before{
  content:"";

  position:absolute;

  width:700px;
  height:700px;

  border-radius:50%;

  background:
  radial-gradient(
    rgba(28,79,163,0.28),
    transparent 70%
  );

  right:-180px;
  top:-120px;

  z-index:0;
}

/* HERO CONTENT */
.hero-content{
  max-width:760px;
  z-index:2;
}

.mini-title{
  color:var(--gold);

  text-transform:uppercase;
  letter-spacing:3px;

  font-size:13px;

  margin-bottom:20px;
}

.hero h2{
  font-size:72px;
  line-height:1.05;

  margin-bottom:25px;

  color:white;

  animation:fadeUp 1s ease forwards;
}

.hero span{
  color:var(--gold);
}

.hero-text{
  margin-top:18px;

  font-size:18px;
  line-height:1.9;

  color:#dce4f4;

  animation:fadeUp 1s ease forwards;
}

/* HERO BUTTONS */
.hero-buttons{
  display:flex;
  gap:20px;

  flex-wrap:wrap;

  margin-top:40px;
}

.gold-btn{
  background:var(--gold);
  color:black;

  border:none;

  padding:16px 34px;

  font-weight:700;
  letter-spacing:1px;

  border-radius:4px;

  cursor:pointer;

  transition:all 0.3s ease;
}

.gold-btn:hover{
  transform:translateY(-4px);

  box-shadow:
  0 10px 25px rgba(201,162,63,0.35);
}

.outline-btn{
  background:transparent;

  border:1px solid var(--gold);

  color:var(--gold);

  padding:16px 34px;

  font-weight:600;

  border-radius:4px;

  cursor:pointer;

  transition:all 0.3s ease;
}

.outline-btn:hover{
  background:var(--gold);
  color:black;
}

/* HERO IMAGE */
.hero-image{
  flex:1;

  display:flex;
  justify-content:center;
  align-items:center;

  z-index:2;
}

.hero-image img{
  width:100%;
  max-width:520px;

  animation:float 4s ease-in-out infinite;

  filter:
  drop-shadow(0 0 20px rgba(201,162,63,0.25))
  drop-shadow(0 0 40px rgba(28,79,163,0.3));
}

/* =========================
   TRUST STRIP
========================= */
.trust{
  background:#081327;

  text-align:center;

  padding:30px;

  border-top:1px solid rgba(255,255,255,0.05);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.trust p{
  color:#cfd8ea;
  letter-spacing:1px;
}

/* =========================
   SECTION TITLES
========================= */
.section-title{
  margin-bottom:50px;
}

.section-title h2{
  font-size:38px;
  line-height:1.3;

  max-width:700px;
}

/* =========================
   SERVICES GRID
========================= */
.services-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));

  gap:30px;
}

.service{
  background:
  rgba(255,255,255,0.03);

  border:
  1px solid rgba(255,255,255,0.05);

  padding:35px;

  border-radius:12px;

  backdrop-filter:blur(10px);

  transition:all 0.4s ease;
}

.service:hover{
  transform:translateY(-10px);

  background:
  rgba(255,255,255,0.05);

  border-color:
  rgba(201,162,63,0.5);

  box-shadow:
  0 10px 40px rgba(0,0,0,0.45);
}

.service h3{
  color:white;

  margin-bottom:15px;

  font-size:22px;
}

.service p{
  color:#cfd8ea;

  line-height:1.8;
}

/* =========================
   ABOUT PAGE
========================= */
.about{
  max-width:1100px;
  margin:auto;
}

.about h2{
  font-size:42px;
  margin-bottom:25px;
}

.about-section{
  margin-top:40px;

  padding:35px;

  border-left:4px solid var(--gold);

  border-radius:10px;

  background:
  rgba(255,255,255,0.02);

  transition:all 0.3s ease;
}

.about-section:hover{
  transform:translateY(-4px);

  background:
  rgba(255,255,255,0.04);
}

.about-section h3{
  margin-bottom:15px;
  color:white;
}

.about p{
  line-height:1.9;
}

.about ul{
  margin-top:15px;
  padding-left:20px;

  line-height:2;
}

/* =========================
   METHOD PAGE
========================= */
.method-intro{
  max-width:900px;
  margin:auto auto 70px;
}

.method-intro .subtext{
  color:var(--gold);
  margin-bottom:15px;
}

.workflow{
  max-width:950px;
  margin:auto;
}

.step{
  display:flex;
  gap:25px;

  margin-bottom:45px;

  align-items:flex-start;
}

.step-number{
  min-width:70px;

  font-size:34px;
  font-weight:bold;

  color:var(--gold);
}

.step-content{
  background:
  rgba(255,255,255,0.03);

  padding:25px;

  border-radius:10px;

  border-left:3px solid var(--gold);

  transition:all 0.3s ease;
}

.step-content:hover{
  transform:translateY(-4px);

  background:
  rgba(255,255,255,0.05);
}

.step-content h3{
  margin-bottom:12px;
}

.method-value{
  max-width:950px;

  margin:80px auto;

  padding:35px;

  border-radius:10px;

  background:
  rgba(255,255,255,0.03);
}

/* =========================
   METHOD PREVIEW
========================= */
.method-preview{
  text-align:center;
  max-width:850px;
  margin:auto;
}

.method-preview p{
  margin-top:20px;
  line-height:1.9;
}

.method-preview button{
  margin-top:25px;

  padding:14px 30px;

  background:transparent;

  border:1px solid var(--gold);

  color:var(--gold);

  cursor:pointer;

  transition:all 0.3s ease;
}

.method-preview button:hover{
  background:var(--gold);
  color:black;
}

/* =========================
   CTA
========================= */
.cta{
  padding:120px 60px;

  text-align:center;

  background:
  linear-gradient(
    to right,
    #081327,
    #0b2452
  );
}

.cta h2{
  font-size:48px;
  margin-bottom:20px;
}

.cta p{
  max-width:700px;
  margin:auto;

  line-height:1.9;
}

.email-text{
  margin-top:25px;
  color:var(--gold);
}

/* =========================
   FOOTER
========================= */
footer{
  text-align:center;

  padding:25px;

  font-size:13px;

  background:#050B1A;

  border-top:
  1px solid rgba(255,255,255,0.05);
}

/* =========================
   ANIMATIONS
========================= */
.hidden{
  opacity:0;
  transform:translateY(40px);

  transition:all 0.8s ease;
}

.show{
  opacity:1;
  transform:translateY(0);
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes float{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-12px);
  }

  100%{
    transform:translateY(0px);
  }

}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media(max-width:768px){

  header{
    padding:20px;
  }

  nav{
    display:none;
  }

  section{
    padding:80px 25px;
  }

  .hero{
    flex-direction:column;
    text-align:center;

    padding:130px 25px 80px;
  }

  .hero h2{
    font-size:42px;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-image img{
    max-width:340px;
  }

  .section-title h2{
    font-size:32px;
  }

  .cta h2{
    font-size:36px;
  }

  .step{
    flex-direction:column;
  }

}

/* =========================
   EXTRA MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

  body{
    padding-top:95px;
  }

  /* NAVBAR */
  header{
    padding:15px 20px;
  }

  .logo-box{
    gap:12px;
  }

  .logo{
    width:65px;
    height:65px;
  }

  header h1{
    font-size:16px;
    letter-spacing:2px;
  }

  /* HERO */
  .hero{
    min-height:auto;

    padding:
    130px 20px
    70px;

    gap:40px;
  }

  .hero-content{
    width:100%;
  }

  .mini-title{
    font-size:11px;
    letter-spacing:2px;
  }

  .hero h2{
    font-size:48px;
    line-height:1.1;
  }

  .hero-text{
    font-size:16px;
    line-height:1.8;
  }

  .hero-buttons{
    width:100%;

    flex-direction:column;
    align-items:center;
  }

  .gold-btn,
  .outline-btn{
    width:100%;
    max-width:320px;

    padding:15px 20px;

    font-size:14px;
  }

  /* SHIELD IMAGE */
  .hero-image{
    width:100%;
  }

  .hero-image img{
    width:100%;
    max-width:280px;
  }

  /* TRUST */
  .trust{
    padding:20px;
  }

  .trust p{
    font-size:14px;
    line-height:1.7;
  }

  /* TITLES */
  .section-title h2,
  .about h2,
  .cta h2{
    font-size:34px;
    line-height:1.2;
  }

  /* SERVICES */
  .services-grid{
    grid-template-columns:1fr;
  }

  .service{
    padding:28px;
  }

  .service h3{
    font-size:20px;
  }

  /* ABOUT */
  .about-section{
    padding:25px;
  }

  /* METHOD */
  .step{
    gap:15px;
  }

  .step-number{
    font-size:28px;
  }

  .step-content{
    padding:22px;
  }

  /* CTA */
  .cta{
    padding:90px 25px;
  }

  /* FOOTER */
  footer{
    font-size:12px;
    line-height:1.6;
  }

}


/* =========================
   SMALL PHONES
========================= */

@media(max-width:480px){

  .hero h2{
    font-size:38px;
  }

  .section-title h2,
  .about h2,
  .cta h2{
    font-size:28px;
  }

  .hero-text{
    font-size:15px;
  }

  .service{
    padding:22px;
  }

  .logo{
    width:58px;
    height:58px;
  }

}/* =========================
   EXTRA MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

  body{
    padding-top:95px;
  }

  /* NAVBAR */
  header{
    padding:15px 20px;
  }

  .logo-box{
    gap:12px;
  }

  .logo{
    width:65px;
    height:65px;
  }

  header h1{
    font-size:16px;
    letter-spacing:2px;
  }

  /* HERO */
  .hero{
    min-height:auto;

    padding:
    130px 20px
    70px;

    gap:40px;
  }

  .hero-content{
    width:100%;
  }

  .mini-title{
    font-size:11px;
    letter-spacing:2px;
  }

  .hero h2{
    font-size:48px;
    line-height:1.1;
  }

  .hero-text{
    font-size:16px;
    line-height:1.8;
  }

  .hero-buttons{
    width:100%;

    flex-direction:column;
    align-items:center;
  }

  .gold-btn,
  .outline-btn{
    width:100%;
    max-width:320px;

    padding:15px 20px;

    font-size:14px;
  }

  /* SHIELD IMAGE */
  .hero-image{
    width:100%;
  }

  .hero-image img{
    width:100%;
    max-width:280px;
  }

  /* TRUST */
  .trust{
    padding:20px;
  }

  .trust p{
    font-size:14px;
    line-height:1.7;
  }

  /* TITLES */
  .section-title h2,
  .about h2,
  .cta h2{
    font-size:34px;
    line-height:1.2;
  }

  /* SERVICES */
  .services-grid{
    grid-template-columns:1fr;
  }

  .service{
    padding:28px;
  }

  .service h3{
    font-size:20px;
  }

  /* ABOUT */
  .about-section{
    padding:25px;
  }

  /* METHOD */
  .step{
    gap:15px;
  }

  .step-number{
    font-size:28px;
  }

  .step-content{
    padding:22px;
  }

  /* CTA */
  .cta{
    padding:90px 25px;
  }

  /* FOOTER */
  footer{
    font-size:12px;
    line-height:1.6;
  }

}


/* =========================
   SMALL PHONES
========================= */

@media(max-width:480px){

  .hero h2{
    font-size:38px;
  }

  .section-title h2,
  .about h2,
  .cta h2{
    font-size:28px;
  }

  .hero-text{
    font-size:15px;
  }

  .service{
    padding:22px;
  }

  .logo{
    width:58px;
    height:58px;
  }

}