:root {
  --primary: #00F0FF;
  --bg-dark: #0f1014;
  --bg-card: #181a20;
  --text-light: #f3f4f6;
  --text-gray: #9ca3af;
  --font-main: 'Outfit', sans-serif;
  --transition: all 0.3s ease;
}

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

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

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(15, 16, 20, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

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

.btn-outline {
  border: 2px solid var(--text-light);
  color: var(--text-light);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(0,240,255,0.1) 0%, rgba(15,16,20,0) 70%);
  border-radius: 50%;
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  color: var(--primary);
  background: rgba(0, 240, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .nav-links { display: none; }
  .hero-btns { flex-direction: column; }
  
  /* Mobile Header Grid (Logo+Btn on top, Socials below) */
  .header {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    row-gap: 15px;
    align-items: center;
    padding: 15px 5%;
  }
  .logo { 
    grid-column: 1 / 2; 
  }
  .header-actions { 
    display: contents !important; 
  }
  .header-actions .btn { 
    grid-column: 2 / 3;
    font-size: 0.75rem; 
    padding: 0.5rem; 
    white-space: nowrap; /* Prevent button from wrapping and breaking */
    width: 100%;
  }
  .header-actions .social-icons-container { 
    grid-column: 1 / 3;
    justify-content: center !important; 
  }
  
  .hero {
    padding-top: 180px; /* Prevent header from hiding content */
  }
}

/* General Sections */
.section { padding: 5rem 5%; }
.section-darker { background-color: #0b0c0e; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; font-weight: 800; }
.section-title span { color: var(--primary); }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { background: var(--bg-card); padding: 2rem; border-radius: 20px; transition: var(--transition); border: 1px solid rgba(255,255,255,0.05); }
.service-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1); }
.service-icon { font-size: 3rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #fff; }
.service-card p { color: var(--text-gray); }

/* Old Pricing Styles Removed */

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.blog-card { background: var(--bg-card); border-radius: 20px; overflow: hidden; transition: var(--transition); border: 1px solid rgba(255,255,255,0.05); }
.blog-card:hover { transform: translateY(-5px); }
.blog-img { height: 200px; background: #222; width: 100%; }
.blog-content { padding: 1.5rem; }
.blog-content h4 { font-size: 1.2rem; margin-bottom: 1rem; color: #fff; }
.read-more { color: var(--primary); text-decoration: none; font-weight: 600; }

/* Contact */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-info h2 { font-size: 3rem; line-height: 1.2; margin-bottom: 1rem; }
.contact-info h2 span { color: var(--primary); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 1rem; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); background: var(--bg-card); color: #fff; font-family: inherit; font-size: 1rem; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); }

/* Footer */
.footer { text-align: center; padding: 2rem; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-gray); }

@media (max-width: 768px) {
    .pricing-card.featured { transform: scale(1); }
    .contact-container { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
}


.service-img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; margin-bottom: 1.5rem; background: #000; }


/* Modal Styles */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(11, 12, 14, 0.85); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; visibility: hidden; transition: var(--transition); }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { background: var(--bg-card); width: 90%; max-width: 500px; max-height: 90vh; overflow-y: auto; padding: 2.5rem; border-radius: 20px; border: 1px solid rgba(0, 240, 255, 0.2); position: relative; transform: translateY(20px); transition: var(--transition); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.modal-overlay.active .modal-content { transform: translateY(0); }
body.no-scroll { overflow: hidden; }
.close-modal { position: absolute; top: 1rem; right: 1.5rem; font-size: 2rem; cursor: pointer; color: var(--text-gray); transition: var(--transition); }
.close-modal:hover { color: var(--primary); }
.modal-step { display: none; animation: fadeIn 0.4s ease; }
.modal-step.active { display: block; }
.modal-step h2 { font-size: 1.8rem; margin-bottom: 0.5rem; color: #fff; line-height: 1.2; }
.modal-step p { color: var(--text-gray); margin-bottom: 2rem; font-size: 0.95rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.95rem; color: #fff; }
.chips-container { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip { padding: 0.5rem 1rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; cursor: pointer; font-size: 0.9rem; transition: var(--transition); background: rgba(0,0,0,0.2); }
.chip:hover { border-color: rgba(0, 240, 255, 0.5); }
.chip.active { background: rgba(0, 240, 255, 0.15); border-color: var(--primary); color: var(--primary); font-weight: 600; }
.privacy-note { font-size: 0.8rem; text-align: center; margin-top: 1rem; color: var(--text-gray); margin-bottom: 0; }
.modal-step form input { width: 100%; padding: 1rem; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.2); color: #fff; font-family: inherit; margin-bottom: 1rem; }
.modal-step form input:focus { outline: none; border-color: var(--primary); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Cookies Banner */
.cookies-banner { position: fixed; bottom: -100px; left: 0; width: 100%; background: #000; padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1500; transition: bottom 0.5s ease; border-top: 1px solid rgba(255,255,255,0.1); box-shadow: 0 -10px 30px rgba(0,0,0,0.5); }
.cookies-banner.visible { bottom: 0; }
.cookies-banner p { margin: 0; font-size: 0.95rem; color: var(--text-gray); flex: 1; margin-right: 2rem; }
.cookies-banner a { color: var(--primary); text-decoration: underline; }
.btn-small { padding: 0.5rem 1.5rem; font-size: 0.9rem; white-space: nowrap; }
@media (max-width: 768px) { .cookies-banner { flex-direction: column; text-align: center; gap: 1rem; } .cookies-banner p { margin-right: 0; } }


/* Remove increment/decrement spinners from number input */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
input[type=number] {
    -moz-appearance: textfield;
}


/* Social Icons Hover */
.social-icons a { color: var(--text-gray); transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.social-icons a:hover { color: var(--primary); transform: scale(1.1); }
@media (max-width: 768px) {
    .header-socials { margin-top: 1rem !important; margin-bottom: 1rem !important; justify-content: center; }
}


/* Phase 2: Neuromarketing & CRO */
:root {
  --accent-warm: #F59E0B; /* Amber/Gold */
}
.micro-proof { font-size: 0.9rem; color: var(--text-gray); margin-top: 1.5rem; font-weight: 500; }
.mobile-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(11, 12, 14, 0.95); backdrop-filter: blur(10px); padding: 1rem 5%; z-index: 1000; border-top: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 768px) {
    .mobile-sticky-bar { display: block; }
    .cookies-banner.visible { bottom: 75px !important; } /* Offset for sticky bar */
}
.progress-bar-container { width: 100%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 10px; margin-bottom: 0.5rem; overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--primary); }
.progress-text { font-size: 0.8rem; color: var(--accent-warm); text-transform: uppercase; font-weight: 700; margin-bottom: 1rem !important; }
.btn-accent { background-color: var(--accent-warm) !important; color: #000 !important; font-weight: 700 !important; }
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3) !important; }


/* --- Pricing Packages (Phase 2 UI/UX) --- */
.billing-toggle-container { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-bottom: 3rem; }
.billing-label { font-size: 1rem; font-weight: 500; color: var(--text-gray); display: flex; align-items: center; gap: 0.5rem; }
.badge-discount { background: var(--accent-warm); color: #000; font-size: 0.75rem; font-weight: 800; padding: 0.2rem 0.5rem; border-radius: 20px; }
/* Switch Toggle */
.switch { position: relative; display: inline-block; width: 50px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(255,255,255,0.1); transition: .4s; border: 1px solid rgba(255,255,255,0.2); }
.slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 4px; bottom: 3px; background-color: var(--primary); transition: .4s; }
.switch input:checked + .slider { background-color: rgba(0, 240, 255, 0.2); border-color: var(--primary); }
.switch input:checked + .slider:before { transform: translateX(22px); background-color: var(--primary); box-shadow: 0 0 10px var(--primary); }
.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; align-items: stretch; max-width: 1100px; margin: 0 auto; }
.pricing-card { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 2.5rem 2rem; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; text-align: center; height: 100%; }
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
.tier-name { font-size: 1.5rem; color: #FFF; margin-bottom: 0.5rem; }
.tier-desc { color: var(--text-gray); font-size: 0.9rem; min-height: 40px; margin-bottom: 1.5rem; }
.price { font-size: 3rem; font-weight: 800; color: #FFF; margin-bottom: 1.5rem; display: flex; align-items: baseline; gap: 0.2rem; }
.price .currency { font-size: 1rem; color: var(--primary); font-weight: 600; }
.price .period { font-size: 1rem; color: var(--text-gray); font-weight: 400; }
.custom-price { font-size: 1.8rem; line-height: 1.2; }
.pricing-card .features { list-style: none; margin-bottom: 2.5rem; flex-grow: 1; text-align: left; }
.pricing-card .features li { display: flex; gap: 0.8rem; margin-bottom: 1rem; font-size: 0.95rem; color: #E4E4E7; align-items: flex-start; text-align: left; }
.pricing-card .features .icon { color: var(--primary); font-weight: bold; flex-shrink: 0; }
.pricing-card .btn { width: 100%; text-align: center; margin-top: auto; }
.price-note { font-size: 0.8rem; text-align: center; color: var(--text-gray); margin-top: 1rem; }

/* The Decoy/Featured Card */
.pricing-card.featured { border: 1px solid rgba(0, 240, 255, 0.5); box-shadow: 0 0 30px rgba(0, 240, 255, 0.15); transform: scale(1.04); background: rgba(0, 240, 255, 0.05); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-10px); box-shadow: 0 0 40px rgba(0, 240, 255, 0.3); }
.top-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent-warm); color: #000; font-size: 0.75rem; font-weight: 800; padding: 0.4rem 1rem; border-radius: 20px; white-space: nowrap; box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3); }

@media (max-width: 992px) {
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-10px); }
}


/* Force 3 columns for pricing on desktop */
@media (min-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

