/* ========== COLOR PALETTE ========== */
:root {
  --bg: #1a1a1a;
  --bg2: #2a2a2a;
  --text: #e5e5e5;
  --muted: #a8a8a8;
  --cyan: #ff9f43;
  --border: #3d3d3d;
  --accent: #ff9f43;
}

/* ========== GLOBAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.3px;
  overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin: 0.5rem 0;
}

h2 {
  font-size: 2.5rem;
  margin: 1rem 0;
}

h3 {
  font-size: 1.5rem;
  margin: 0.75rem 0;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

/* ========== NAVIGATION ========== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
}

.nav-cta {
  background: var(--cyan) !important;
  color: var(--bg) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  padding: 100px 5%;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 159, 67, 0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.hero-glow,
.hero-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  pointer-events: none;
}

.hero-glow {
  width: 300px;
  height: 300px;
  background: var(--cyan);
  top: -50px;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-glow-2 {
  width: 300px;
  height: 300px;
  background: var(--cyan);
  bottom: -50px;
  right: 10%;
  animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(30px); }
}

.grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 159, 67, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 159, 67, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-label {
  font-size: 0.9rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

h1 span {
  color: var(--cyan);
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--muted);
  margin: 2rem 0;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.btn-primary,
.btn-outline {
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--cyan);
  color: var(--bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 159, 67, 0.3);
}

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

.btn-outline:hover {
  background: rgba(255, 159, 67, 0.1);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.hero-stat .label {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== TICKER ========== */
.ticker-wrap {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 1rem 0;
  margin: 2rem 0;
}

.ticker-track {
  display: flex;
  gap: 2rem;
  animation: scroll-left 40s linear infinite;
  width: max-content;
  padding: 0 5%;
}

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

.ticker-item {
  white-space: nowrap;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
  padding: 0 1rem;
  border-right: 1px solid var(--border);
}

.ticker-item:last-child {
  border-right: none;
}

/* ========== SECTIONS ========== */
section {
  padding: 5rem 5%;
  margin: 0;
}

.section-label {
  font-size: 0.85rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--cyan);
  border-radius: 2px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 800px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* ========== SERVICE BLOCKS ========== */
.service-block {
  background: var(--bg);
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.service-block:hover {
  background: rgba(255, 159, 67, 0.05);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.service-block h3 {
  color: var(--text);
  font-size: 1.3rem;
}

.service-block p {
  margin: 0;
  font-size: 0.95rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  background: rgba(255, 159, 67, 0.1);
  color: var(--cyan);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ========== PROJECTS GRID ========== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.project-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 10px 40px rgba(255, 159, 67, 0.15);
  transform: translateY(-4px);
}

.project-card h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.project-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.project-industry,
.project-result {
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 159, 67, 0.1);
  color: var(--cyan);
  border-radius: 4px;
}

.project-card p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.project-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan);
}

.metric-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ========== PRICING SECTION ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 20px 60px rgba(255, 159, 67, 0.2);
  transform: translateY(-6px);
}

.pricing-card.featured {
  border: 2px solid var(--cyan);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--bg);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-card h3 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.pricing-currency {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: block;
}

.pricing-timeline {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 159, 67, 0.05);
  border-radius: 6px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.pricing-feature::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ========== FAQ SECTION ========== */
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease;
  color: var(--text);
}

.faq-question:hover {
  background: rgba(255, 159, 67, 0.05);
  color: var(--cyan);
}

.faq-toggle {
  color: var(--cyan);
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid var(--border);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 1.5rem;
  margin: 0;
}

/* ========== PAGE HEADER ========== */
.page-header {
  position: relative;
  padding: 80px 5%;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 159, 67, 0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.page-header-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--cyan);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  top: -100px;
  right: 10%;
  pointer-events: none;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.breadcrumb span {
  color: var(--cyan);
}

.page-header h1 {
  font-size: 3rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

/* ========== FOOTER STYLES ========== */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-col h4 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

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

.footer-bottom-links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

/* ========== FOOTER ========== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 5%;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section h4 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: var(--muted);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--cyan);
}

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

/* ========== ANIMATIONS ========== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: slideInUp 0.8s ease forwards;
  opacity: 0;
}

.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }
.reveal-delay-4 { animation-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  nav { padding: 1rem 3%; }
  section { padding: 3rem 3%; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  nav {
    padding: 1rem 3%;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    background: var(--bg2);
    padding: 1rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu a {
    color: var(--text);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .mobile-menu a:hover {
    background: rgba(255, 159, 67, 0.1);
    color: var(--cyan);
  }

  .hero {
    padding: 60px 3%;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .projects-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .service-block:nth-child(n+4) {
    grid-column: span 1;
  }

  .ticker-track {
    animation: scroll-left 20s linear infinite;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }

  section { padding: 2rem 3%; }
  .hero { padding: 40px 3%; }

  .hero-label {
    font-size: 0.75rem;
  }

  .hero-stat .num {
    font-size: 2rem;
  }

  .pricing-amount {
    font-size: 2rem;
  }
}
