/* Global Link Agency - Landing Page Styles */

.landing-section {
  margin-top: 40px;
  margin-bottom: 0;
  border-radius: 16px;
  overflow: hidden;
}
.landing-section:first-of-type { margin-top: 12px; }

/* Hero */
.landing-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
  padding: 48px 32px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.landing-hero-inner { position: relative; z-index: 1; }
.landing-hero h1 { font-size: clamp(28px, 5vw, 42px); line-height: 1.2; margin: 0; font-weight: 700; }
.landing-hero-subtitle { font-size: 18px; color: #e2e8f0; margin: 16px auto 0; max-width: 560px; }
.landing-hero-badges { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin: 28px 0; }
.landing-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
}
.landing-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.landing-hero-cta .landing-btn-primary {
  background: #fff; color: #0f172a;
  padding: 16px 32px; font-size: 18px; font-weight: 600;
  border-radius: 12px; text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.landing-hero-cta .landing-btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.landing-hero-cta .landing-btn-secondary {
  background: rgba(255,255,255,0.15); color: #fff;
  padding: 16px 32px; font-size: 18px; font-weight: 600;
  border-radius: 12px; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: background 0.2s, transform 0.2s;
}
.landing-hero-cta .landing-btn-secondary:hover {
  background: rgba(255,255,255,0.25); transform: translateY(-2px);
}
.landing-trust { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin-top: 32px; opacity: 0.9; }
.landing-trust span { font-size: 14px; color: #e2e8f0; }

/* Benefits / Why */
.landing-why {
  padding: 40px; background: #f8fafc;
  border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.landing-why h2 { font-size: 28px; color: #0f172a; margin: 0 0 8px 0; }
.landing-why-subtitle { color: #64748b; font-size: 17px; margin-bottom: 32px; }
.landing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.landing-card {
  padding: 24px; background: #fff; border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-left: 4px solid #3b82f6;
}
.landing-card.landing-card-green { border-left-color: #10b981; }
.landing-card h3 { font-size: 18px; color: #0f172a; margin: 0 0 16px 0; font-weight: 600; }
.landing-card ul { margin: 0; padding-left: 20px; color: #475569; line-height: 1.7; }
.landing-card li { margin-bottom: 8px; }

/* Role notice */
.landing-role-notice {
  margin-top: 24px; padding: 20px;
  background: #fff7ed; border: 2px solid #ea580c;
  border-radius: 12px;
}
.landing-role-notice h4 { font-size: 17px; color: #9a3412; margin: 0 0 12px 0; font-weight: 600; }
.landing-role-notice p { margin: 0 0 8px 0; color: #7c2d12; line-height: 1.6; }
.landing-role-notice p:last-child { margin-bottom: 0; }

/* Process */
.landing-process { padding: 40px; background: #fff; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.landing-process h2 { font-size: 28px; color: #0f172a; margin: 0 0 8px 0; }
.landing-process-subtitle { color: #64748b; font-size: 17px; margin-bottom: 32px; }
.landing-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.landing-step {
  padding: 24px; border-radius: 12px; position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.landing-step-num {
  position: absolute; top: -10px; left: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
}
.landing-step:nth-child(1) { background: linear-gradient(135deg, #fef3c7, #fde68a); } .landing-step:nth-child(1) .landing-step-num { background: #d97706; }
.landing-step:nth-child(2) { background: linear-gradient(135deg, #dbeafe, #93c5fd); } .landing-step:nth-child(2) .landing-step-num { background: #2563eb; }
.landing-step:nth-child(3) { background: linear-gradient(135deg, #dcfce7, #86efac); } .landing-step:nth-child(3) .landing-step-num { background: #16a34a; }
.landing-step:nth-child(4) { background: linear-gradient(135deg, #fee2e2, #fecaca); } .landing-step:nth-child(4) .landing-step-num { background: #dc2626; }
.landing-step:nth-child(5) { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); } .landing-step:nth-child(5) .landing-step-num { background: #9333ea; }
.landing-step:nth-child(6) { background: linear-gradient(135deg, #d1fae5, #6ee7b7); } .landing-step:nth-child(6) .landing-step-num { background: #059669; }
.landing-step h3 { font-size: 16px; margin: 16px 0 8px 0; font-weight: 600; }
.landing-step:nth-child(1) h3 { color: #92400e; }
.landing-step:nth-child(2) h3 { color: #1e40af; }
.landing-step:nth-child(3) h3 { color: #15803d; }
.landing-step:nth-child(4) h3 { color: #b91c1c; }
.landing-step:nth-child(5) h3 { color: #7c3aed; }
.landing-step:nth-child(6) h3 { color: #047857; }
.landing-step p { margin: 0; font-size: 14px; line-height: 1.5; opacity: 0.9; }

/* Investment */
.landing-investment {
  padding: 40px; background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  color: #fff; position: relative; overflow: hidden;
}
.landing-investment::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
  background-size: 24px 24px;
}
.landing-investment-inner { position: relative; z-index: 1; text-align: center; }
.landing-investment h2 { font-size: 32px; margin: 0 0 8px 0; }
.landing-investment-subtitle { color: #94a3b8; font-size: 18px; margin-bottom: 12px; }
.landing-investment-clarify {
  color: #fbbf24; font-size: 16px; font-weight: 600; margin-bottom: 24px;
  padding: 12px 20px; background: rgba(251,191,36,0.15); border-radius: 8px;
  display: inline-block;
}
.landing-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 28px; }
.landing-price-card {
  padding: 28px; border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  text-align: left; position: relative;
}
.landing-price-header {
  font-size: 14px; font-weight: 600; margin: 0 0 4px 0;
  opacity: 0.95; text-transform: uppercase; letter-spacing: 0.5px;
}
.landing-price-card.consultancy {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.landing-price-card.university {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
}
.landing-price-card h3 { font-size: 22px; margin: 0 0 4px 0; font-weight: 700; }
.landing-price-card-label { font-size: 14px; opacity: 0.9; margin-bottom: 16px; }
.landing-price-card ul { margin: 0; padding-left: 20px; line-height: 1.6; }
.landing-price-card li { margin-bottom: 6px; }
.landing-total-box {
  background: rgba(255,255,255,0.1); padding: 20px;
  border-radius: 12px; margin-bottom: 28px; backdrop-filter: blur(8px);
}
.landing-total-box h3 { font-size: 20px; margin: 0 0 12px 0; }
.landing-total-box p { margin: 0; color: #cbd5e1; line-height: 1.6; font-size: 15px; }
.landing-investment .landing-btn-primary {
  background: #f59e0b; color: #fff;
  padding: 18px 36px; font-size: 18px; font-weight: 700;
  border-radius: 12px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.landing-investment .landing-btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 6px 24px rgba(245,158,11,0.5);
}
.landing-guarantees { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 24px; opacity: 0.9; }
.landing-guarantees span { font-size: 14px; color: #94a3b8; }

/* Paid benefits */
.landing-paid {
  padding: 40px; background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.landing-paid h2 { font-size: 28px; color: #92400e; margin: 0 0 8px 0; }
.landing-paid-subtitle { color: #b45309; font-size: 17px; margin-bottom: 28px; }
.landing-paid .landing-card { border-left-color: #f59e0b; }
.landing-paid .landing-card:nth-child(2) { border-left-color: #10b981; }
.landing-paid .landing-card:nth-child(3) { border-left-color: #3b82f6; }
.landing-paid .landing-card h3 { color: #92400e; }
.landing-paid .landing-card li { color: #b45309; }
.landing-value-box {
  margin-top: 24px; padding: 20px; background: rgba(255,255,255,0.9);
  border-radius: 12px; text-align: center;
}
.landing-value-box h3 { color: #92400e; font-size: 18px; margin: 0 0 8px 0; }
.landing-value-box p { margin: 0; color: #b45309; line-height: 1.5; }

/* OPT/CPT */
.landing-optcpt {
  padding: 40px; background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.landing-optcpt h2 { font-size: 28px; color: #0c4a6e; margin: 0 0 8px 0; }
.landing-optcpt-subtitle { color: #0369a1; font-size: 17px; margin-bottom: 28px; }
.landing-optcpt .landing-card { border-left-color: #0ea5e9; }
.landing-optcpt .landing-card:nth-child(2) { border-left-color: #10b981; }
.landing-optcpt .landing-card h3 { color: #0c4a6e; }
.landing-optcpt .landing-card p { color: #475569; margin: 0; line-height: 1.6; }
.landing-optcpt a.landing-btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff; padding: 14px 28px; border-radius: 12px;
  text-decoration: none; font-weight: 600; font-size: 15px;
  box-shadow: 0 4px 14px rgba(14,165,233,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.landing-optcpt a.landing-btn-link:hover {
  transform: translateY(-2px); box-shadow: 0 6px 18px rgba(14,165,233,0.4);
}

/* Final CTA */
.landing-final {
  padding: 48px 40px;
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #a78bfa 100%);
  border-radius: 16px; box-shadow: 0 8px 32px rgba(124,58,237,0.3);
  text-align: center; color: #fff; position: relative; overflow: hidden;
}
.landing-final::before {
  content: ''; position: absolute; inset: 0; opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4l4 8 8 2-5 7 1 8-8-4-8 4 1-8-5-7 8-2 4-8z' fill='%23fff' fill-opacity='0.5'/%3E%3C/svg%3E");
}
.landing-final-inner { position: relative; z-index: 1; }
.landing-final h2 { font-size: 32px; margin: 0 0 16px 0; }
.landing-final-subtitle { font-size: 18px; color: #e9d5ff; max-width: 520px; margin: 0 auto 32px; line-height: 1.5; }
.landing-final-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.landing-final .landing-btn-primary {
  background: #fff; color: #5b21b6;
  padding: 18px 36px; font-size: 18px; font-weight: 700;
  border-radius: 12px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.landing-final .landing-btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.landing-final .landing-btn-secondary {
  background: rgba(255,255,255,0.2); color: #fff;
  padding: 18px 36px; font-size: 18px; font-weight: 700;
  border-radius: 12px; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.2s;
}
.landing-final .landing-btn-secondary:hover {
  background: rgba(255,255,255,0.3); transform: translateY(-2px);
}
.landing-final-trust { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; opacity: 0.95; }
.landing-final-trust span { font-size: 15px; font-weight: 500; color: #e9d5ff; }

/* Contact */
.landing-contact {
  padding: 40px; background: #f8fafc;
  border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
}
.landing-contact h2 { font-size: 28px; color: #0f172a; margin: 0 0 12px 0; }
.landing-contact p { color: #64748b; font-size: 17px; margin-bottom: 24px; }
.landing-contact a.landing-btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff; padding: 16px 32px; border-radius: 12px;
  text-decoration: none; font-weight: 600; font-size: 16px;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.landing-contact a.landing-btn-whatsapp:hover {
  transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37,211,102,0.4);
}

/* Card wrapper for sections */
.landing-card-wrap { background: #fff; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); overflow: hidden; }
