/* ==========================================================
   RANKING ASSETS — Modern Premium Theme
   ========================================================== */

/* ------------------------------
   GOOGLE FONTS
--------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap');

/* ------------------------------
   ROOT VARIABLES
--------------------------------*/
:root{

  --bg:#070B14;
  --bg-secondary:#0E1422;
  --surface:#111827;
  --surface-light:#182235;

  --border:rgba(255,255,255,0.08);

  --primary:#7C4DFF;
  --primary-light:#9D7BFF;

  --accent:#00D4FF;
  --accent-soft:rgba(0,212,255,0.12);

  --gold:#FFCC66;

  --text:#F5F7FA;
  --text-muted:#A4ACB9;

  --gradient-primary:
    linear-gradient(
      135deg,
      #7C4DFF 0%,
      #5B7FFF 50%,
      #00D4FF 100%
    );

  --gradient-card:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.01)
    );

  --gradient-glow:
    radial-gradient(
      circle at top,
      rgba(124,77,255,0.18),
      transparent 70%
    );

  --font-heading:'Cormorant Garamond', serif;
  --font-body:'Outfit', sans-serif;

  --radius-sm:10px;
  --radius-md:18px;
  --radius-lg:28px;
  --radius-pill:999px;

  --shadow-lg:
    0 10px 40px rgba(0,0,0,0.45);

  --shadow-glow:
    0 0 40px rgba(124,77,255,0.18);

  --max-width:1200px;
  --section-padding:110px 24px;
}

/* ------------------------------
   RESET
--------------------------------*/
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

html,
body{
  overflow-x:hidden;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

/* ------------------------------
   GLOBAL
--------------------------------*/
.container{
  width:100%;
  max-width:var(--max-width);
  margin:auto;
  padding:0 24px;
}

.section{
  padding:var(--section-padding);
  position:relative;
}

.section::before{
  content:'';
  position:absolute;
  inset:0;
  background:var(--gradient-glow);
  opacity:.5;
  pointer-events:none;
}

.section-title{
  font-family:var(--font-heading);
  font-size:clamp(2.8rem,5vw,4.8rem);
  line-height:1.1;
  margin-bottom:18px;
  color:#fff;
}

.section-subtitle{
  max-width:700px;
  color:var(--text-muted);
  font-size:1.05rem;
}

.tag{
  display:inline-flex;
  align-items:center;
  padding:8px 18px;
  border-radius:var(--radius-pill);
  background:rgba(124,77,255,0.12);
  border:1px solid rgba(124,77,255,0.25);
  color:#C7B6FF;
  font-size:.78rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:22px;
}

/* ------------------------------
   NAVBAR
--------------------------------*/
.ra-navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  padding:18px 40px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  background:rgba(7,11,20,0.72);
  backdrop-filter:blur(18px);

  border-bottom:1px solid rgba(255,255,255,0.06);
}

.ra-logo{
  font-size:1.6rem;
  font-family:var(--font-heading);
  font-weight:700;
  color:#fff;
}

.ra-logo span{
  background:var(--gradient-primary);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.ra-nav-links{
  display:flex;
  gap:34px;
}

.ra-nav-links a{
  color:var(--text-muted);
  font-size:.92rem;
  transition:.3s;
  position:relative;
}

.ra-nav-links a:hover{
  color:#fff;
}

.ra-nav-links a::after{
  content:'';
  position:absolute;
  bottom:-6px;
  left:0;
  width:0;
  height:2px;
  border-radius:10px;
  background:var(--gradient-primary);
  transition:.3s;
}

.ra-nav-links a:hover::after{
  width:100%;
}

.ra-nav-cta{
  padding:12px 24px;
  border-radius:var(--radius-pill);

  background:var(--gradient-primary);
  color:#fff;

  font-weight:600;

  transition:.3s;
}

.ra-nav-cta:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-glow);
}

/* ------------------------------
   HERO
--------------------------------*/
#hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding:140px 24px 80px;
}

#hero::before{
  content:'';
  position:absolute;
  width:700px;
  height:700px;
  top:-200px;
  right:-120px;

  background:
    radial-gradient(
      circle,
      rgba(124,77,255,0.25),
      transparent 70%
    );

  pointer-events:none;
}

.hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 24px;
}

.hero-eyebrow{
  color:#C7B6FF;
  font-size:.82rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-bottom:24px;
}

.hero-headline{
  font-family:var(--font-heading);
  font-size:clamp(3.4rem,7vw,6.2rem);
  line-height:1;
  max-width:900px;
  margin-bottom:28px;
}

.hero-headline em{
  font-style:normal;
  background:var(--gradient-primary);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-sub{
  max-width:620px;
  color:var(--text-muted);
  font-size:1.08rem;
  margin-bottom:40px;
}

.hero-actions{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* ------------------------------
   BUTTONS
--------------------------------*/
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:15px 32px;

  border:none;
  border-radius:var(--radius-pill);

  background:var(--gradient-primary);
  color:#fff;

  font-weight:600;

  transition:.3s;
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-glow);
}

.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:15px 32px;

  border-radius:var(--radius-pill);

  border:1px solid rgba(255,255,255,0.12);

  background:rgba(255,255,255,0.02);

  color:#fff;

  transition:.3s;
}

.btn-outline:hover{
  border-color:rgba(124,77,255,0.4);
  background:rgba(124,77,255,0.08);
}

/* ------------------------------
   HERO STATS
--------------------------------*/
.hero-stats{
  display:flex;
  gap:60px;
  flex-wrap:wrap;

  margin-top:70px;
}

.hero-stat-num{
  font-size:3rem;
  font-weight:700;
  color:#fff;
}

.hero-stat-num span{
  color:var(--accent);
}

.hero-stat-label{
  color:var(--text-muted);
  font-size:.92rem;
}

/* ------------------------------
   CARDS
--------------------------------*/
.service-card,
.result-card,
.why-card,
.team-member,
.contact-form,
.process-card{
  background:var(--gradient-card);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  transition:.35s;
}

.service-card:hover,
.result-card:hover,
.why-card:hover,
.team-member:hover{
  transform:translateY(-6px);
  border-color:rgba(124,77,255,0.3);
}

/* ------------------------------
   SERVICES
--------------------------------*/
#services{
  background:var(--bg-secondary);
}

.services-grid{
  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

  gap:32px;

  margin-top:60px;

  align-items:stretch;
}
.service-card{
  height:100%;
  display:flex;
  flex-direction:column;
}

.service-tags{
  margin-top:auto;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.service-card{
  padding:42px;
}

.service-icon{
  width:64px;
  height:64px;

  border-radius:20px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
    linear-gradient(
      135deg,
      rgba(124,77,255,0.18),
      rgba(0,212,255,0.18)
    );

  margin-bottom:28px;

  font-size:1.4rem;
}

.service-title{
  font-size:1.5rem;
  margin-bottom:12px;
}

.service-desc{
  color:var(--text-muted);
  margin-bottom:24px;
}

.service-pill{
  display:inline-flex;
  padding:8px 14px;
  border-radius:var(--radius-pill);

  background:rgba(255,255,255,0.04);

  border:1px solid rgba(255,255,255,0.06);

  color:#D8DDE7;
  font-size:.78rem;
}

/* ------------------------------
   RESULTS
--------------------------------*/
.results-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:28px;
  margin-top:60px;
}

.result-card{
  padding:38px;
}

.result-metric{
  font-size:3.4rem;
  font-weight:700;

  background:var(--gradient-primary);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  margin-bottom:10px;
}

.result-label{
  font-size:1rem;
  margin-bottom:8px;
}

.result-desc{
  color:var(--text-muted);
}

/* ------------------------------
   TESTIMONIAL
--------------------------------*/
.testimonial-strip{
  margin-top:70px;

  padding:60px;

  border-radius:var(--radius-lg);

  background:
    linear-gradient(
      135deg,
      rgba(124,77,255,0.12),
      rgba(0,212,255,0.08)
    );

  border:1px solid rgba(255,255,255,0.08);
}

.testimonial-text{
  font-size:1.5rem;
  line-height:1.7;
  font-family:var(--font-heading);
}

/* ------------------------------
   PROCESS
--------------------------------*/
	.process-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  margin-top:60px;
}

.process-step{
  padding:28px 0;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.step-num{
  color:var(--accent);
  font-size:.85rem;
  margin-bottom:8px;
}

.step-title{
  font-size:1.2rem;
  margin-bottom:8px;
}

.step-body{
  color:var(--text-muted);
}

/* ------------------------------
   WHY US
--------------------------------*/
.why-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-top:60px;
}

.why-card{
  padding:34px;
}

.why-title{
  margin-bottom:10px;
}

.why-desc{
  color:var(--text-muted);
}

/* ------------------------------
   TEAM
--------------------------------*/
.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
}

.team-member{
  padding:40px 30px;
  text-align:center;
}

.team-avatar{
  width:90px;
  height:90px;
  margin:auto auto 20px;

  border-radius:50%;

  background:var(--gradient-primary);
}

.team-role{
  color:#B9A5FF;
  margin:8px 0 14px;
}

/* ------------------------------
   CONTACT
--------------------------------*/
.contact-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

.contact-form{
  padding:40px;
}

.form-group{
  margin-bottom:20px;
}

.form-group label{
  display:block;
  margin-bottom:8px;
  color:#D7DCE5;
  font-size:.88rem;
}

.form-group input,
.form-group textarea,
.form-group select{

  width:100%;

  padding:14px 16px;

  border-radius:14px;

  background:rgba(255,255,255,0.03);

  border:1px solid rgba(255,255,255,0.08);

  color:#fff;

  font-family:var(--font-body);

  transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  outline:none;

  border-color:rgba(124,77,255,0.5);

  box-shadow:
    0 0 0 4px rgba(124,77,255,0.12);
}

.form-submit{
  width:100%;
  padding:16px;

  border:none;
  border-radius:var(--radius-pill);

  background:var(--gradient-primary);

  color:#fff;
  font-weight:600;

  cursor:pointer;

  transition:.3s;
}

.form-submit:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-glow);
}

/* ------------------------------
   FOOTER
--------------------------------*/
.ra-footer{
  padding:70px 24px 30px;
  border-top:1px solid rgba(255,255,255,0.06);
  background:#060A12;
}

.footer-inner{
  max-width:var(--max-width);
  margin:auto;

  display:flex;
  justify-content:space-between;
  align-items:center;

  flex-wrap:wrap;

  gap:30px;

  padding-bottom:30px;
}

.footer-links{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
}

.footer-links a{
  color:var(--text-muted);
  transition:.3s;
}

.footer-links a:hover{
  color:#fff;
}

.footer-bottom{
  max-width:var(--max-width);
  margin:auto;

  padding-top:20px;

  border-top:1px solid rgba(255,255,255,0.06);

  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;

  gap:16px;
}

.footer-copy{
  color:var(--text-muted);
  font-size:.88rem;
}

/* ------------------------------
   ANIMATION
--------------------------------*/
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:.6s;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* ------------------------------
   SCROLLBAR
--------------------------------*/
::-webkit-scrollbar{
  width:8px;
}

::-webkit-scrollbar-track{
  background:#0A0F18;
}

::-webkit-scrollbar-thumb{
  background:linear-gradient(
    180deg,
    #7C4DFF,
    #00D4FF
  );

  border-radius:10px;
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media(max-width:1024px){

  .process-layout,
  .contact-inner{
    grid-template-columns:1fr;
  }

  .why-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){

  :root{
    --section-padding:80px 20px;
  }

  .ra-nav-links,
  .ra-nav-cta{
    display:none;
  }

  .hero-headline{
    font-size:3.3rem;
  }

  .hero-stats{
    gap:30px;
  }

  .services-grid,
  .results-grid,
  .team-grid{
    grid-template-columns:1fr;
  }

  .testimonial-strip{
    padding:36px 28px;
  }

  .contact-form{
    padding:28px;
  }

  .footer-inner,
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* ==========================================================
   RESULTS SHOWCASE CAROUSEL
========================================================== */

.results-showcase-wrapper{
  margin-top:100px;
}

.results-showcase-header{
  margin-bottom:40px;
}

.results-showcase-title{
  font-size:2rem;
  font-family:var(--font-heading);
  color:#fff;
  line-height:1.2;
}

/* =========================
   CAROUSEL WRAPPER
========================= */

.results-carousel{
  position:relative;

  width:100%;

  max-width:100%;

  overflow:hidden;

  isolation:isolate;

  margin-top:40px;

  padding:20px 0 10px;
}
/* glowing gradient edges */

.results-carousel::before,
.results-carousel::after{
  content:'';

  position:absolute;

  top:0;

  width:180px;
  height:100%;

  z-index:5;

  pointer-events:none;
}

.results-carousel::before{
  left:0;

  background:linear-gradient(
    to right,
    #070B14 0%,
    rgba(7,11,20,0.92) 35%,
    rgba(7,11,20,0) 100%
  );
}

.results-carousel::after{
  right:0;

  background:linear-gradient(
    to left,
    #070B14 0%,
    rgba(7,11,20,0.92) 35%,
    rgba(7,11,20,0) 100%
  );
}

/* =========================
   TRACK
========================= */

.results-track{
  display:flex;
  gap:28px;
  overflow-x:auto;
  overflow-y:hidden;
  width:100%;
  max-width:100%;
  padding:10px 24px 18px;
  scroll-behavior:smooth;
  scroll-snap-type:x proximity;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  cursor:grab;
  position:relative;
  z-index:2;
  scrollbar-width:none;
  -ms-overflow-style:none;
}

/* Hide scrollbar completely */

.results-track::-webkit-scrollbar{
  width:0;
  height:0;
  display:none;
}

.results-track:active{
  cursor:grabbing;
}

/* =========================
   SLIDE
========================= */

.results-slide{
  scroll-snap-align:start;
  position:relative;
  width:min(380px,85vw);
  min-width:min(380px,85vw);
  max-width:min(380px,85vw);
  flex-shrink:0;
  overflow:hidden;
  border-radius:28px;
	
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02)
    );

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(16px);

  transition:.4s ease;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.28);
}

.results-slide:hover{
  transform:translateY(-8px);

  border-color:rgba(124,77,255,0.45);

  box-shadow:
    0 0 30px rgba(124,77,255,0.18),
    0 12px 40px rgba(0,0,0,0.4);
}

/* =========================
   IMAGE
========================= */

.results-image-wrap{
  position:relative;
  overflow:hidden;
}

.results-image-wrap img{
  width:100%;

  height:260px;

  object-fit:cover;

  display:block;

  transition:transform .6s ease;
}

.results-slide:hover img{
  transform:scale(1.04);
}

/* =========================
   CONTENT
========================= */

.results-slide-content{
  padding:22px;
}

.results-slide-content h4{
  font-size:1rem;
  color:#fff;
  font-weight:600;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .results-slide{
    width:320px;
    min-width:320px;
  }

  .results-image-wrap img{
    height:220px;
  }

  .results-carousel::before,
  .results-carousel::after{
    width:60px;
  }

  .results-showcase-title{
    font-size:1.5rem;
  }
}
/* Prevent page horizontal scroll */

html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}