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

body {
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* ── SCROLL ANIMATIONS ── */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
              transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.reveal        { opacity: 0; transform: translateY(45px); }
.reveal-left   { opacity: 0; transform: translateX(-60px); }
.reveal-right  { opacity: 0; transform: translateX(60px); }
.reveal-scale  { opacity: 0; transform: scale(0.88); }
.reveal.visible, .reveal-left.visible,
.reveal-right.visible, .reveal-scale.visible { opacity: 1; transform: none; }
.visible.delay-1 { transition-delay: 0.08s; }
.visible.delay-2 { transition-delay: 0.17s; }
.visible.delay-3 { transition-delay: 0.26s; }
.visible.delay-4 { transition-delay: 0.35s; }
.visible.delay-5 { transition-delay: 0.44s; }
.reveal:not(.visible), .reveal-left:not(.visible),
.reveal-right:not(.visible), .reveal-scale:not(.visible) { transition-delay: 0s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── DIVIDER ── */
.divider {
  width: 91%; background-color: #00ff9c;
  border: none; height: 2px; margin: 0.5rem auto;
}

/* ── HERO ── */
.hero {
  width: 100%;
  padding: 7rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,156,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 720px; margin: 0 auto; }
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: #00ff9c;
  margin-bottom: 1.2rem;
  animation: slideDown 0.7s ease both;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: white;
  animation: fadeUp 0.9s 0.1s ease both;
}
.grad {
  background: linear-gradient(90deg, #00ff9c, lightgreen);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.05rem;
  color: #999;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
  font-family: Cambria, Georgia, serif;
  text-align: center;
  animation: fadeUp 0.9s 0.2s ease both;
}

/* ── INTRO SECTION (WHAT IS PENTESTING) ── */
.intro-section {
  width: 88%; max-width: 1050px;
  margin: 0 auto 3rem;
  padding: 3rem 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-content .sec-tag {
  color: #00ff9c;
  font-size: 0.72rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
}
.intro-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: white;
}
.intro-content p {
  color: #999;
  font-family: Cambria, Georgia, serif;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.intro-content strong { color: #00ff9c; }

.intro-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.h-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.6rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: 0.3s;
}
.h-item:hover {
  background: rgba(0,255,156,0.03);
  border-color: rgba(0,255,156,0.15);
  transform: translateX(5px);
}
.h-icon { font-size: 1.8rem; }
.h-text h4 {
  font-size: 0.95rem;
  color: white;
  margin-bottom: 0.2rem;
}
.h-text p {
  color: #666;
  font-size: 0.8rem;
  font-family: Cambria, Georgia, serif;
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.intro-bottom {
  margin-top: 4rem;
  padding: 2.5rem;
  background: rgba(0,255,156,0.03);
  border: 1px solid rgba(0,255,156,0.1);
  border-radius: 24px;
  text-align: center;
}
.intro-bottom p {
  color: #888;
  font-family: Cambria, Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* ── WHY PENTESTING SECTION ── */
.why-pentest-section {
  width: 90%; max-width: 1150px;
  margin: 4rem auto 5rem;
}
.why-header { text-align: center; margin-bottom: 3.5rem; }
.why-header h2 { font-size: 2.2rem; color: white; margin-bottom: 0.8rem; }
.why-header p { color: #888; font-family: Cambria, Georgia, serif; font-size: 0.95rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: #050505;
  border: 1px solid #151515;
  border-radius: 20px;
  padding: 2.5rem 1.8rem;
  text-align: center;
  transition: 0.4s;
}
.why-card:hover {
  border-color: rgba(0,255,156,0.25);
  background: #080808;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.why-icon {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.why-card h3 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1.2rem;
}
.why-card p {
  color: #777;
  font-family: Cambria, Georgia, serif;
  font-size: 0.88rem;
  line-height: 1.6;
}
.why-card strong { color: #00ff9c; }

@media (max-width: 1000px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ── SERVICES ROWS ── */
.svc-section {
  width: 88%; max-width: 1050px;
  margin: 3rem auto 4rem;
}
.svc-header { text-align: center; margin-bottom: 2.5rem; }
.svc-header h2 { font-size: 2rem; color: white; margin-bottom: 0.5rem; }
.svc-header p  { color: #888; font-family: Cambria, Georgia, serif; font-size: 0.95rem; }

.svc-rows { display: flex; flex-direction: column; gap: 1px; }

.svc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2rem;
  border: 1px solid #111;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: #050505;
  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  gap: 2rem;
}
.svc-row:hover {
  border-color: rgba(0,255,156,0.3);
  transform: translateX(6px);
}
.svc-row-left {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  flex: 1;
}
.svc-num {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(180deg, #00ff9c, rgba(0,255,156,0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 44px;
  line-height: 1;
}
.svc-row-left h3 {
  font-size: 1.05rem;
  color: white;
  -webkit-text-fill-color: white;
  margin-bottom: 0.3rem;
}
.svc-row-left p {
  color: #777;
  font-family: Cambria, Georgia, serif;
  font-size: 0.88rem;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  max-width: 260px;
}
.tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid rgba(0,255,156,0.2);
  color: #00ff9c;
  background: rgba(0,255,156,0.04);
  white-space: nowrap;
}

/* ── PRICING ── */
.pricing-section {
  width: 90%; max-width: 1100px;
  margin: 3rem auto 4rem;
}
.pricing-header { text-align: center; margin-bottom: 3rem; }
.pricing-header h2 { font-size: 2rem; color: white; margin-bottom: 0.5rem; }
.pricing-header p  { color: #888; font-family: Cambria, Georgia, serif; font-size: 0.95rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
  max-width: 850px; /* Reduced to keep 2 cards from becoming too wide */
  margin: 0 auto;
}

@keyframes featuredPulse {
  0%, 100% { box-shadow: 0 0 24px rgba(0,255,156,0.25), 0 0 60px rgba(0,255,156,0.08); }
  50%       { box-shadow: 0 0 40px rgba(0,255,156,0.45), 0 0 90px rgba(0,255,156,0.15); }
}

.plan-card {
  background: #050505;
  border: 1px solid #1a1a1a;
  border-radius: 24px;
  padding: 2rem 1.8rem;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background 0.4s ease;
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  border-color: rgba(0,255,156,0.35);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,255,156,0.12), 0 4px 16px rgba(0,0,0,0.6);
  background: #041a0c;
}
.plan-card.featured {
  border-color: rgba(0,255,156,0.45);
  background: #030f07;
  animation: featuredPulse 3s ease-in-out infinite;
}
.plan-card.featured:hover {
  border-color: #00ff9c;
  background: #041a0c;
  transform: translateY(-16px) scale(1.04);
  box-shadow:
    0 0 0 1px rgba(0,255,156,0.6),
    0 20px 60px rgba(0,255,156,0.3),
    0 8px 24px rgba(0,0,0,0.8),
    inset 0 0 40px rgba(0,255,156,0.04);
  animation: none;
  z-index: 2;
}

.plan-card.selected {
  border-color: #00ff9c;
  background: #041a0c;
  transform: translateY(-12px) scale(1.03);
  box-shadow:
    0 0 0 2px rgba(0,255,156,0.7),
    0 20px 60px rgba(0,255,156,0.25),
    0 8px 24px rgba(0,0,0,0.8);
  z-index: 3;
}

.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 99px;
  background: #00ff9c;
  color: black;
  white-space: nowrap;
}

.plan-top { margin-bottom: 1.5rem; }
.plan-name {
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.plan-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.4rem;
}
.plan-original {
  font-size: 1rem;
  color: #444;
  text-decoration: line-through;
}
.plan-price {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(90deg, #00ff9c, lightgreen);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.plan-period {
  font-size: 0.8rem;
  color: #555;
}
.plan-discount {
  font-size: 0.75rem;
  color: #00ff9c;
  background: rgba(0,255,156,0.07);
  border: 1px solid rgba(0,255,156,0.2);
  border-radius: 99px;
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 0.9rem;
}
.plan-desc {
  color: #777;
  font-family: Cambria, Georgia, serif;
  font-size: 0.88rem;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
  flex: 1;
}
.plan-features li {
  font-size: 0.88rem;
  color: #bbb;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: Cambria, Georgia, serif;
  line-height: 1.4;
}
.plan-features li.muted { color: #444; }
.plan-features li.muted span { color: #333; }
.check { color: #00ff9c; font-weight: 700; flex-shrink: 0; }

.plan-btn {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(0,255,156,0.3);
  background: rgba(0,255,156,0.04);
  color: white;
  transition: 0.35s;
  font-family: 'Franklin Gothic Medium', Arial, sans-serif;
  letter-spacing: 0.5px;
}
.plan-btn:hover {
  background: rgba(0,255,156,0.1);
  border-color: rgba(0,255,156,0.6);
}
.featured-btn {
  background: #00ff9c;
  color: black;
  border-color: #00ff9c;
}
.featured-btn:hover {
  background: #00d484;
  box-shadow: 0 0 30px rgba(0,255,156,0.35);
}

/* ── PROCESS ── */
.process-section {
  width: 88%; max-width: 1000px;
  margin: 3rem auto 4rem;
}
.process-header { text-align: center; margin-bottom: 2.5rem; }
.process-header h2 { font-size: 2rem; color: white; margin-bottom: 0.5rem; }
.process-header p  { color: #888; font-family: Cambria, Georgia, serif; font-size: 0.95rem; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.process-card {
  background: #050505;
  border: 1px solid #111;
  border-radius: 18px;
  padding: 1.6rem 1.4rem;
  transition: 0.35s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.process-card:hover {
  border-color: rgba(0,255,156,0.3);
  transform: translateY(-5px);
}
.process-n {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(180deg, #00ff9c, rgba(0,255,156,0.15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
}
.process-card h3 {
  font-size: 0.95rem;
  color: white;
  -webkit-text-fill-color: white;
  margin-bottom: 0.5rem;
}
.process-card p {
  color: #777;
  font-family: Cambria, Georgia, serif;
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

/* ── SEVERITY ── */
.severity-section {
  width: 88%; max-width: 1000px;
  margin: 3rem auto 4rem;
}
.severity-header { text-align: center; margin-bottom: 2rem; }
.severity-header h2 { font-size: 2rem; color: white; margin-bottom: 0.5rem; }
.severity-header p  { color: #888; font-family: Cambria, Georgia, serif; font-size: 0.95rem; }

.severity-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.sev-item {
  background: #050505;
  border: 1px solid #111;
  border-radius: 16px;
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: 0.35s;
}
.sev-item:hover {
  border-color: rgba(0,255,156,0.2);
  transform: translateY(-4px);
}
.sev-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sev-item h4 {
  font-size: 0.9rem;
  color: white;
  -webkit-text-fill-color: white;
  margin-bottom: 0.2rem;
}
.sev-item p {
  color: #666;
  font-family: Cambria, Georgia, serif;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: left;
  margin: 0;
}

/* ── CTA ── */
.cta-section {
  width: 46%; max-width: 580px; min-width: 300px;
  margin: 3rem auto 6rem;
  text-align: center;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(0,255,156,0.18);
  border-radius: 28px;
  background: rgba(0,255,156,0.02);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,255,156,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: 1.7rem;
  color: white;
  -webkit-text-fill-color: white;
  margin-bottom: 0.7rem;
}
.cta-section p {
  color: #888;
  font-family: Cambria, Georgia, serif;
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
  text-align: center;
}
.cta-btn {
  padding: 0.75rem 2.2rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(0,255,156,0.35);
  background: rgba(0,255,156,0.06);
  color: white;
  transition: 0.35s;
  font-family: 'Franklin Gothic Medium', Arial, sans-serif;
  letter-spacing: 0.5px;
}
.cta-btn:hover {
  background: #00ff9c;
  color: black;
  box-shadow: 0 0 30px rgba(0,255,156,0.35);
}

/* ── FOOTER ── */
footer {
  width: 91%;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
footer a { color: #555; text-decoration: none; }
footer a:hover { color: #00ff9c; }

/* ── RESPONSIVE ── */

/* ── FINAL MOBILE OVERRIDES ── */
@media (max-width: 968px) {
    body { overflow-x: hidden !important; width: 100% !important; margin: 0 !important; padding: 0 !important; display: block !important; }
    
    .hero { padding: 100px 1rem 40px !important; text-align: center !important; }
    .hero h1 { font-size: 2.5rem !important; }
    .hero p { width: 95% !important; font-size: 1rem !important; }
    
    .intro-grid, .why-grid, .pricing-grid, .process-grid, .severity-row { 
        grid-template-columns: 1fr !important; 
        width: 100% !important;
        justify-items: center !important;
    }
    
    .svc-row { 
        flex-direction: column !important; 
        text-align: center !important; 
        align-items: center !important; 
        padding: 1.5rem !important; 
        width: 95% !important;
        margin: 0 auto 1rem !important;
    }
    .svc-row-left { flex-direction: column !important; align-items: center !important; text-align: center !important; }
    .svc-row-left p { text-align: center !important; }
    .svc-tags { justify-content: center !important; margin-top: 1rem !important; }
    
    .plan-card { width: 92% !important; max-width: 400px !important; margin: 0 auto !important; }
    .process-card, .sev-item { width: 92% !important; margin: 0 auto !important; text-align: center !important; }
    .sev-item { align-items: center !important; }
    .sev-item p { text-align: center !important; }
    
    .cta-section { width: 90% !important; padding: 2rem 1rem !important; margin: 2rem auto !important; }
    footer { flex-direction: column !important; text-align: center !important; gap: 1.5rem !important; }
}
