:root{
  --bg:#0a0a0c;
  --bg-elev:#101015;
  --text:#e9e9ee;
  --muted:#b0b0b8;
  --pink:#ff005c;
  --ring: 0 0 0 1px rgba(255,255,255,.06), 0 8px 30px rgba(0,0,0,.5);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0; 
  overflow-x: hidden; 
  background: 
    radial-gradient(1200px 800px at 10% -10%, rgba(193,18,33,.08), transparent 60%),
    radial-gradient(900px 700px at 110% 10%, rgba(193,18,33,.06), transparent 60%),
    linear-gradient(180deg, #0a0a0c 0%, #0b0a0e 40%, #130710 100%);
  color: var(--text); 
  font-family: "Noto Sans", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Arial, sans-serif;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* Page Hero */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #0a0a0c, #130710);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,0,92,.08) 0 2px, transparent 2px 26px);
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-watermark {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(120px, 18vw, 200px);
  font-weight: 900;
  color: transparent;
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,0,92,.12), rgba(255,255,255,.06));
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.hero-title {
  font-size: clamp(32px, 6vw, 54px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.hero-title .accent {
  color: var(--pink);
}

.hero-subtitle {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

/* Contact Stats */
.contact-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.contact-stat i {
  color: var(--pink);
  font-size: 18px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-eyebrow {
  color: var(--pink);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  position: relative;
}

.section-eyebrow::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), rgba(255,255,255,.3));
  border-radius: 999px;
}

.section-title {
  color: #fff;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin: 0 0 16px 0;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: #000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(180deg, #161621, #0f0f18);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  border-color: rgba(255,0,92,.2);
}

.service-card.featured {
  border-color: var(--pink);
  box-shadow: 0 8px 32px rgba(255,0,92,.2);
}

.featured-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--pink);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 12px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--pink), #ff3385);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 16px 40px rgba(255,0,92,.4);
}

.service-icon i {
  font-size: 32px;
  color: #fff;
}

.service-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.service-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  text-align: left;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #e9e9ee;
  font-size: 15px;
  font-weight: 500;
  margin-left: 2.5rem;
}

.service-features li::before {
  content: "✓";
  color: var(--pink);
  font-weight: bold;
  font-size: 16px;
  width: 20px;
  flex-shrink: 0;
  text-align: center;
}

.service-price {
  color: var(--pink);
  font-size: 20px;
  font-weight: 900;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0f18, #1a0f1a);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,0,92,.05) 0 2px, transparent 2px 26px);
  opacity: 0.3;
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(180deg, #161621, #0f0f18);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  border-color: rgba(255,0,92,.3);
}

.pricing-card.featured {
  border-color: var(--pink);
  box-shadow: 0 8px 32px rgba(255,0,92,.2);
}

.pricing-header {
  margin-bottom: 32px;
}

.plan-name {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.currency {
  color: var(--pink);
  font-size: 24px;
  font-weight: 700;
}

.amount {
  color: var(--pink);
  font-size: 48px;
  font-weight: 900;
}

.period {
  color: var(--muted);
  font-size: 16px;
}

.plan-description {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  text-align: left;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #e9e9ee;
  font-size: 15px;
  font-weight: 500;
  margin-left: 2.5rem;
}

.plan-features li i {
  color: var(--pink);
  font-size: 16px;
  width: 20px;
  flex-shrink: 0;
  text-align: center;
}

/* Why Choose Us Section - Excellence in Every Project */
.why-choose-section {
  background: linear-gradient(135deg, #0a0a0c, #130710);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(1200px 800px at 10% -10%, rgba(255,0,92,.08), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,0,92,.03) 0 2px, transparent 2px 26px);
  pointer-events: none;
}

.why-choose-section .section-header {
  position: relative;
  z-index: 2;
}

.why-choose-section .section-eyebrow {
  color: var(--pink);
}

.why-choose-section .section-title {
  background: linear-gradient(135deg, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-section .section-subtitle {
  color: var(--muted);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.why-choose-item {
  background: linear-gradient(180deg, #161621, #0f0f18);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}

.why-choose-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  border-color: rgba(255,0,92,.3);
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--pink), #ff3385);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 16px 40px rgba(255,0,92,.4);
}

.why-choose-icon i {
  font-size: 32px;
  color: #fff;
}

.why-choose-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.why-choose-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: #000;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #ff3385);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(255,0,92,.3);
}

.step-content {
  flex: 1;
}

.step-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.step-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: var(--pink);
  padding: 80px 0;
  text-align: center;
  box-shadow: 0 -8px 40px rgba(255,0,102,0.12);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.btn-primary {
  background: var(--pink);
  color: white;
}

.btn-primary:hover {
  background: #e6005c;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,0,92,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.cta-section .btn-primary {
  background: white;
  color: var(--pink);
}

.cta-section .btn-primary:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.cta-section .btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-section .btn-outline:hover {
  background: white;
  color: var(--pink);
}

/* Responsive Design */
@media (max-width: 768px) {

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .cta-section {
    padding: 60px 24px;
  }
     .plan-features li{
        margin-left: 6rem;

    }
}

@media (max-width: 480px) {
       .service-features li{
        margin-left: 6rem;
    }
    .plan-features li{
        margin-left: 6rem;

    }
  .cta-section {
    padding: 60px 16px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}