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

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background-color: #000000;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 4rem;
  min-width: 150px;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.logo-text {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  display: inline-block;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 400;
  font-size: 1.05rem;
  padding: 0.5rem 0;
}

.nav-menu a:hover {
  color: #ffffff;
}

.nav-menu a.active {
  color: #ffffff;
  font-weight: 500;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 350px;
  justify-content: flex-end;
}

.search-container {
  position: relative;
  flex: 1;
  max-width: 200px;
}

.search-input {
  width: 100%;
  padding: 0.4rem 2.5rem 0.4rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: #ffffff;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.search-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.social-icon:hover {
  color: #ffffff;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.lets-talk-btn {
  padding: 0.5rem 1.5rem;
  background-color: #037351;
  color: #ffffff;
  border: none;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.lets-talk-btn:hover {
  background-color: #025a3f;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #037351;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px 0;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ffffff, #037351);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #cccccc;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat {
  position: relative;
  padding: 1.5rem;
  background: rgba(3, 115, 81, 0.1);
  border: 2px solid #037351;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 150px;
}

.stat:hover {
  transform: translateY(-5px);
  background: rgba(3, 115, 81, 0.2);
  box-shadow: 0 10px 30px rgba(3, 115, 81, 0.3);
}

.stat.expanded {
  background: rgba(3, 115, 81, 0.2);
  z-index: 100;
  box-shadow: 0 10px 30px rgba(3, 115, 81, 0.4);
  border-color: #04a571;
  min-height: 380px;
}

.stat-front {
  transition: all 0.3s ease;
  display: block;
}

.stat.expanded .stat-front {
  display: none;
}

.expand-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.2rem;
  color: #037351;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.stat:hover .expand-icon {
  opacity: 1;
}

.stat.expanded .expand-icon {
  display: none;
}

.stat-expanded {
  display: none;
  padding: 1.5rem;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.stat.expanded .stat-expanded {
  display: flex;
}

.stat-expanded h3 {
  font-size: 1.2rem;
  color: #037351;
  margin: 0 0 1.25rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(3, 115, 81, 0.3);
  text-align: center;
}

.stat-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  padding: 0.25rem 0;
}

.detail-row .label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.detail-row .value {
  color: #fff;
  font-weight: 600;
  text-align: right;
}

.insight {
  margin-top: 1.25rem;
  padding: 1rem 0.5rem 0.5rem;
  border-top: 1px solid rgba(3, 115, 81, 0.2);
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

.close-icon {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: #037351;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.close-icon:hover {
  opacity: 1;
}

.stat h3 {
  font-size: 2.5rem;
  color: #037351;
  margin-bottom: 0.5rem;
}

.stat p {
  font-size: 0.9rem;
  color: #cccccc;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #037351;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: 2px solid #037351;
  margin-top: 2rem;
  cursor: pointer;
}

.cta-button:hover {
  background-color: transparent;
  color: #037351;
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: #0a0a0a;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  color: #cccccc;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.platform-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(3, 115, 81, 0.3);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
}

.platform-card:hover {
  transform: translateY(-10px);
  border-color: #037351;
  background: rgba(3, 115, 81, 0.05);
}

.platform-card h3 {
  color: #037351;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.platform-card .handle {
  color: #999999;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.platform-card ul {
  list-style: none;
}

.platform-card li {
  padding: 0.5rem 0;
  color: #cccccc;
}

/* Pricing Packages */
.packages {
  padding: 80px 0;
  background-color: #000000;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(3, 115, 81, 0.3);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: #037351;
}

.pricing-card.featured {
  border-color: #037351;
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #037351;
  color: #ffffff;
  padding: 5px 20px;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(45deg);
  transform-origin: top right;
  right: -35px;
  top: 15px;
}

.card-header {
  background: linear-gradient(135deg, rgba(3, 115, 81, 0.1), transparent);
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(3, 115, 81, 0.3);
}

.card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: 2px;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: #037351;
  margin-bottom: 0.5rem;
}

.price-desc {
  color: #999999;
  font-size: 0.9rem;
}

.card-body {
  padding: 2rem;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
}

.features li {
  padding: 0.75rem 0;
  color: #cccccc;
  display: flex;
  align-items: flex-start;
}

.checkmark {
  color: #037351;
  margin-right: 10px;
  font-size: 1.2rem;
}

.sub-features {
  list-style: none;
  margin-left: 30px;
  margin-top: 0.5rem;
}

.sub-features li {
  padding: 0.25rem 0;
  font-size: 0.9rem;
  color: #999999;
}

.total-content {
  font-weight: bold;
  color: #ffffff;
  border-top: 1px solid rgba(3, 115, 81, 0.3);
  padding-top: 1rem;
  margin-top: 1rem;
}

.price-per {
  color: #037351;
  font-weight: 500;
}

.package-btn {
  width: 100%;
  padding: 15px;
  background-color: transparent;
  color: #037351;
  border: 2px solid #037351;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.package-btn:hover {
  background-color: #037351;
  color: #ffffff;
}

.featured-btn {
  background-color: #037351;
  color: #ffffff;
}

.featured-btn:hover {
  background-color: transparent;
  color: #037351;
}

/* Comparison Table */
.comparison {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  overflow: hidden;
}

.comparison-table thead {
  background: linear-gradient(90deg, #037351, #025a3f);
}

.comparison-table th {
  padding: 1.5rem 1rem;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}

.comparison-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(3, 115, 81, 0.1);
  color: #cccccc;
}

.comparison-table tbody tr:hover {
  background: rgba(3, 115, 81, 0.05);
}

.featured-col {
  background: rgba(3, 115, 81, 0.1);
}

.price-small {
  display: block;
  font-size: 0.9rem;
  font-weight: normal;
  color: #ffffff;
  margin-top: 0.25rem;
}

.total-row {
  font-weight: bold;
  background: rgba(3, 115, 81, 0.05);
}

.total-row td {
  color: #ffffff;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #000000, #0a0a0a);
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info h3,
.contact-cta h3 {
  color: #037351;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  color: #ffffff;
  text-decoration: none;
  padding: 1rem;
  background: rgba(3, 115, 81, 0.1);
  border: 1px solid rgba(3, 115, 81, 0.3);
  border-radius: 10px;
  transition: all 0.3s;
  display: inline-block;
}

.social-link:hover {
  background: rgba(3, 115, 81, 0.2);
  border-color: #037351;
  transform: translateX(10px);
}

.contact-cta p {
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-btn {
  background-color: #037351;
  border: 2px solid #037351;
}

.contact-btn:hover {
  background-color: transparent;
  color: #037351;
}

/* Demographics Section */
.demographics {
  padding: 80px 0;
  background-color: #000000;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.demo-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(3, 115, 81, 0.3);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
}

.demo-card:hover {
  transform: translateY(-5px);
  border-color: #037351;
  background: rgba(3, 115, 81, 0.05);
}

.demo-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.demo-card h3 {
  color: #037351;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.demo-stat {
  margin-bottom: 1.5rem;
}

.big-num {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.demo-label {
  color: #999999;
  font-size: 0.9rem;
}

.demo-breakdown {
  text-align: left;
  margin-top: 1.5rem;
}

.demo-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #cccccc;
}

.interest-list {
  list-style: none;
  text-align: left;
}

.interest-list li {
  padding: 0.5rem 0;
  color: #cccccc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.engagement-stats {
  text-align: left;
  margin-top: 1rem;
}

.eng-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.eng-label {
  display: block;
  color: #999999;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.eng-value {
  color: #ffffff;
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(3, 115, 81, 0.3);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
}

.service-item:hover {
  transform: translateY(-10px);
  border-color: #037351;
  background: rgba(3, 115, 81, 0.05);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-item h3 {
  color: #037351;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-item p {
  color: #cccccc;
  line-height: 1.6;
}

/* Why Me Section */
.why-me {
  padding: 80px 0;
  background-color: #000000;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(3, 115, 81, 0.05), transparent);
  border-left: 3px solid #037351;
  transition: all 0.3s;
}

.why-card:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg, rgba(3, 115, 81, 0.1), transparent);
}

.why-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.why-card p {
  color: #cccccc;
  line-height: 1.6;
}

/* Portfolio Preview Section */
.portfolio-preview {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.content-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.content-type-card {
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(3, 115, 81, 0.3);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s;
}

.content-type-card:hover {
  transform: translateY(-5px);
  border-color: #037351;
  background: rgba(3, 115, 81, 0.05);
}

.type-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.type-header h3 {
  color: #ffffff;
  font-size: 1.3rem;
}

.type-badge {
  background: #037351;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.content-metrics {
  list-style: none;
}

.content-metrics li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #cccccc;
}

.content-metrics li:last-child {
  border-bottom: none;
}

.content-metrics strong {
  color: #037351;
  font-weight: 600;
}

.portfolio-cta {
  text-align: center;
  margin-top: 3rem;
}

.portfolio-cta p {
  color: #cccccc;
  margin-bottom: 1rem;
}

.portfolio-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: #037351;
  border: 2px solid #037351;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.portfolio-btn:hover {
  background-color: #037351;
  color: #ffffff;
}

/* Process Section */
.process {
  padding: 80px 0;
  background-color: #000000;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #037351, #025a3f);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem auto;
}

.process-step h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.process-step p {
  color: #cccccc;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* FAQs Section */
.faqs {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(3, 115, 81, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: #037351;
  background: rgba(3, 115, 81, 0.05);
}

.faq-item h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: #cccccc;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: #000000;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(3, 115, 81, 0.3);
}

.footer p {
  color: #999999;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .nav-right {
    min-width: auto;
  }
  
  .search-container {
    max-width: 150px;
  }
}

@media (max-width: 968px) {
  .navbar .container {
    flex-wrap: nowrap;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000000;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(3, 115, 81, 0.3);
    gap: 0;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }
  
  .nav-right {
    gap: 1rem;
    min-width: auto;
  }
  
  .search-container {
    display: none;
  }
  
  .social-icons {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .stat {
    min-height: 120px;
  }
  
  .stat.expanded {
    transform: scale(1);
    position: relative;
    width: 100%;
    min-height: 280px;
  }
  
  .stat-expanded h3 {
    font-size: 1.1rem;
  }
  
  .detail-row {
    font-size: 0.8rem;
  }
  
  .insight {
    font-size: 0.8rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .comparison-table {
    font-size: 0.85rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
}