/* ============================================
   PURE CAPITAL — QUALIFIER CLONE LAYOUT
   ============================================ */

:root {
  --white: #ffffff;
  --off-white: #f8fafc;
  --bg-light: #f1f5f9;
  
  --navy: #0f172a;
  --navy-mid: #1e293b;

  --blue-600: #1e40af; 
  --blue-700: #1e3a8a;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-bright: #3b82f6;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  --gradient-blue: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  --gradient-glow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.15);

  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --font: 'Inter', -apple-system, sans-serif;
  --font-display: 'Inter', sans-serif; /* Qualifier uses geometric sans-serif */
  
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 700;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: var(--gradient-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(59, 130, 246, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* Layout Containers */
.header-container, .hero-container, .stats-container, .section-container, .footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 16px 0;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 48px; border-radius: 8px; }
.main-nav ul {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}
.main-nav a:hover {
  color: var(--blue-bright);
}

/* Hero Section */
.hero {
  padding: 80px 0 120px;
  background: linear-gradient(to bottom right, var(--off-white), #ffffff);
  position: relative;
  overflow: hidden;
}
/* Abstract background shape */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 100%;
  background: radial-gradient(circle, var(--blue-50) 0%, transparent 70%);
  z-index: 0;
}
.hero-container {
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}
.hero-content {
  flex: 1;
}
.eyebrow {
  color: var(--blue-bright);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-content p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 90%;
}
.trust-marks {
  display: flex;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
}
.trust-item .check {
  color: #10b981;
  font-weight: 800;
}

.hero-form-wrapper {
  width: 480px;
  flex-shrink: 0;
}
.form-card {
  background: var(--navy);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-card h2 {
  color: var(--blue-bright);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
}
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}
.form-card input,
.form-card select {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.2);
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  outline: none;
}
.form-card select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230f172a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}
.form-card input::placeholder {
  color: rgba(15, 23, 42, 0.4);
}
@media (max-width: 600px) {
  .form-row { flex-direction: column; gap: 24px; }
}
.btn-submit {
  width: 100%;
  padding: 20px;
  font-size: 18px;
  justify-content: space-between;
}

/* Stats Bar */
.stats-bar {
  background: var(--blue-50);
  padding: 64px 0;
}
.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}
.stat-item h3 {
  font-size: clamp(48px, 4vw, 64px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item p {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Process Section */
.process-section {
  padding: 120px 0;
}
.process-cards {
  display: flex;
  gap: 32px;
}
.process-card {
  flex: 1;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 32px;
}
.process-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.process-card p {
  font-size: 16px;
  line-height: 1.6;
}

/* Card Styles matching Qualifier logic but Pure Colors */
.style-1 {
  background: var(--gradient-blue);
  color: var(--white);
}
.style-1 .card-icon { background: var(--white); color: var(--blue-bright); }
.style-1 p { color: rgba(255,255,255,0.9); }

.style-2 {
  background: var(--blue-50);
  color: var(--navy);
}
.style-2 .card-icon { background: var(--navy); color: var(--white); }

.style-3 {
  background: var(--navy);
  color: var(--white);
}
.style-3 .card-icon { background: var(--blue-bright); color: var(--white); }
.style-3 p { color: rgba(255,255,255,0.7); }

/* Solutions Grid */
.solutions-section {
  padding: 80px 0 120px;
  background: var(--off-white);
}
.section-header {
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.underline {
  height: 4px;
  width: 80px;
  background: var(--gradient-blue);
  border-radius: 2px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.solution-item {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.solution-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.img-wrapper {
  margin-bottom: 24px;
}
.img-placeholder {
  width: 80px;
  height: 80px;
  background: var(--blue-50);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
}
.solution-item h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.solution-item p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
}
.solution-item ul {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 24px;
}
.solution-item li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
}
.solution-item li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-bright);
  font-weight: 800;
}
.solutions-footer {
  text-align: center;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  overflow: hidden;
}
.cta-flex {
  display: flex;
  align-items: center;
  gap: 80px;
}
.cta-content {
  flex: 1;
}
.cta-content h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 24px;
}
.cta-content p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.cta-graphic {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.graphic-letter {
  font-size: 400px;
  font-weight: 900;
  line-height: 0.8;
  color: var(--blue-50);
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-logo {
  height: 48px;
  margin-bottom: 24px;
  background: white;
  padding: 4px;
  border-radius: 6px;
}
.phone-number {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}
.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--blue-bright);
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col a {
  color: rgba(255,255,255,0.7);
}
.footer-col a:hover {
  color: var(--white);
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--blue-bright);
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer-bottom .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0;
}
.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.legal-links {
  display: flex;
  gap: 24px;
}
.legal-links a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.legal-links a:hover {
  color: var(--white);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1200px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .hero-container { flex-direction: column; text-align: center; }
  .hero-form-wrapper { width: 100%; max-width: 480px; }
  .trust-marks { justify-content: center; }
  .process-cards { flex-direction: column; }
  .cta-flex { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .stats-container { flex-direction: column; gap: 40px; }
  .main-nav { display: none; }
  .hero { padding: 40px 0 80px; }
  .hero-content h1 { font-size: 40px; }
  .footer-bottom .footer-container { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 600px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .graphic-letter { font-size: 250px; }
}
