:root {
  --black: #070707;
  --soft: #f7f7f7;
  --soft-2: #f1f3f3;
  --gray: #5d5d62;
  --gray-dark: #414146;
  --teal: #84DBD6;
  --yellow: #FFEE8E;
  --pink: #F3A4AF;
  --red-orange: #FA3008;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-dark);
  background: var(--white);
}

a { color: inherit; }
.navbar { backdrop-filter: blur(12px); }
.nav-logo { width: 375px; max-width: 100vw; height: auto; }
.nav-link { font-weight: 800; color: var(--gray); }
.nav-link:hover { color: var(--black); }
.btn-dark { background: var(--gray-dark); border-color: var(--gray-dark); font-weight: 800; }
.btn-outline-dark { border-color: var(--gray-dark); color: var(--gray-dark); font-weight: 800; }
.btn-outline-dark:hover { background: var(--gray-dark); border-color: var(--gray-dark); }

.hero-section {
  min-height: 100vh;
  padding: 150px 0 90px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 12% 22%, rgba(132, 219, 214, .38), transparent 30%),
    radial-gradient(circle at 76% 18%, rgba(255, 238, 142, .42), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(243, 164, 175, .32), transparent 28%),
    #fff;
  overflow: hidden;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 900;
  color: var(--red-orange);
  margin-bottom: 1rem;
}

.display-title {
  color: var(--gray-dark);
  font-size: clamp(3.15rem, 8vw, 7.5rem);
  line-height: .88;
  letter-spacing: -.07em;
  font-weight: 900;
  max-width: 930px;
}

.title-accent {
  background: linear-gradient(110deg, var(--teal), var(--yellow) 30%, var(--pink) 68%, var(--red-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--gray);
  line-height: 1.5;
  max-width: 720px;
  margin-top: 1.5rem;
}

.btn-gradient {
  border: 0;
  color: white;
  font-weight: 900;
  background: linear-gradient(110deg, var(--teal), var(--pink) 54%, var(--red-orange));
  box-shadow: 0 18px 36px rgba(250, 48, 8, .18);
}
.btn-gradient:hover { color: white; transform: translateY(-2px); }

.hero-card {
  background-image: url('images/graybackground.jpg');
  border-radius: 42px;
  background: rgba(255,255,255,.88);
  padding: 32px;
  box-shadow: 0 30px 90px rgba(0,0,0,.10);
  border: 1px solid rgba(65,65,70,.08);
}
.hero-logo { width: 100%; height: 100%; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  margin-top: 0px;
}
.stat-grid div {
  background: var(--soft);
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(65,65,70,.06);
}
.stat-grid span { font-weight: 900; color: var(--red-orange); }
.stat-grid p { margin: 4px 0 0; font-weight: 800; color: var(--gray-dark); }

.intro-section { padding: 110px 0; }
.intro-section h2, .social-section h2, .cta-section h2 {
  color: var(--gray-dark);
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 900;
}
.intro-section p {
  max-width: 800px;
  margin: 24px auto 0;
  color: var(--gray);
  font-size: 1.25rem;
  line-height: 1.55;
}

.split-section { padding: 90px 0; }
.bg-soft { background: var(--soft-2); }
.feature-panel {
  border-radius: 38px;
  padding: clamp(32px, 5vw, 64px);
  background: #fff;
  border: 1px solid rgba(65,65,70,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.055);
}
.feature-panel h2, .feature-panel h3 {
  color: var(--gray-dark);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .98;
}
.feature-panel h2 { font-size: clamp(2.4rem, 5vw, 5.5rem); }
.feature-panel h3 { font-size: clamp(2rem, 4vw, 3.4rem); }
.feature-panel p, .clean-list {
  color: var(--gray);
  font-size: 1.15rem;
  line-height: 1.55;
  margin-top: 22px;
}
.gradient-panel, .pink-panel { color: #fff; }
.gradient-panel {
  background:
    linear-gradient(135deg, rgba(65,65,70,.94), rgba(132,219,214,.95) 46%, rgba(250,48,8,.92));
}
.pink-panel {
  background:
    linear-gradient(135deg, rgba(65,65,70,.96), rgba(243,164,175,.95) 58%, rgba(255,238,142,.95));
}
.gradient-panel h2, .pink-panel h2 { color: white; }
.gradient-panel p, .pink-panel p { color: rgba(255,255,255,.9); }
.clean-list { list-style: none; padding: 0; }
.clean-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(65,65,70,.10);
  font-weight: 800;
  color: var(--gray-dark);
}
.clean-list li:before {
  content: '→';
  margin-right: 12px;
  color: var(--red-orange);
}

.social-section { padding: 110px 0; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.social-links a {
  color: #77777c;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid #d9d9dc;
  border-radius: 999px;
  padding: 14px 24px;
  background: #fafafa;
}
.social-links a:hover {
  color: var(--gray-dark);
  border-color: var(--gray-dark);
  transform: translateY(-2px);
}

.cta-section { padding: 40px 0 100px; }
.cta-card {
  border-radius: 44px;
  padding: clamp(36px, 7vw, 90px);
  background:
    radial-gradient(circle at 10% 18%, rgba(255,238,142,.85), transparent 28%),
    linear-gradient(120deg, var(--teal), var(--pink) 55%, var(--red-orange));
  color: #fff;
}
.cta-card h2 { color: white; }
.cta-card p {
  max-width: 760px;
  margin: 24px auto 34px;
  font-size: 1.2rem;
  color: rgba(255,255,255,.92);
}

.footer { color: #77777c; border-top: 1px solid #eee; }
.footer a { color: #77777c; text-decoration: none; }
.footer a:hover { color: var(--gray-dark); }

.contact-page {
  min-height: 100vh;
  padding: 150px 0 80px;
  background:
    radial-gradient(circle at 15% 18%, rgba(132, 219, 214, .35), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(255, 238, 142, .38), transparent 27%),
    radial-gradient(circle at 80% 86%, rgba(243, 164, 175, .30), transparent 30%),
    var(--soft);
}
.contact-card {
  background: #fff;
  border-radius: 42px;
  padding: clamp(30px, 6vw, 70px);
  box-shadow: 0 30px 90px rgba(0,0,0,.10);
  border: 1px solid rgba(65,65,70,.08);
}
.contact-card h1 {
  color: var(--gray-dark);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: .94;
  letter-spacing: -.06em;
  font-weight: 900;
}
.form-control, .form-select {
  border-radius: 16px;
  padding: 14px 16px;
  border-color: #ddd;
}
.form-control:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 .25rem rgba(132,219,214,.22);
}
.form-label { font-weight: 800; color: var(--gray-dark); }

@media (max-width: 767px) {
  .nav-logo { width: 185px; }
  .hero-section { padding-top: 125px; }
  .stat-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   Social Media Icons
========================================== */

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.social-icons a {
    color: #6B6B6B; /* Brandology Gray */
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #84DBD6; /* Brandology Teal */
    transform: translateY(-3px);
}

/* Optional - larger icons on desktop */
@media (min-width: 768px) {
    .social-icons a {
        font-size: 2.2rem;
    }
}
.social-icons a {
    color: #666666;
    font-size: 2rem;
    transition: all .3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #FA3008;
    transform: translateY(-3px);
}
.social-icons a:hover {
    color: #FA3008;
}
.social-icons a:hover {
    color: #84DBD6;
}
