/* =========================================
   FONT FAMILY
========================================= */
body {
  font-family: "DM Sans", sans-serif;
}

/* =========================================
   ROOT COLORS & GLOBAL STYLING
========================================= */
:root{
  --orange:#E85D0C;
  --amber:#FF9F1C;
  --charcoal:#121212;
  --graphite:#1A1A1A;
  --offwhite:#F5F5F5;

  --radius-big:40px;
  --radius:22px;

  --shadow-soft:0 20px 40px rgba(0,0,0,0.1);
  --shadow-heavy:0 40px 80px rgba(0,0,0,0.25);
}

body{
  margin:0;
  background:var(--offwhite);
  color:var(--charcoal);
  overflow-x:hidden;
}

section{
  padding:50px 9%;
  position:relative;
}

.max{
  max-width:1450px;
  margin:auto;
}

/* =========================================
   BACKGROUND BLOBS
========================================= */
.blob{
  position:absolute;
  width:480px;
  height:480px;
  filter:blur(180px);
  opacity:0.55;
  z-index:-1;
}

.o1{ background:var(--orange); top:-200px; left:-180px; }
.o2{ background:var(--amber); top:300px; right:-200px; }
.o3{ background:var(--orange); top:900px; left:50%; transform:translateX(-50%); }

/* =========================================
   HEADER
========================================= */
header{
  position:fixed;
  top:0; left:0;
  width:90%; height:100px;
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(20px);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 8%;
  border-bottom:1px solid rgba(0,0,0,0.05);
  z-index:999;
}

.logo{
  font-size:40px;
  font-weight:800;
  color:var(--orange);
  font-family:"Montserrat";
}

nav{
  display:flex;
  gap:40px;
  font-family:"Montserrat";
  font-size:15px;
  font-weight:600;
}

nav a{
  color:var(--charcoal);
  text-decoration:none;
  transition:0.2s;
}

nav a:hover{
  color:var(--orange);
}

.header-btns{
  display:flex;
  gap:15px;
}

.header-btns button{
  padding:14px 26px;
  border-radius:16px;
  font-weight:600;
  cursor:pointer;
  border:2px solid var(--orange);
  background:white;
  color:var(--orange);
  font-family:"Montserrat";
}

.header-btns .primary{
  background:var(--orange);
  color:white;
}

/* =========================================
   HERO
========================================= */
.hero{
  padding-top:180px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:60px;
}

.hero h1{
  font-size:70px;
  line-height:82px;
  font-weight:800;
  font-family:"Montserrat";
  margin-bottom:20px;
}

.hero p{
  font-size:20px;
  color:#444;
  margin-bottom:40px;
  max-width:480px;
}

.hero-btns .btn{
  padding:18px 36px;
  border-radius:20px;
  border:2px solid var(--orange);
  font-weight:700;
  font-family:"Montserrat";
  margin-right:18px;
  cursor:pointer;
  transition:0.3s;
}

.btn.primary{
  background:var(--orange);
  color:white;
}

.btn.secondary{
  color:var(--orange);
  background:white;
}

.btn:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-soft);
}

/* HERO MEMES */
.hero-memes{
  width:48%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.meme-card{
  background:white;
  border-radius:var(--radius-big);
  padding:20px;
  box-shadow:var(--shadow-soft);
  transition:.3s;
}

.meme-card:hover{
  transform:translateY(-10px);
  box-shadow:var(--shadow-heavy);
}

.meme-card img{
  width:100%;
  border-radius:var(--radius);
  margin-bottom:14px;
}

.meme-card p{
  font-size:15px;
  color:#555;
}

/* =========================================
   CLIENT LOGOS
========================================= */
.clients .logo-row{
  display:flex;
  justify-content:center;
  gap:60px;
  margin-top:50px;
  flex-wrap:wrap;
}

.small-title{
  font-family:"Montserrat";
  font-size:28px;
  text-align:center;
  margin-bottom:20px;
}

/* =========================================
   CHAOS CARDS
========================================= */
.chaos-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.chaos-box{
  background:white;
  padding:40px;
  border-radius:var(--radius-big);
  font-weight:700;
  font-family:"Montserrat";
  font-size:22px;
  box-shadow:var(--shadow-soft);
  transition:.3s;
  text-align:center;
}

.chaos-box:hover{
  transform:translateY(-12px);
  box-shadow:var(--shadow-heavy);
}

/* =========================================
   SERVICES GRID
========================================= */
.title{
  font-family:"Montserrat";
  font-size:52px;
  text-align:center;
  margin-bottom:60px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.service-box{
  background:white;
  padding:50px;
  border-radius:var(--radius-big);
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(0,0,0,0.06);
  transition:.3s;
}

.service-box:hover{
  transform:translateY(-12px);
  box-shadow:var(--shadow-heavy);
}

.service-box h3{
  font-family:"Montserrat";
  color:var(--orange);
  font-size:28px;
  margin-bottom:12px;
}

.service-box p{
  color:#444;
  font-size:16px;
  margin-bottom:12px;
}

/* =========================================
   BEFORE-AFTER
========================================= */
.dark{
  background:var(--charcoal);
  color:white;
  border-radius:60px;
  padding:160px 9%;
}

.ba-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.ba-card{
  background:white;
  color:var(--charcoal);
  padding:32px;
  border-radius:var(--radius-big);
  box-shadow:var(--shadow-soft);
}

/* =========================================
   CASE STUDIES
========================================= */
.case-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.case-grid img{
  width:100%;
  border-radius:var(--radius-big);
  box-shadow:var(--shadow-soft);
}

/* =========================================
   PHILOSOPHY STATEMENT
========================================= */
.philosophy h2{
  font-size:64px;
  text-align:center;
  font-family:"Montserrat";
  line-height:80px;
}

/* =========================================
   IMAGE SPLIT STORY
========================================= */
.image-split{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:60px;
}

.reverse{
  flex-direction:row-reverse;
}

.image-split img{
  width:50%;
  border-radius:var(--radius-big);
  box-shadow:var(--shadow-soft);
}

.image-split .text{
  width:50%;
}

.image-split h2{
  font-size:48px;
  margin-bottom:20px;
  font-family:"Montserrat";
}

.image-split p{
  font-size:18px;
  color:#555;
  line-height:1.6;
}

/* =========================================
   CAPABILITIES
========================================= */
.cap-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.cap-grid div{
  background:white;
  padding:25px;
  border-radius:var(--radius-big);
  font-size:18px;
  font-family:"Space Grotesk";
  text-align:center;
  box-shadow:var(--shadow-soft);
}

/* =========================================
   STATS
========================================= */
.stat-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  text-align:center;
}

.stat-grid h1{
  font-family:"Space Grotesk";
  font-size:70px;
  margin-bottom:10px;
}

.stat-grid p{
  font-size:18px;
}

/* =========================================
   MEME LIBRARY GRID
========================================= */
.meme-teaser-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.meme-teaser-grid img{
  width:100%;
  border-radius:var(--radius-big);
  box-shadow:var(--shadow-soft);
}

/* =========================================
   PROCESS STEPS
========================================= */
.process-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:22px;
}

.step{
  background:white;
  padding:35px;
  font-family:"Montserrat";
  text-align:center;
  border-radius:var(--radius-big);
  box-shadow:var(--shadow-soft);
  font-size:20px;
}

/* =========================================
   TEAM SECTION
========================================= */
.team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  text-align:center;
}

.team-grid img{
  width:100%;
  border-radius:var(--radius-big);
  margin-bottom:12px;
  box-shadow:var(--shadow-soft);
}

.team-grid p{
  font-size:18px;
}

/* =========================================
   GALLERY
========================================= */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.gallery-grid img{
  width:100%;
  border-radius:var(--radius-big);
  box-shadow:var(--shadow-soft);
}

/* =========================================
   TESTIMONIALS
========================================= */
.test-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  text-align:center;
}

.test-grid div{
  background:white;
  color:var(--charcoal);
  padding:40px;
  border-radius:var(--radius-big);
  font-size:20px;
  font-family:"Montserrat";
  box-shadow:var(--shadow-soft);
}

/* =========================================
   PRICING
========================================= */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.price-box{
  background:white;
  border-radius:var(--radius-big);
  padding:50px;
  text-align:center;
  font-size:26px;
  font-family:"Montserrat";
  box-shadow:var(--shadow-soft);
}

/* =========================================
   FAQ
========================================= */
.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.faq-grid div{
  background:white;
  padding:30px;
  font-size:20px;
  border-radius:var(--radius-big);
  box-shadow:var(--shadow-soft);
}

/* =========================================
   FINAL CTA
========================================= */
.final-cta{
  text-align:center;
}

.final-cta button{
  padding:18px 36px;
  border-radius:20px;
  border:2px solid white;
  background:white;
  color:var(--orange);
  font-weight:700;
  margin:12px;
  cursor:pointer;
}

/* =========================================
   FOOTER
========================================= */
footer{
  background:var(--graphite);
  color:white;
  padding:80px 9%;
  margin-top:120px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

footer h3{
  font-family:"Montserrat";
  margin-bottom:20px;
}

footer a{
  color:#aaa;
  text-decoration:none;
  display:block;
  margin:8px 0;
}
