/* ============================================================ */
/* CALLRANK DIGITAL MARKETING - DARK MEDICAL THEME               */
/* ============================================================ */

:root {
  --bg-dark: #090A0F;
  --bg-card: #13151D;
  --bg-input: #0f1118;
  --primary-red: #E60033;
  --primary-red-hover: #b30027;
  --primary-purple: #8A2BE2;
  --text-main: #e1e1e1;
  --text-light: #FFFFFF;
  --accent-green: #00FF66;
  --border-color: #202433;
  --font-heading: 'Oswald', sans-serif;
   /* --font-heading: "Playfair", serif;; */
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-light);
  text-transform: "uppercase" !important;
  letter-spacing: 0.5px;
  line-height: 1;
}

/* ============================================================ */
/* UTILITIES
/* ============================================================ */
.red { color: var(--primary-red) !important; }
.violet { color: var(--primary-purple) !important; }
.green { color: var(--accent-green) !important; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-red);
  color: #fff !important;
  font-family: var(--font-heading);
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--primary-red-hover);
  box-shadow: 0 0 15px rgba(230, 0, 51, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #fff !important;
  font-family: var(--font-heading);
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid var(--primary-purple);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background-color: rgba(138, 43, 226, 0.1);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

.btn-secondarys {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #8b2be2;
  color: #fff !important;
  font-family: var(--font-heading);
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid var(--primary-purple);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondarys:hover {
  background-color: #8b2be2;
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

.btn-fluor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-green);
  color: #000 !important;
  font-family: var(--font-heading);
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.btn-fluor:hover {
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.5);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================ */
/* NAVBAR
/* ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: rgba(9,10,15,0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s;
}
#navbar .logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
}
#navbar .logo span { color: var(--primary-red); }
#navbar .logo em { color: var(--primary-purple); font-style: normal; }

#nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
#nav-links a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}
#nav-links a:hover {
  color: var(--primary-red);
}
#nav-links .nav-cta {
  background: var(--primary-red);
  padding: 8px 16px;
  border-radius: 4px;
}
#nav-links .nav-cta:hover {
  color: #fff;
  background: var(--primary-red-hover);
}

/* Dropdown Styles */
#nav-links .dropdown {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  padding: 10px 0;
  z-index: 1000;
}
.dropdown-menu li {
  width: 100%;
}
.dropdown-menu a {
  padding: 12px 20px !important;
  display: block;
  font-size: 13px !important;
  text-transform: capitalize !important;
  font-weight: 500 !important;
  border: none !important;
  text-align: left !important;
}
.dropdown-menu a:hover {
  background: rgba(138,43,226,0.1);
  color: var(--primary-purple) !important;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mega Menu Dropdown Styles */
.dropdown-menu.megamenu {
  min-width: 500px;
  flex-direction: row;
  padding: 20px;
  gap: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
}
.dropdown:hover .dropdown-menu.megamenu {
  transform: translateX(-50%) translateY(0);
}
.megamenu-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.megamenu-column h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--primary-red);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-left: 10px;
  letter-spacing: 0.5px;
}
.megamenu-column ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
  padding: 0;
}
.megamenu-column ul li a {
  padding: 8px 10px !important;
  font-size: 13px !important;
  text-transform: capitalize !important;
  color: var(--text-main) !important;
  border-radius: 4px;
  display: block;
}
.megamenu-column ul li a:hover {
  background: rgba(138, 43, 226, 0.1);
  color: var(--text-light) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px; height: 3px;
  background: #fff;
}

/* ============================================================ */
/* HERO SECTION
/* ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 50px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; top:0; left:0; width:100%; height:100%;
  background: radial-gradient(circle at center, #1b162c 0%, var(--bg-dark) 70%);
  z-index: -2;
}
.hero-grid {
  position: absolute; top:0; left:0; width:100%; height:100%;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  gap: 50px;
}
.hero-left {
  flex: 1;
  min-width: 0;
}
.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(230, 230, 230, 0.1);
  /* border: 1px solid var(--primary-purple); */
    border: 1px solid #fff;
  /* color: var(--primary-purple); */
  text-transform: "titlecase";
  color: #FFFFFF;
  font-size: 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Typewriter Cursor */
.cursor {
  display: inline-block;
  animation: blink 1s infinite;
  font-weight: 300;
  margin-left: 2px;
}
.cursor.typing {
  animation: none;
}
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* ============================================================ */
/* HERO MARQUEE (TAGS) */
/* ============================================================ */
.hero-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 30px 0 10px;
  display: flex;
  align-items: center;
}
.hero-marquee-wrapper::before,
.hero-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}
.hero-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.hero-marquee-track {
  display: flex;
  gap: 12px;
  animation: scrollMarquee 25s linear infinite;
  width: max-content;
}
.hero-marquee-track:hover {
  animation-play-state: paused;
}

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

.mq-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.mq-red {
  background: rgba(230, 0, 51, 0.1);
  border: 1px solid var(--primary-red);
  color: var(--primary-red);
}

.mq-green {
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
}

.mq-lavender {
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid var(--primary-purple);
  color: #c994ff; 
}

.mq-blue {
  background: rgba(36, 147, 250, 0.1);
  border: 1px solid #2493fa;
  color: #2493fa;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-green);
  text-shadow: 0 0 10px rgba(0,255,102,0.3);
  font-weight: 600;
}
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-form-card {
  width: 100%;
  max-width: 450px;
  background: var(--bg-card);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(138,43,226,0.15);
  position: relative;
}
.hero-form-card::after {
  content: '';
  position: absolute; top:-1px; left:-1px; right:-1px; bottom:-1px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--primary-purple), transparent);
  z-index: -1;
}
.hero-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.hero-form-card p {
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 15px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-body);
  transition: all 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-purple);
  outline: none;
}
.form-group textarea {
  height: 80px;
  resize: none;
}

/* ============================================================ */
/* SECTIONS GENERAL
/* ============================================================ */
.section-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 5%;
}
.section-header {
  margin-bottom: 50px;
}
.section-header.center {
  text-align: center;
}
.section-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(227, 227, 227, 0.176);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 30px;
  margin-bottom: 15px;
  border: 1px solid #fff;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.section-title span {
  color: var(--primary-purple);
}
.section-sub {
  max-width: 600px;
  margin: 0 auto;
}

  /* ============================================================
   PREMIUM TRUST STRIP (Glassmorphism Style)
   ============================================================ */

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.glass-strip {
    background: rgba(18, 18, 22, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px; /* Pill shape */
    padding: 25px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.trust-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.trust-item span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    /* color: var(--text-main); */
        color: #fff;
    letter-spacing: 0.3px;
}

.trust-icon {
    width: 35px;
    height: 35px;
    background: rgba(217, 0, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-size: 1rem;
}

.trust-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 20px;
}

/* Background Glow Effect */
.glass-glow {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(217, 0, 255, 0.15) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
    transition: left 0.6s ease;
}

/* Hover Interaction */
.glass-strip:hover {
    border-color: rgba(217, 0, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.glass-strip:hover .glass-glow {
    left: 70%; /* Moves the light across the bar on hover */
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .glass-strip {
        border-radius: 20px;
        padding: 30px;
    }
    .trust-content {
        flex-direction: column;
        gap: 20px;
    }
    .trust-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }
    .trust-item {
        justify-content: flex-start;
        width: 100%;
    }
}

/* ============================================================ */
/* SERVICES GRID
/* ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--primary-purple);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(138,43,226,0.2);
}
.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 25px;
}
.bg-pink { background: linear-gradient(135deg, #FF007A, #C80060); }
.bg-orange { background: linear-gradient(135deg, #FF6B00, #D15800); }
.bg-blue { background: linear-gradient(135deg, #007AFF, #0056B3); }
.bg-green { background: linear-gradient(135deg, #00C853, #009624); }
.bg-purple { background: linear-gradient(135deg, #8A2BE2, #6018A3); }
.bg-red { background: linear-gradient(135deg, #E60033, #B30027); }

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
  text-transform: none;
}
.service-card > p {
  color: var(--text-main);
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.6;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.95rem;
}
.service-list li i {
  color: var(--accent-green);
  font-size: 1.1rem;
}

  /* ============================================================
   WHY CHOOSE CALLRANK - BULLETPROOF REDESIGN
   ============================================================ */

.cr-why-container {
    background: linear-gradient(135deg, #12151E, #201438) !important;
    border: 1px solid var(--primary-purple) !important;
    border-radius: 25px !important;
    padding: 50px 30px 30px 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.cr-why-grid {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: stretch !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    gap: 30px !important;
}

.cr-why-card {
    flex: 0 1 calc(33.333% - 30px) !important;
    min-width: 280px !important;
    text-align: center !important;
    display: block !important;
}

/* Icon Box Styling */
.cr-icon-box {
    width: 60px !important;
    height: 60px !important;
    margin: 0 auto 20px auto !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    transition: all 0.3s ease !important;
}

/* Icon Colors */
.icon-red i { color: #ff3b5c !important; }
.icon-purple i { color: #d900ff !important; }
.icon-green i { color: #00ff66 !important; }
.icon-cyan i { color: #00e5ff !important; }

.cr-card-title {
    font-family: 'Oswald', sans-serif !important;
    font-size: 1.1rem !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    margin: 0 !important;
    font-weight: 500 !important;
}

.cr-card-desc {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-top: 15px !important;
    line-height: 1.5 !important;
}

/* Footer Bold Centering */
.cr-why-footer {
    margin-top: 40px !important;
    padding-top: 25px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    text-align: center !important;
    width: 100% !important;
}

.cr-why-footer p {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
}

.cr-why-footer .violet {
    font-family: 'Oswald', sans-serif !important;
    color: #d900ff !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    margin-left: 5px !important;
}

/* Mobile Fixes */
@media (max-width: 992px) {
    .cr-why-grid { gap: 40px !important; }
    .cr-why-card { flex: 0 0 45% !important; }
}

@media (max-width: 600px) {
    .cr-why-card { flex: 0 0 100% !important; }
    .cr-why-container { padding: 30px 20px !important; }
}

/* ============================================================ */
/* HOW WE GROW
/* ============================================================ */
.funnel-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step-card {
  background: linear-gradient(135deg, #12151E, #201438) !important;
  padding: 40px 30px;
  border-radius: 8px;
  border: 1px solid var(--primary-purple) !important;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.step-card:hover {
  border-color: var(--primary-purple);
}
.step-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--primary-red);
  opacity: 0.3;
  margin-bottom: -20px;
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* ============================================================
   WHO WE ARE SECTION 
   ============================================================ */

#who-we-are .service-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

#who-we-are .service-list li {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem; 
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}



/* Mobile Adjustments */
@media (max-width: 768px) {
    #who-we-are .service-list {
        grid-template-columns: 1fr;
    }
    
    #who-we-are .service-card {
        padding: 20px !important; 
    }
}


/* Centering the bottom card in the Mission Section */
#about-content .services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* This centers the items in the row */
    gap: 30px; /* Maintains spacing between boxes */
}

#about-content .service-card {
    flex: 0 1 calc(50% - 30px); /* Makes cards take up half width minus gap */
    min-width: 300px; /* Ensures they don't get too small */
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    #about-content .service-card {
        flex: 0 1 100%; /* Stacks them fully on mobile */
    }
}

/* ============================================================ */
/* CASE STUDIES
/* ============================================================ */
#case-studies { background: #0c0e14; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.case-card {
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}
.case-card:hover {
  border-color: var(--accent-green);
}
.case-card-top {
  padding: 30px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 15px;
}
.case-icon {
  font-size: 2rem;
}
.case-card-top h3 {
  font-size: 1rem;
}
.case-body {
  padding: 30px;
}

.case-stat {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent-green);
  text-shadow: 0 0 10px rgba(0,255,102,0.3);
  margin-bottom: 10px;
}
.case-body p {
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  font-size: 0.7rem;
  padding: 4px 10px;
  background: rgba(138,43,226,0.1);
  color: var(--primary-purple);
  border-radius: 4px;
}

/* ============================================================
   WHAT MAKES US DIFFERENT (4-Column Grid)
   ============================================================ */

#differentiation .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
}

.bg-cyan { background: linear-gradient(135deg, #00E5FF, #00B0FF); }

#differentiation .service-card {
    transition: transform 0.3s ease, border 0.3s ease;
}

#differentiation .service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple); 
}

@media (max-width: 1100px) {
    #differentiation .services-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 600px) {
    #differentiation .services-grid {
        grid-template-columns: 1fr; 
    }
}

  /* ============================================================
   INDUSTRIES WE SERVE 
   ============================================================ */

.industries-funnel-wrapper .funnel-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

.industries-funnel-wrapper .funnel-steps.row-2 {
    display: flex;
    justify-content: center; 
    gap: 30px;
}

.industries-funnel-wrapper .row-2 .step-card {
    flex: 0 1 calc(33.33% - 20px); 
}


.industries-funnel-wrapper .step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.industries-funnel-wrapper .step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
}


@media (max-width: 1024px) {
    .industries-funnel-wrapper .funnel-steps {
        grid-template-columns: repeat(2, 1fr); 
    }
    .industries-funnel-wrapper .row-2 .step-card {
        flex: 0 1 100%;
    }
}

@media (max-width: 768px) {
    .industries-funnel-wrapper .funnel-steps {
        grid-template-columns: 1fr; 
    }
    .industries-funnel-wrapper .funnel-steps.row-2 {
        flex-direction: column;
    }
}


  /* ============================================================
   TEAM MESSAGE (Quote Style)
   ============================================================ */

.team-quote-box {
    text-align: center;
    max-width: 800px;
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
    opacity: 0.6;
}

.quote-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--text-main);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-author {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .quote-text {
        font-size: 1.2rem;
    }
    .team-quote-box {
        padding: 30px 20px;
    }
}

/* ============================================================ */
/* TESTIMONIALS
/* ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testi-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}
.stars {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.testi-card p {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--text-light);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-purple);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: bold; font-family: var(--font-heading);
}
.testi-name { color: #fff; font-weight: 600; font-size: 0.9rem; }
.testi-role { font-size: 0.75rem; }

/* ============================================================ */
/* CTA BANNER & BLOG
/* ============================================================ */
.cta-banner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px;
  background: linear-gradient(135deg, #12151E, #201438);
  border: 1px solid var(--primary-purple);
  border-radius: 8px;
  text-align: center;
}
.cta-banner h2 { font-size: 2.5rem; margin-bottom: 15px; }
.cta-banner p { margin-bottom: 30px; font-size: 1.1rem; }
.cta-banner .hero-btns { justify-content: center; margin-bottom:0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.blog-img {
  width: 100%; height: 220px; object-fit: cover;
  opacity: 0.8;
  border-bottom: 1px solid var(--border-color);
}
.blog-body { padding: 30px; }
.blog-cat {
  display: inline-block; padding: 3px 8px;
  background: var(--primary-red); color: #fff;
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  border-radius: 3px; margin-bottom: 15px;
}
.blog-body h3 { font-size: 1.2rem; margin-bottom: 15px; }
.blog-meta { display: flex; gap: 15px; font-size: 0.75rem; margin-bottom: 15px; color: #7a7e8e;}
.blog-body p { font-size: 0.85rem; margin-bottom: 20px; }

/* ============================================================ */
/* LEAD FORM SECTION (BOTTOM)
/* ============================================================ */
.lead-form-wrapper {
  display: flex;
  gap: 0px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}
.lead-form-left {
  flex: 1;
  padding: 60px;
  background: linear-gradient(90deg, rgba(9,10,15,1), transparent);
}
.lead-form-perks { margin-top: 30px; }
.perk { display: flex; align-items: center; gap:10px; margin-bottom:15px; color: #fff; font-size: 0.95rem;}
.perk-icon { color: var(--accent-green); }
.lead-form-right {
  flex: 1;
  padding: 60px;
  background: var(--bg-dark);
  border-left: 1px solid var(--border-color);
}
.lead-form-right h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

/* ============================================================ */
/* FOOTER
/* ============================================================ */
#footer {
  background: #06070a;
  border-top: 1px solid var(--border-color);
  padding: 80px 5% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.footer-logo { font-size: 24px; font-family: var(--font-heading); color:#fff; margin-bottom: 20px; font-weight: bold;}
.footer-logo span { color: var(--primary-red); }
.footer-desc { font-size: 0.9rem; margin-bottom: 20px; }
.footer-contact p { font-size: 0.85rem; margin-bottom: 10px; }
.socials { display: flex; gap: 10px; margin-top: 20px;}
.social-btn {
  width: 35px; height: 35px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
}
.social-btn:hover { background: var(--primary-purple); color: #fff; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--primary-red); }
.footer-map iframe { width: 100%; height: 150px; border: none; border-radius: 4px; opacity: 0.7;}
.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex; justify-content: space-between;
  font-size: 0.8rem;
}

/* ============================================================ */
/* WHATSAPP FLOAT & POPUP
/* ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px;
  background: #25D366; color: #fff;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 20px rgba(37,211,102,0.3);
  z-index: 999;
  transition: all 0.3s ease;
}
.whatsapp-float span {
  display: none !important;
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-float:hover { background: #1ebd5a; transform: translateY(-3px); }

#popup-overlay {
  position: fixed; top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: all 0.3s;
}
#popup-overlay.active { opacity: 1; pointer-events: auto; }
.popup-box {
  background: var(--bg-card);
  padding: 40px; border-radius: 8px;
  border: 1px solid var(--border-color);
  width: 90%; max-width: 450px;
  position: relative;
  text-align: center;
  transform: translateY(30px);
  transition: all 0.3s;
}
#popup-overlay.active .popup-box { transform: translateY(0); }
.popup-close {
  position: absolute; top: 15px; right: 15px;
  background: none; border: none; color: #fff; font-size: 20px; cursor: pointer;
}
.popup-badge { display:inline-block; background:var(--primary-red); color:#fff; padding:3px 10px; border-radius:20px; font-size:0.7rem; font-weight:600; margin-bottom:15px; text-transform:uppercase;}

/* ============================================================ */
/* GLOWING TIMELINE SECTION
/* ============================================================ */
#about-timeline {
  position: relative;
  padding: 100px 5%;
  background: var(--bg-dark);
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}
.timeline-bg-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.timeline-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  width: 50%;
}
.timeline-item.right {
  align-self: flex-end;
  flex-direction: row-reverse;
  text-align: right;
  margin-top: -40px; 
}
.timeline-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: var(--bg-card);
  flex-shrink: 0;
  position: relative;
}
.neon-line-cyan { border: 2px solid #00E5FF; box-shadow: 0 0 15px #00E5FF, inset 0 0 15px rgba(0,229,255,0.5); color: #00E5FF;}
.neon-line-green { border: 2px solid #00FF66; box-shadow: 0 0 15px #00FF66, inset 0 0 15px rgba(0,255,102,0.5); color: #00FF66;}
.neon-line-purple { border: 2px solid #D900FF; box-shadow: 0 0 15px #D900FF, inset 0 0 15px rgba(217,0,255,0.5); color: #D900FF;}
.neon-line-yellow { border: 2px solid #FFD700; box-shadow: 0 0 15px #FFD700, inset 0 0 15px rgba(255,215,0,0.5); color: #FFD700;}

.timeline-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
  letter-spacing: 1px;
}
.timeline-content p {
  color: #9FA4B5;
  font-size: 1rem;
  line-height: 1.6;
}
.text-cyan { color: #00E5FF !important; text-shadow: 0 0 10px rgba(0,229,255,0.5); }
.text-green { color: #00FF66 !important; text-shadow: 0 0 10px rgba(0,255,102,0.5); }
.text-purple { color: #D900FF !important; text-shadow: 0 0 10px rgba(217,0,255,0.5); }
.text-yellow { color: #FFD700 !important; text-shadow: 0 0 10px rgba(255,215,0,0.5); }

/* Traits Row */
.traits-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  border-top: 1px solid var(--border-color);
  padding-top: 50px;
  margin-top: 100px;
  position: relative;
  z-index: 2;
}
.trait-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.trait-icon {
  font-size: 32px;
}
.trait-text {
  font-size: 0.85rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .timeline-item, .timeline-item.right {
    width: 100%;
    flex-direction: row;
    text-align: left;
    margin-top: 0;
  }
  .timeline-bg-svg { display: none; }
  .traits-row {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
  }
  .trait-item { width: 45%; }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-inner, .lead-form-wrapper { flex-direction: column !important; }
  .services-grid, .funnel-steps, .cases-grid, .testimonials-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-headline { font-size: 3rem; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns a { width: 100%; justify-content: center; }
  #nav-links {
    position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--bg-dark);
    flex-direction: column; gap: 0; align-items: stretch;
    display: none; border-bottom: 1px solid var(--border-color);
  }
  #nav-links li { width: 100%; }
  #nav-links .dropdown {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  #nav-links.open { display: flex; }
  #nav-links a { display: block; padding: 20px; width: 100%; border-top: 1px solid var(--border-color); text-align: center;}
  #nav-links a.nav-cta { border-radius: 0; margin: 0; }
  
  .dropdown-menu {
    position: static !important;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    display: none;
  }
  .dropdown.active .dropdown-menu {
    display: block;
  }
  .dropdown-menu.megamenu {
    position: static !important;
    min-width: 100% !important;
    flex-direction: column !important;
    padding: 15px 25px !important;
    gap: 15px !important;
    display: none !important;
    transform: none !important;
    box-sizing: border-box !important;
  }
  .dropdown.active .dropdown-menu.megamenu {
    display: flex !important;
  }
  .megamenu-column {
    width: 100% !important;
  }
  .megamenu-column h4 {
    text-align: left !important;
    padding: 15px 0 8px 0 !important;
    color: var(--primary-red) !important;
    font-size: 13px !important;
    border-top: 1px dashed var(--border-color);
    margin-bottom: 5px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
  }
  .megamenu-column:first-child h4 {
    border-top: none !important;
    padding-top: 5px !important;
  }
  .megamenu-column ul {
    gap: 5px !important;
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
  }
  .megamenu-column ul li a {
    text-align: left !important;
    padding: 10px 15px !important;
    background: transparent !important;
    color: var(--text-main) !important;
    font-size: 13px !important;
    border-radius: 4px;
    display: block !important;
  }
  .megamenu-column ul li a:hover {
    background: rgba(138, 43, 226, 0.1) !important;
    color: var(--text-light) !important;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .dropdown-menu a {
    padding: 12px 20px !important;
    background: transparent !important;
    text-align: left !important;
  }
  .services-grid, .funnel-steps, .cases-grid, .testimonials-grid, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { display: flex; justify-content: space-between; gap: 10px; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: 0.75rem; }
  .lead-form-left, .lead-form-right { padding: 30px; }
  #navbar { padding: 15px 5%; }
  .hero-badge { margin-top:20px;}
  .floating-pill { font-size: 0.8rem; padding: 8px 15px; } /* Shrink manifesto pills */
  
  .cta-banner {
    padding: 45px 25px;
    margin: 0 20px 40px;
    border-radius: 8px;
  }
  .cta-banner h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  .cta-banner p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
  }
  .cta-banner .hero-btns {
    gap: 12px;
  }
  .cta-banner .hero-btns a {
    padding: 12px 20px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 500px) {
  /* Fix tight timeline on very small phones like iPhone SE */
  .timeline-item, .timeline-item.right {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 15px;
  }
  .traits-row {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .trait-item { width: 100% !important; justify-content: center; }
  .hero-form-card { padding: 20px; }
  .lead-form-wrapper { margin: 0 -5%; width: 110%; border-radius: 0; }
  .cta-banner {
    padding: 35px 15px;
    margin: 0 10px 30px;
  }
  .cta-banner h2 {
    font-size: 1.5rem;
  }
  .cta-banner p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
  .cta-banner .hero-btns a {
    padding: 10px 15px;
    font-size: 0.8rem;
  }
}

/* ============================================================ */
/* ICON INTERACTIONS
/* ============================================================ */
i.fas, i.far, i.fab {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}
.service-card:hover .service-icon,
.step-card:hover .step-icon,
.case-card:hover .case-icon {
  transform: scale(1.15) rotate(-5deg);
  text-shadow: 0 0 15px currentColor;
}
.btn-primary:hover i, .btn-secondary:hover i, .btn-fluor:hover i {
  transform: translateX(3px) scale(1.1);
}
.social-btn:hover i {
  transform: scale(1.3);
}

/* ============================================================ */
/* HERO ORBIT ANIMATION
/* ============================================================ */
.hero-orbit-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 500px;
}
.hero-orbit-container {
  position: relative;
  width: 460px;
  height: 460px;
}
.orbit-center {
  position: absolute;
  top: 170px; left: 170px;
  width: 120px; height: 120px;
  background: var(--bg-card);
  border: 2px solid var(--primary-violet);
  box-shadow: 0 0 40px rgba(138, 43, 226, 0.4);
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  z-index: 10;
}
.glow-brain {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #2493fa, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
  animation: brain-pulse 2s ease-in-out infinite alternate;
}
@keyframes brain-pulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.4)); }
  100% { transform: scale(1.15); filter: drop-shadow(0 0 25px rgba(138, 43, 226, 0.8)); }
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}
.ring-1 { width: 220px; height: 220px; top: 120px; left: 120px; }
.ring-2 { width: 340px; height: 340px; top: 60px; left: 60px; }
.ring-3 { width: 460px; height: 460px; top: 0px; left: 0px; }

.orbit-icon {
  position: absolute;
  width: 65px; height: 65px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  margin-top: -32.5px; margin-left: -32.5px;
}
.icon-seo, .icon-ads, .icon-target { color: var(--primary-red); border-color: rgba(230, 0, 51, 0.3); }
.icon-aeo, .icon-content, .icon-users { color: var(--primary-violet); border-color: rgba(138, 43, 226, 0.3); }
.icon-dev, .icon-rep { color: var(--accent-green); border-color: rgba(0, 255, 102, 0.3); }
.icon-blue-custom i { color: #2493fa !important; }
.icon-blue-custom { border-color: rgba(36, 147, 250, 0.3); }
.icon-violet-custom i { color: #8a2be2 !important; }
.icon-violet-custom { border-color: rgba(138, 43, 226, 0.3); }

/* Responsive Orbit */
@media (max-width: 768px) {
  .hero-orbit-wrapper { 
    min-height: 420px; 
    display: block; 
    position: relative; 
    width: 100%; 
    overflow: hidden; 
    margin-top: 20px; 
  }
  .hero-orbit-container { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%) scale(0.85); 
    transform-origin: center center; 
    margin: 0; 
  }
}

/* ============================================================ */
/* SERVICE TEXT DROP ANIMATION (Requested)
/* ============================================================ */
#services .section-header.reveal .section-sub,
#services .service-card.reveal .service-body p {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#services .section-header.reveal.visible .section-sub,
#services .service-card.reveal.visible .service-body p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2s;
}

/* ============================================================ */
/* PRICING PLANS
/* ============================================================ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.pricing-card.popular {
  border-color: var(--primary-violet);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
}
.popular-badge {
  position: absolute;
  top: 15px; right: -30px;
  background: var(--primary-violet);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 30px;
  transform: rotate(45deg);
}
.plan-name { font-size: 1.8rem; margin-bottom: 10px; }
.plan-price { font-size: 3rem; font-weight: 700; color: #fff; margin-bottom: 15px; font-family: 'Oswald', sans-serif; }
.plan-price span { font-size: 1.2rem; color: var(--text-muted); font-family: 'Plus Jakarta Sans', sans-serif; }
.plan-desc { font-size: 0.95rem; margin-bottom: 25px; min-height: 45px; }
.plan-features { list-style: none; margin-bottom: 35px; }
.plan-features li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 10px; }
.plan-features li i { color: var(--accent-green); font-size: 0.9rem; margin-top: 4px; }
.plan-features li.disabled { color: var(--text-muted); opacity: 0.5; }
.plan-features li.disabled i { color: var(--primary-red); }

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

/* ============================================================ */
/* MANIFESTO BIG TEXT
/* ============================================================ */
#manifesto {
  /* margin-top: -10px !important; */
  padding: 120px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.manifesto-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
}
.manifesto-text {
  font-size: 3.5rem;
  line-height: 1.3;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 700;
  max-width: 1000px;
  z-index: 2;
  text-transform: uppercase;
}
.m-word {
  transition: color 0.4s ease;
}
.floating-pill {
  position: absolute;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transform: translateY(50px) scale(0.8);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.m-pill-1 {
  background: var(--primary-red);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 20px rgba(230,0,51,0.5);
  bottom: 15%; right: -5%;
  transform: rotate(-10deg) translateY(50px) scale(0.8);
}
.m-pill-2 {
  background: var(--accent-green);
  color: #000;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 0 20px rgba(0,255,102,0.5);
  top: 15%; left: -5%;
  transform: rotate(15deg) translateY(50px) scale(0.8);
}
.m-pill-3 {
  background: var(--primary-purple);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 20px rgba(138,43,226,0.5);
  bottom: 20%; left: -2%;
  transform: rotate(-15deg) translateY(50px) scale(0.8);
}
.m-pill-4 {
  background: #FF6B00; /* Vibrant Orange */
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 20px rgba(255,107,0,0.5);
  top: 5%; right: 10%;
  transform: rotate(12deg) translateY(50px) scale(0.8);
}
.m-pill-5 {
  background: #FF007A; /* Vibrant Pink */
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 20px rgba(255,0,122,0.5);
  top: 40%; right: -10%;
  transform: rotate(-5deg) translateY(50px) scale(0.8);
}
.m-pill-6 {
  background: #007AFF; /* Vibrant Blue */
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 20px rgba(0,122,255,0.5);
  bottom: 5%; left: 35%;
  transform: rotate(8deg) translateY(50px) scale(0.8);
}
.m-pill-7 {
  background: #00E5FF; /* Vibrant Cyan */
  color: #000;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 0 20px rgba(0,229,255,0.5);
  top: 50%; left: -10%;
  transform: rotate(-12deg) translateY(50px) scale(0.8);
}

.reveal-text-container.visible .floating-pill {
  opacity: 1;
}
.reveal-text-container.visible .m-pill-1 {
  transform: rotate(-10deg) translateY(0) scale(1);
  transition-delay: 1.5s;
}
.reveal-text-container.visible .m-pill-2 {
  transform: rotate(15deg) translateY(0) scale(1);
  transition-delay: 1.8s;
}
.reveal-text-container.visible .m-pill-3 {
  transform: rotate(-15deg) translateY(0) scale(1);
  transition-delay: 2.1s;
}
.reveal-text-container.visible .m-pill-4 {
  transform: rotate(12deg) translateY(0) scale(1);
  transition-delay: 2.3s;
}
.reveal-text-container.visible .m-pill-5 {
  transform: rotate(-5deg) translateY(0) scale(1);
  transition-delay: 2.5s;
}
.reveal-text-container.visible .m-pill-6 {
  transform: rotate(8deg) translateY(0) scale(1);
  transition-delay: 2.7s;
}
.reveal-text-container.visible .m-pill-7 {
  transform: rotate(-12deg) translateY(0) scale(1);
  transition-delay: 2.9s;
}

@media (max-width: 992px) {
  .manifesto-text { font-size: 2.5rem; }
}
@media (max-width: 768px) {
  .manifesto-inner { display: block; text-align: center; padding-bottom: 30px; }
  .manifesto-text { font-size: 1.6rem; padding: 0 10px; margin-bottom: 30px; }
  .floating-pill { 
    position: relative !important; 
    inset: auto !important; 
    display: inline-block !important; 
    margin: 5px 8px; 
    transform: scale(0.9) !important; 
  }
  .reveal-text-container.visible .floating-pill { transform: scale(1) !important; }
}

/* ============================================================ */
/* EXTRA SMALL MOBILE (Global 500px Layout Corrections)
/* ============================================================ */
@media (max-width: 500px) {
  .section-inner { padding: 80px 5%; }
  #hero { padding: 100px 5% 50px; }
  .hero-headline { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .section-title { font-size: 2.1rem; }
  .manifesto-text { font-size: 1.5rem; line-height: 1.4; padding: 0 5px; }
  .pricing-card { padding: 25px; }
  .plan-price { font-size: 2.2rem; }
  .lead-form-left, .lead-form-right { padding: 20px; }
  .whatsapp-float { bottom: 15px; right: 15px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 22px; height: 22px; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.7rem; }
}

/* ============================================================ */
/* GROWTH ROADMAP (MOBILE FIRST)
/* ============================================================ */
#growth-roadmap {
  background: var(--bg-dark);
  padding: 80px 0;
  overflow: hidden;
}

.roadmap-visual-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 5%;
}

.roadmap-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  position: relative;
}

/* Center Orb */
.roadmap-center {
  width: 260px;
  height: 260px;
  background: var(--bg-card);
  border: 4px solid var(--primary-purple);
  border-radius: 50%;
  z-index: 100; /* Priority as requested */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(138, 43, 226, 0.5), inset 0 0 30px rgba(138, 43, 226, 0.2);
  text-align: center;
  position: relative;
  transition: transform 0.5s ease;
}

.center-content { padding: 20px; }
.center-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.center-logo span { color: var(--primary-red); }
.center-tagline {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--primary-purple);
  letter-spacing: 2px;
  margin-top: 5px;
  text-transform: uppercase;
}
.center-icon {
  display: block;
  font-size: 2.2rem;
  color: var(--accent-green);
  margin-top: 15px;
  animation: float-rocket 3s ease-in-out infinite;
}

@keyframes float-rocket {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

/* Roadmap Items Base */
.roadmap-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 180px;
  text-align: center;
}

.roadmap-arrow {
  width: 60px;
  height: 80px;
  position: relative;
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
  transition: transform 0.3s ease;
}

.roadmap-arrow::before {
  content: '';
  position: absolute;
  top: -30px; left: 0;
  width: 100%; height: 50px;
  background: inherit;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.r-num {
  position: relative;
  z-index: 5;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,0.4);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
}

.roadmap-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background: var(--bg-card);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transition: all 0.3s;
  white-space: normal;
  max-width: 140px;
}

/* Colors */
.roadmap-arrow.green { background: var(--accent-green); box-shadow: 0 0 20px rgba(0,255,102,0.3); }
.roadmap-arrow.orange { background: #FF9F1C; }
.roadmap-arrow.red { background: var(--primary-red); }
.roadmap-arrow.dark { background: #202433; border: 1px solid rgba(255,255,255,0.1); }
.roadmap-arrow.blue { background: #3A86FF; }
.roadmap-arrow.gray { background: #778DA9; }

/* Mobile Sections Layout */
.roadmap-top, .roadmap-left-side, .roadmap-right-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
}

.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

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

/* Desktop Roadmap (Floating Balanced View) */
@media (min-width: 1024px) {
  .roadmap-container {
    height: 650px;
    flex-direction: row;
    align-items: flex-end;
    gap: 0;
  }

  .roadmap-center {
    position: absolute;
    bottom: 0;
    top: 55%;
    left: 35%;
    transform: translateX(-50%);
    width: 320px;
    height: 320px;
  }

  .roadmap-top {
    position: absolute;
    bottom: 300px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: auto;
  }
  
  .roadmap-top .roadmap-label {
    position: absolute;
    bottom: 100%;
    margin-bottom: 40px;
    white-space: nowrap;
    max-width: none;
  }

  .roadmap-left-side, .roadmap-right-side {
    position: absolute;
    bottom: 0;
    flex-direction: row;
    width: auto;
    width: auto;
  }

  .roadmap-left-side {
    right: calc(50% + 110px);
    flex-direction: row-reverse;
  }

  .roadmap-right-side {
    left: calc(50% + 110px);
  }

  /* Different dynamic heights for balance */
  .r-item-1 .roadmap-arrow { height: 320px; }
  .r-item-2 .roadmap-arrow { height: 260px; }
  .r-item-3 .roadmap-arrow { height: 210px; }
  .r-item-4 .roadmap-arrow { height: 160px; }
  .r-item-5 .roadmap-arrow { height: 110px; }
  
  /* Horizontal labels for side items */
  .roadmap-left-side .roadmap-item,
  .roadmap-right-side .roadmap-item {
    flex-direction: column;
  }
  
  .roadmap-label {
    white-space: nowrap;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .roadmap-center { width: 220px; height: 220px; }
  .center-logo { font-size: 1.5rem; }
  .center-tagline { font-size: 0.8rem; }
  .roadmap-arrow { width: 50px; height: 100px; }
  .reveal-up { transform: translateY(40px); }
}


/* ============================================================
   PACKAGE PAGE LAYOUT
   ============================================================ */
.package-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 60px 5%;
    max-width: 1300px;
    margin: 0 auto;
}
.package-content {
    flex: 1;
}
.package-sidebar {
    width: 100%;
    max-width: 450px;
    position: sticky;
    top: 120px;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.package-sidebar form {
    width: 100%;
}
.package-content-inner {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.package-content-inner h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
}
.package-content-inner h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-main);
}
.package-content-inner ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.package-content-inner ul li {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.package-content-inner ul li::before {
    content: "\f00c"; /* FontAwesome Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-green);
    margin-top: 3px;
}

@media (max-width: 992px) {
    .package-layout { flex-direction: column; }
    .package-sidebar { position: static; max-width: 100%; }
}

@media (max-width: 600px) {
    .package-layout { padding: 40px 5%; }
    .package-content-inner { padding: 25px; }
    .package-content-inner h2 { font-size: 1.5rem; }
    .package-content-inner h3 { font-size: 1.2rem; }
    .package-sidebar { padding: 25px; }
    .package-sidebar h3 { font-size: 1.3rem !important; }
    .pricing-card { padding: 30px; }
    .hero-headline { font-size: 2.2rem; }
    .cr-card-desc { font-size: 0.95rem; }
}
/* new code */
     .mobile-only{
            display: none;
        }
        .desktop-only{
            display: block;
        }
        @media screen and (max-width: 768px) {
            .desktop-only {
                display: none;
            }
            .mobile-only {
                display: block;
                text-align: center;
                margin-top: 2rem;
                width: 100%;
            }
            .mobile-only img {
                width: 100%;
                height: auto;
                max-width: 600px; /* Prevent it from getting too large on tablets */
                display: inline-block;
            }
        }

        /*  */


         .faq-section {
        padding: 90px 20px;
        background: #050816;
        position: relative;
        overflow: hidden;
    }

    .faq-section::before {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        background: rgba(138, 43, 226, 0.12);
        filter: blur(120px);
        top: -120px;
        left: -120px;
        z-index: 0;
    }

    .faq-section::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(255, 0, 98, 0.08);
        filter: blur(100px);
        bottom: -100px;
        right: -100px;
        z-index: 0;
    }

    .faq-section .container {
        max-width: 1000px;
        margin: auto;
        position: relative;
        z-index: 2;
    }

    .faq-heading {
        text-align: center;
        margin-bottom: 60px;
    }

    .faq-tag {
        display: inline-block;
        padding: 8px 18px;
        border: 1px solid #ff006e;
        border-radius: 50px;
        color: #ff006e;
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 18px;
        font-weight: 600;
    }

    .faq-heading h2 {
        color: #fff;
        font-size: 52px;
        line-height: 1.1;
        font-weight: 800;
        margin-bottom: 18px;
    }

    .faq-heading h2 span {
        color: #a855f7;
    }

    .faq-heading p {
        color: #9ca3af;
        max-width: 720px;
        margin: auto;
        line-height: 1.8;
        font-size: 16px;
    }

    .faq-container {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .faq-item {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 20px;
        overflow: hidden;
        transition: 0.4s ease;
        backdrop-filter: blur(10px);
    }

    .faq-item.active {
        border-color: #a855f7;
        box-shadow: 0 0 25px rgba(168,85,247,0.25);
    }

    .faq-question {
        width: 100%;
        background: transparent;
        border: none;
        outline: none;
        color: #fff;
        padding: 28px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        cursor: pointer;
        text-align: left;
    }

    .faq-question span {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.5;
    }

    .faq-icon {
        min-width: 48px;
        width: 48px;
        height: 48px;
        border-radius: 14px;
        /* background: linear-gradient(135deg, #7c3aed, #ff006e); */
        background-color:  #E60033;;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        transition: 0.3s ease;
    }

    .faq-item.active .faq-icon {
        transform: rotate(45deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .faq-content {
        padding: 0 28px 28px;
        color: #b8c2cc;
        line-height: 1.9;
        font-size: 15px;
    }

    .faq-bottom {
        text-align: center;
        margin-top: 60px;
    }

    .faq-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        /* background: linear-gradient(90deg, #ff006e, #7c3aed); */
        background-color: #E60033;
        color: #fff;
        padding: 16px 28px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 700;
        transition: 0.3s ease;
    }

    .faq-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(168,85,247,0.3);
    }

    /* =========================
            MOBILE UI
    ========================= */
    @media (max-width: 768px) {

        .faq-section {
            padding: 70px 16px;
        }

        .faq-heading h2 {
            font-size: 34px;
        }

        .faq-heading p {
            font-size: 14px;
            line-height: 1.7;
        }

        .faq-question {
            padding: 20px;
            gap: 15px;
        }

        .faq-question span {
            font-size: 15px;
            line-height: 1.6;
        }

        .faq-icon {
            min-width: 40px;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            font-size: 14px;
        }

        .faq-content {
            padding: 0 20px 20px;
            font-size: 14px;
            line-height: 1.8;
        }

        .faq-btn {
            width: 100%;
            justify-content: center;
            font-size: 14px;
        }
    }