/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  background: #f8f9ff;
  color: #1a1a2e;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: white;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  border-bottom: 1px solid #e2e8f0;
}
.nav-content {
  display: flex; align-items: center; justify-content: space-between;
}
.logo-img { height: 50px; }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  color: #4a5568; font-weight: 500; font-size: 1.05rem;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px; background: #5c5cff; transition: width 0.3s;
}
.nav-links a:hover { color: #5c5cff; }
.nav-links a:hover::after { width: 100%; }
.nav-btn {
  background: linear-gradient(135deg, #5c5cff, #3b82f6);
  color: white; padding: 0.75rem 1.8rem;
  border-radius: 50px; font-weight: 600; font-size: 1rem;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(92, 92, 255, 0.3);
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(92, 92, 255, 0.5); }

/* === HERO === */
.hero {
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #e6eaff 100%);
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center;
}
.hero-left h1 {
  font-size: clamp(3.2rem, 8vw, 5.5rem); font-weight: 900;
  line-height: 1.1; margin-bottom: 1rem;
}
.gradient-text {
  background: linear-gradient(90deg, #5c5cff, #3b82f6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-left p {
  font-size: 1.3rem; margin-bottom: 2rem; color: #4a5568;
}
.btn-primary {
  background: linear-gradient(135deg, #5c5cff, #3b82f6);
  color: white; padding: 1rem 2.5rem;
  border-radius: 50px; font-weight: 600; display: inline-block;
  box-shadow: 0 8px 25px rgba(92, 92, 255, 0.3);
  transition: all 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(92, 92, 255, 0.5); }
.hero-trust {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: #4a5568;
}
.hero-trust strong {
  color: #1a1a2e;
  font-weight: 700;
}
.hero-cert {
  position: relative;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.hero-cert img {
  filter: brightness(1.05) contrast(1.1);
}
.hero-logo {
  margin-top: -8rem; margin-left: 6rem;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

/* === PROOF — FULL CERTIFICATES, NO BORDERS === */
.proof {
  padding: 6rem 0;
  background: #ffffff;
}
.section-title {
  font-size: 3rem; font-weight: 900; text-align: center; margin-bottom: 1rem;
  background: linear-gradient(90deg, #5c5cff, #3b82f6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.proof-subtitle {
  text-align: center; margin-bottom: 2.5rem; color: #718096; font-size: 1.1rem;
}
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.cert-card {
  position: relative;
  overflow: visible;
  transition: transform 0.4s ease;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}
.cert-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(1.05) contrast(1.1);
  border-radius: 16px;
  transition: transform 0.4s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.cert-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle at 30% 30%, rgba(92, 92, 255, 0.12), transparent 70%);
  pointer-events: none;
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.cert-card:hover .cert-glow {
  opacity: 1;
}
.cert-card:hover img {
  transform: scale(1.06);
}
.cert-card:hover {
  transform: translateY(-6px);
}

/* === ABOUT === */
.about {
  padding: 7rem 0;
  background: #f8f9ff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h3 {
  font-size: 2.6rem;
  margin-bottom: 0.4rem;
  color: #5c5cff;
  font-weight: 800;
}
.about-text h4 {
  font-size: 1.7rem;
  color: #1a1a2e;
  margin-bottom: 1.6rem;
  font-weight: 700;
}
.about-text p {
  margin-bottom: 1.3rem;
  color: #2d3748;
  font-size: 1.05rem;
  line-height: 1.7;
}
.about-text p strong {
  color: #1a1a2e;
}
.about-cta {
  font-weight: 700;
  font-size: 1.15rem;
  color: #5c5cff !important;
  margin: 1.8rem 0 2rem;
}
.about-img img {
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
  border-radius: 20px;
}

/* === SOCIAL ICONS === */
.social-icons {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.social-link {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #5c5cff;
  box-shadow: 0 6px 20px rgba(92, 92, 255, 0.15);
  transition: all 0.3s ease;
}
.social-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(92, 92, 255, 0.25);
  background: #5c5cff;
  color: white !important;
}
.social-link i {
  pointer-events: none;
}
.social-link[aria-label*="C|M Capital"] {
  color: #ff0000;
}
.social-link[aria-label*="Steve Cutmore"] {
  color: #ff3333;
}
.social-link[aria-label*="C|M Capital"]:hover,
.social-link[aria-label*="Steve Cutmore"]:hover {
  background: #ff0000;
  color: white;
}

/* === SERVICES === */
.services {
  padding: 7rem 0 8rem;
  background: #ffffff;
  text-align: center;
}
.services .section-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #5c5cff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.8rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.service-card {
  background: white;
  padding: 2.8rem 2.2rem;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.07);
  transition: all 0.4s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(92, 92, 255, 0.18);
  border-color: #5c5cff;
}

/* === BIGGER ICONS === */
.card-icon-circle {
  width: 120px;
  height: 120px;
  background: #f8f9ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  box-shadow: 0 8px 25px rgba(92, 92, 255, 0.18);
  border: 3px solid #5c5cff;
}
.card-icon-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}

.service-card h3 {
  font-size: 1.75rem;
  margin: 0 0 1.4rem;
  color: #1a1a2e;
  font-weight: 700;
}
.service-list {
  list-style: none;
  text-align: left;
  margin: 1.6rem 0;
  padding: 0;
  flex-grow: 1;
}
.service-list li {
  font-size: 0.98rem;
  color: #4a5568;
  margin-bottom: 0.9rem;
  padding-left: 2.2rem;
  position: relative;
  line-height: 1.55;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235c5cff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
.btn-card {
  background: linear-gradient(135deg, #5c5cff, #3b82f6);
  color: white;
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  margin: 1.8rem auto 0;
  transition: all 0.3s;
  font-size: 1.02rem;
  min-width: 200px;
}
.btn-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(92, 92, 255, 0.4);
}
.price-box {
  margin-top: 1.4rem;
  text-align: center;
}
.price-sub {
  font-size: 0.95rem;
  color: #718096;
  font-weight: 500;
}
.lifetime-badge {
  display: block;
  margin-top: 0.8rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.badge {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* === CONTACT === */
.contact {
  padding: 6rem 0; background: #f8f9ff;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.contact-form {
  background: white; padding: 2.5rem;
  border-radius: 16px; box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
}
.contact-form input, .contact-form textarea {
  width: 100%; padding: 1rem; background: #f8f9ff;
  border: 1px solid #cbd5e0; border-radius: 8px;
  color: #1a1a2e; margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: #718096;
}
.btn-submit {
  width: 100%; background: linear-gradient(135deg, #5c5cff, #3b82f6);
  color: white; padding: 1rem; border: none; border-radius: 50px;
  font-weight: 600; cursor: pointer; transition: all 0.3s;
  font-size: 1rem;
}
.btn-submit:hover { 
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  transform: translateY(-2px);
}
.form-success {
  background: #10b981;
  color: white;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
  animation: fadeIn 0.5s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === FOOTER === */
footer {
  background: #1a1a2e; color: #cbd5e1; text-align: center;
  padding: 2.5rem 1rem; font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.footer-left p { margin: 0.4rem 0; }
.mission {
  font-size: 0.85rem;
  color: #94a3b8;
  font-style: italic;
}
.footer-right {
  text-align: right;
}
.trust-seal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  justify-content: flex-end;
}
.trust-seal svg {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.trust-seal span {
  font-size: 0.8rem;
  color: #94a3b8;
}
.footer-links {
  justify-content: flex-end;
}
.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: white;
}

/* === MOBILE === */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .services-grid, .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-cert, .hero-logo { transform: none; margin: 1rem 0; }
  .certificates-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; gap: 2.2rem; padding: 0 1rem; }
  .service-card { padding: 2.4rem 2rem; }
  .about-grid { gap: 2.5rem; }
  .about-text h3 { font-size: 2.2rem; }
  .about-text h4 { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-right { text-align: center; }
  .trust-seal, .footer-links { justify-content: center; }
}
@media (min-width: 1200px) {
  .certificates-grid { grid-template-columns: repeat(4, 1fr); }
}
