:root {
  --navy: #0b0f1a;
  --purple: #6c5cff;
  --blue: #00c2ff;
  --text-main: #ffffff;
  --text-muted: #a0aec0;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-color: rgba(255, 255, 255, 0.1);
  --gradient-accent: linear-gradient(135deg, var(--purple), var(--blue));
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--navy);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Enhancements */
h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero p {
  font-size: clamp(1rem, 3vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Icon Containers */
.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(108, 92, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 2rem;
  font-size: 2rem;
  border: 1px solid rgba(108, 92, 255, 0.2);
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  background: var(--gradient-accent);
  -webkit-text-fill-color: white;
  transform: scale(1.1) rotate(5deg);
}

/* Mobile UX Improvements */
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  
  .hero {
    padding-top: 8rem;
    text-align: center;
  }

  .nav-links {
    backdrop-filter: blur(20px);
    background: rgba(11, 15, 26, 0.95);
  }

  .grid-3 {
    gap: 1.5rem;
  }

  .card {
    padding: 2rem 1.5rem;
  }
}

/* Form Success/Error States */
.form-control:invalid:not(:placeholder-shown) {
  border-color: #ff4d4d;
}

.form-control:valid:not(:placeholder-shown) {
  border-color: #00c2ff;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.5rem;
  }
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 8rem 0;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(108, 92, 255, 0.3);
  position: relative;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0, 194, 255, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--purple);
  color: #fff;
}

.btn-outline:hover {
  background: var(--purple);
  box-shadow: 0 4px 15px rgba(108, 92, 255, 0.3);
  transform: translateY(-2px);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

header.sticky {
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(108, 92, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-links a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
}

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

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

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

/* Case Study Enhancements */
.case-study-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(108, 92, 255, 0.1);
  border-radius: 24px;
  padding: 4rem;
  margin-bottom: 4rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.case-study-card:hover {
  border-color: rgba(108, 92, 255, 0.5);
  transform: scale(1.01);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .case-study-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .case-study-card {
    padding: 2rem;
  }
}

.metric-box {
  background: rgba(108, 92, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(108, 92, 255, 0.1);
}

.visual-element {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.visual-element img {
  width: 100%;
  height: auto;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-element:hover img {
  transform: scale(1.05);
}

.glow-point {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(108, 92, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

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

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--navy);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(108, 92, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 5rem;
  }
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Trusted Brands */
.trusted-brands {
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(255,255,255,0.01);
  overflow: hidden;
}

.trusted-brands-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: scroll-left 30s linear infinite;
  white-space: nowrap;
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity 0.3s;
}

.brand-logo:hover {
  opacity: 1;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Cards / Services / Creators */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--purple);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(108, 92, 255, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

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

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.card-outcome {
  font-weight: 600;
  color: var(--blue);
  font-size: 0.9rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(108, 92, 255, 0.05);
  border-color: rgba(108, 92, 255, 0.2);
  transform: translateY(-5px);
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* Fix mobile overlapping issues */
@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2.8rem;
    padding: 0 1rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
}

/* Contact Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 16px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--blue);
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Animations & Utilities */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

.page-header {
  padding: 10rem 0 5rem;
  text-align: center;
  background: radial-gradient(circle at 50% 100%, rgba(108, 92, 255, 0.1) 0%, transparent 50%);
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-title { font-size: 4.5rem; }
}

.content-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-section p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.visual-element div{
transition: transform 0.6s cubic-bezier(.19,1,.22,1), box-shadow 0.6s;
}

.visual-element div:hover{
transform: translateY(-10px) scale(1.02);
box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
/* Modern blur background when menu opens */

.menu-blur-overlay{
position: fixed;
top:0;
left:0;
width:100%;
height:100%;
background: rgba(5,10,20,0.45);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
opacity:0;
visibility:hidden;
transition: all .4s ease;
z-index:90;
}

.menu-blur-overlay.active{
opacity:1;
visibility:visible;
}
/* Animated gradient headline */

.page-title{
background: linear-gradient(90deg,#6c5cff,#00c2ff,#6c5cff);
background-size:200% auto;
-webkit-background-clip:text;
color:transparent;
animation:textFlow 6s linear infinite;
}

@keyframes textFlow{
0%{background-position:0%}
100%{background-position:200%}
}
/* Floating glow background */

.page-header{
position:relative;
overflow:hidden;
}

.page-header::before{

content:"";
position:absolute;

width:700px;
height:700px;

background:radial-gradient(circle,#6c5cff33,transparent);

top:-250px;
left:50%;

transform:translateX(-50%);
filter:blur(100px);

animation:floatGlow 8s ease-in-out infinite;

}

@keyframes floatGlow{

0%,100%{transform:translateX(-50%) translateY(0)}
50%{transform:translateX(-50%) translateY(40px)}

}
/* Form input animation */

.form-control{
transition: all .3s ease;
}

.form-control:focus{

transform: scale(1.02);
box-shadow: 0 0 20px rgba(108,92,255,.35);

}
.btn{
transition: all .3s ease;
}

.btn:hover{
transform: translateY(-3px);
box-shadow:0 10px 30px rgba(108,92,255,.35);
}
.contact-form{

transition: all .4s ease;

}

.contact-form:hover{

transform: translateY(-6px);

box-shadow:0 20px 40px rgba(0,0,0,.35);

}
.card{
transition:all .4s ease;
}

.card:hover{

transform:translateY(-10px) scale(1.03);

box-shadow:0 25px 60px rgba(0,0,0,.35);

}
/* Creator Intro Section */

.creator-intro{

max-width:900px;
margin:auto;
text-align:center;
padding-top:40px;

}

/* Heading animation */

.creator-heading{

font-size:2.3rem;
margin-bottom:30px;
line-height:1.3;

display:flex;
flex-direction:column;
gap:8px;

}

/* Paragraph animation */

.creator-text{

color:var(--text-muted);
line-height:1.9;
font-size:1.05rem;
margin-top:15px;

opacity:0;
transform:translateY(30px);

animation:fadeTextUp .9s ease forwards;

}

/* stagger animation */

.creator-text:nth-of-type(1){

animation-delay:.2s;

}

.creator-text:nth-of-type(2){

animation-delay:.45s;

}

@keyframes fadeTextUp{

to{

opacity:1;
transform:translateY(0);

}

}
/* ============================= */
/* CREATOR INTRO - PREMIUM BLOCK */
/* ============================= */

.creator-intro{

position:relative;
padding:120px 0;
margin-top:40px;

overflow:hidden;

}


/* Ambient glow background */

.creator-intro::before{

content:"";

position:absolute;

width:900px;
height:900px;

background:radial-gradient(circle,
rgba(108,92,255,.25),
transparent 60%);

top:-300px;
left:50%;

transform:translateX(-50%);

filter:blur(120px);

animation:creatorGlow 10s ease-in-out infinite;

pointer-events:none;

}

@keyframes creatorGlow{

0%,100%{
transform:translateX(-50%) translateY(0);
}

50%{
transform:translateX(-50%) translateY(60px);
}

}



/* Glass container */

.creator-intro-inner{

max-width:900px;
margin:auto;

padding:60px;

border-radius:20px;

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

backdrop-filter:blur(20px);

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

box-shadow:
0 10px 40px rgba(0,0,0,.35),
inset 0 0 30px rgba(255,255,255,.03);

transition:all .4s ease;

}


/* subtle hover like premium sites */

.creator-intro-inner:hover{

transform:translateY(-6px);

box-shadow:
0 30px 80px rgba(0,0,0,.55),
inset 0 0 40px rgba(255,255,255,.05);

}



/* Heading */

.creator-heading{

font-size:2.5rem;
line-height:1.25;

margin-bottom:35px;

display:flex;
flex-direction:column;
gap:6px;

letter-spacing:-0.02em;

}


/* animated gradient */

.creator-heading .text-gradient{

background:linear-gradient(
90deg,
#6c5cff,
#00c2ff,
#6c5cff
);

background-size:200% auto;

-webkit-background-clip:text;

color:transparent;

animation:gradientMove 6s linear infinite;

}

@keyframes gradientMove{

0%{background-position:0%}

100%{background-position:200%}

}



/* Paragraph styling */

.creator-text{

font-size:1.08rem;

line-height:1.9;

color:var(--text-muted);

max-width:760px;

margin:auto;

margin-top:20px;

opacity:0;

transform:translateY(40px);

animation:textReveal 1s ease forwards;

}


/* stagger effect */

.creator-text:nth-of-type(1){

animation-delay:.25s;

}

.creator-text:nth-of-type(2){

animation-delay:.55s;

}



/* reveal animation */

@keyframes textReveal{

to{

opacity:1;

transform:translateY(0);

}

}



/* paragraph hover highlight */

.creator-text:hover{

color:#fff;

transition:.3s;

}



/* mobile optimization */

@media(max-width:768px){

.creator-intro-inner{

padding:40px 25px;

}

.creator-heading{

font-size:1.9rem;

}

.creator-text{

font-size:1rem;

}

}
.card-icon{

font-size:2rem;

margin-bottom:15px;

transition:transform .4s ease;

}

.card:hover .card-icon{

transform:scale(1.2) rotate(5deg);

}

.card{

transition:all .4s ease;

}

.card:hover{

transform:translateY(-10px);

box-shadow:0 30px 80px rgba(0,0,0,.4);

}
/* HERO SECTION FIX */

.page-header{

padding-top:140px;
padding-bottom:80px;

text-align:center;

}

.hero-animated-title{

font-size:clamp(2.2rem,5vw,3.4rem);

max-width:900px;

margin:auto;

line-height:1.2;

padding:0 20px;

}

.hero-animated-text{

max-width:720px;

margin:25px auto 0;

padding:0 20px;

font-size:clamp(1rem,2vw,1.2rem);

line-height:1.8;

}
/* SERVICES TEXT SECTION */

.services-heading{

font-size:clamp(1.8rem,4vw,2.4rem);

text-align:center;

max-width:900px;

margin:auto;

margin-bottom:25px;

padding:0 20px;

}

.services-text{

max-width:760px;

margin:20px auto;

padding:0 20px;

font-size:clamp(0.95rem,1.8vw,1.1rem);

line-height:1.9;

text-align:center;

}
/* SAFE GLOW BACKGROUND */

.services-section{

position:relative;

overflow:hidden;

}

.services-section::before{

content:"";

position:absolute;

width:600px;
height:600px;

background:radial-gradient(
circle,
rgba(124,92,255,.18),
transparent 70%
);

top:-200px;
left:50%;

transform:translateX(-50%);

filter:blur(120px);

z-index:-1;

}
/* MOBILE FIX */

@media (max-width:768px){

.page-header{
padding-top:120px;
padding-bottom:60px;
}

.hero-animated-title{
font-size:2rem;
}

.hero-animated-text{
font-size:1rem;
}

.services-heading{
font-size:1.7rem;
}

}
/* Cards and reveals visible by default */
.card, .reveal {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* Optional: add staggered Apple-like fade */
.card {
  opacity: 0;
  transform: translateY(40px);
}
.card.active {
  opacity: 1;
  transform: translateY(0);
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  transition: all 0.5s ease;
}