/* 
  AlreadyAgents - Billion-Dollar Aesthetic Stylesheet
  Adheres to Blueprint v2 Guidelines
*/

:root {
  --cobalt-blue: #0047AB;
  --pure-white: #FFFFFF;
  --light-grey: #F8F9FA;
  --text-dark: #1A1A1A;
  --text-muted: #4A4A4A;
}

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

body {
  font-family: 'Inter', 'Helvetica', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--pure-white);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Layout Utilities */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background-color: var(--light-grey);
}

/* Header */
header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -1px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.2s, opacity 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--cobalt-blue);
  color: white;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 8rem 0 5rem;
}

.hero h1 {
  font-size: 4rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* Trust Signals */
.trust-signals {
  padding: 3rem 0;
  text-align: center;
  opacity: 0.7;
}

.trust-icons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* ROI Section */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.roi-card {
  background: white;
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 8px;
}

/* Solutions / Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 8px;
  border: 2px solid #eee;
  text-align: center;
  transition: border-color 0.3s;
}

.pricing-card:hover {
  border-color: var(--cobalt-blue);
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1rem 0;
}

/* Guarantee Section */
.guarantee {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
footer {
  padding: 4rem 0;
  border-top: 1px solid #eee;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 3rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 2rem;
  cursor: pointer;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .trust-icons {
    flex-direction: column;
    gap: 1rem;
  }
}
