/* ==========================================================================
   CRMAmigo — The GrowIT Method™
   Design tokens based on live site reference (navy / gold / orange)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --navy: #336699;
  --navy-deep: #14183a;
  --card-navy: #1b2a5b;
  --gold: #d9a521;
  --orange: #e2661f;
  --tan: #d5e9f8;

  --cream: #f2f2f2;
  --paper: #ffffff;
  --ink: #222222;
  --ink-soft: #55606b;
  --line: rgba(20, 24, 58, 0.12);
  --line-on-dark: rgba(255, 255, 255, 0.16);

  --font-display: 'Urbanist', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 45px rgba(20, 24, 58, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.15; margin: 0; }
p { margin: 0; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section { padding: 96px 0; }
.section--tight { padding: 56px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--navy); color: #fff; box-shadow: 0 12px 30px rgba(51,102,153,0.35); }
.btn--primary:hover { background: var(--navy-deep); }
.btn--gold { background: var(--gold); color: #1b1a12; }
.btn--gold:hover { background: #c4931d; }
.btn--outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--outline:hover { background: rgba(20,24,58,0.04); border-color: var(--ink); }
.btn--dark { background: var(--navy-deep); color: #fff; }
.btn--dark:hover { background: #0c0f28; }

/* ---------- Top bar ---------- */
.top-bar {
  background: linear-gradient(90deg, var(--navy) 0%, #383838 100%);
  color: #fff;
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 600;
}
.top-bar__inner { max-width: 1120px; margin: 0 auto; padding: 8px 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar__links { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar__links a { opacity: 0.85; }
.top-bar__links a:hover { opacity: 1; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1120px;
  margin: 0 auto;
  gap: 24px;
}
.nav__logo img { height: 38px; width: auto; }
.lang-switch { display: flex; align-items: center; gap: 8px; }
.lang-switch a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.lang-switch a[aria-current="page"] { background: var(--navy-deep); border-color: var(--navy-deep); color: #fff; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.nav__links a { color: var(--ink); opacity: 0.8; transition: opacity 0.2s; }
.nav__links a:hover, .nav__links a[aria-current="page"] { opacity: 1; color: var(--navy); }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .top-bar__links { display: none; }
  .nav-toggle {
    display: inline-flex;
    background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 6px;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 16px 24px 24px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { padding: 12px 0; font-family: var(--font-display); font-weight: 600; border-bottom: 1px solid var(--line); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 120%);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}
.hero h1 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 22px; max-width: 780px; margin-left: auto; margin-right: auto; }
.hero h1 span { color: var(--tan); text-decoration: underline; }
.hero p.lead { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 34px; }

/* ---------- Trust / Drowning section ---------- */
.trust { background: var(--paper); }
.trust__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.trust__art { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.trust__art img { width: 100%; }
.trust h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 16px; color: var(--navy-deep); }
.trust__grid p { color: var(--ink-soft); margin-bottom: 14px; font-size: 16px; }
.trust__grid h4 { font-size: 19px; color: var(--navy); margin: 18px 0 12px; }
.trust__grid ul { margin-bottom: 16px; }
.trust__grid li { display: flex; gap: 10px; margin-bottom: 8px; color: var(--ink-soft); }
.trust__grid li::before { content: "✓"; color: var(--gold); font-weight: 700; }
@media (max-width: 860px) { .trust__grid { grid-template-columns: 1fr; } .trust__art { max-width: 340px; margin: 0 auto; } }

/* ---------- What We Do ---------- */
.wwd { background: var(--cream); }
.wwd__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.wwd__intro h2 { font-size: clamp(26px, 3.4vw, 34px); color: var(--navy-deep); margin-bottom: 14px; }
.wwd__intro p { color: var(--ink-soft); }
.wwd__intro ul li { display: flex; gap: 10px; margin-bottom: 8px; color: var(--ink-soft); }
.wwd__intro ul li::before { content: "✓"; color: var(--gold); font-weight: 700; }
.wwd__formula { text-align: center; font-size: clamp(19px, 2.4vw, 24px); color: var(--navy-deep); font-family: var(--font-display); font-weight: 700; margin-bottom: 44px; }
.wwd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wwd-card { padding: 32px 28px; border-radius: var(--radius-md); color: #fff; }
.wwd-card--navy { background: var(--card-navy); }
.wwd-card--gold { background: var(--gold); color: #241c05; }
.wwd-card--orange { background: var(--orange); }
.wwd-card__icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.wwd-card__icon svg { width: 24px; height: 24px; }
.wwd-card h4 { font-size: 19px; margin-bottom: 10px; }
.wwd-card p { font-size: 15px; opacity: 0.92; }
@media (max-width: 860px) { .wwd__intro { grid-template-columns: 1fr; } .wwd-grid { grid-template-columns: 1fr; } }

/* ---------- Find CRM CTA band ---------- */
/* ---------- Leads / Diana block ---------- */
.leads { background: var(--paper); }
.leads__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.leads h2 { font-size: clamp(26px, 3.4vw, 36px); color: var(--navy-deep); margin: 10px 0 16px; }
.leads p { color: var(--ink-soft); margin-bottom: 16px; font-size: 16px; }
.leads__visual {
  aspect-ratio: 1/1;
  max-width: 320px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.leads__visual svg { width: 80%; }
@media (max-width: 860px) { .leads__grid { grid-template-columns: 1fr; } .leads__visual { order: -1; } }

.find-cta { background: var(--navy-deep); color: #fff; text-align: center; }
.find-cta h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 18px; }
.find-cta p { color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.find-cta__ctas { margin-top: 28px; }

/* ---------- Three Ways ---------- */
.ways { background: var(--paper); }
.ways__head h2 { font-size: clamp(26px, 3.4vw, 36px); color: var(--navy-deep); margin-bottom: 12px; }
.ways__head p { color: var(--ink-soft); max-width: 640px; margin-bottom: 44px; }
.ways-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.way-card { background: var(--cream); border-radius: var(--radius-md); padding: 30px; display: flex; flex-direction: column; }
.way-card h4 { font-size: 18px; color: var(--navy-deep); margin-bottom: 12px; }
.way-card p { color: var(--ink-soft); font-size: 15px; margin-bottom: 14px; }
.way-card ul { margin-bottom: 20px; flex-grow: 1; }
.way-card li { display: flex; gap: 8px; margin-bottom: 8px; color: var(--ink-soft); font-size: 14.5px; }
.way-card li::before { content: "•"; color: var(--navy); font-weight: 700; }
.way-card .btn { align-self: flex-start; font-size: 14px; padding: 12px 22px; }
@media (max-width: 900px) { .ways-grid { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact { background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 28px; }
.contact-item__icon { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; font-size: 16px; }
.contact-item h4 { font-family: var(--font-display); font-size: 15px; color: var(--navy-deep); margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--ink-soft); font-size: 15px; }
.contact__text { text-align: center; }
.contact__text h2 { font-size: clamp(24px, 3vw, 32px); color: var(--navy-deep); margin-bottom: 16px; }
.contact__text p { color: var(--ink-soft); margin-bottom: 10px; }
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }


/* ---------- Footer ---------- */
.site-footer { background: #14183a; color: rgba(255,255,255,0.7); padding: 40px 0; font-size: 13.5px; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff; }
.footer__logo img { height: 30px; width: auto; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Trademark symbol fix ---------- */
/* Some heading fonts at bold/black weights don't include the ™ glyph,
   causing the browser to substitute a mismatched fallback font/size.
   Forcing it into the body font at a smaller, superscript size keeps it consistent everywhere. */
.tm { font-family: var(--font-body); font-size: 0.55em; font-weight: 700; vertical-align: super; }
