:root {
  --aa-blue: #0f6efb;
  --aa-green: #16a34a;
  --aa-black: #111827;
}

.logo-img {
  height: 56px;     /* adjust size */
  width: auto;
}

/* Global */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--aa-black);
  background-color: #f3f4f6;
}

/* Logo dot */
.logo-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 0.4rem;
  background: radial-gradient(circle at 20% 20%, #ffffff, var(--aa-blue));
}

/* Buttons */
.btn-aa-primary {
  background: linear-gradient(135deg, var(--aa-blue), var(--aa-green));
  border: none;
  color: #ffffff;
}

.btn-aa-primary:hover {
  filter: brightness(1.05);
}

.btn-aa-outline {
  border: 1px solid rgba(15, 110, 251, 0.4);
  color: var(--aa-blue);
  background-color: transparent;
}

.btn-aa-outline:hover {
  background-color: rgba(15, 110, 251, 0.08);
}

/* Hero */
.hero-section {
  padding: 4rem 0 3rem;
  background: linear-gradient(
      rgba(17, 24, 39, 0.55),
      rgba(17, 24, 39, 0.55)
    ),
    url("assets/hero-pic.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(22, 163, 74, 0.08);
  color: var(--aa-green);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--aa-green);
}

.hero-title {
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(135deg, var(--aa-blue), var(--aa-green));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 34rem;
  color: white;
}

/* Hero card */
.hero-card {
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.hero-stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.hero-stat-row span:last-child {
  color: var(--aa-blue);
  font-weight: 600;
}

/* Pills */
.pill {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background-color: #f3f4f6;
  color: #6b7280;
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
}

/* Sections */
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--aa-blue);
}

.section-title {
  color: var(--aa-black);
}

.section-subtitle {
  color: #6b7280;
}

/* Cards */


.card-aa {
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
}

.clickable-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.clickable-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Product images */

.product-img {
    height: 220px;             
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}


/* Testimonials background */
.testimonials {
  background: linear-gradient(
    135deg,
    rgba(15, 110, 251, 0.06),
    rgba(22, 163, 74, 0.06)
  );
}

/* Footer */
footer {
  font-size: 0.85rem;
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--aa-blue);
}
