/* =========================================================
   MarketMint Marketing Services — design system
   Type: Fraunces (display) + Manrope (body/UI)
   Palette: light violet gradient + white, mint as the
   name-driven accent (Mint from MarketMint)
   ========================================================= */

:root{
  --white:        #ffffff;
  --wash:         #f5f1fc;   /* pale lavender wash */
  --violet-mid:   #9b7fe8;   /* gradient primary */
  --violet-deep:  #5b3fa6;   /* gradient end / links */
  --violet-ink:   #241b3d;   /* near-black plum for text */
  --mint:         #33c98e;   /* the "Mint" in MarketMint */
  --mint-deep:    #1f9d6c;
  --line:         #e4daf7;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--violet-ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
p{ margin: 0 0 1em; max-width: 62ch; }
.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
section{ padding: 96px 0; }
@media (max-width: 720px){
  section{ padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:focus-visible{
  outline: 2px solid var(--violet-deep);
  outline-offset: 3px;
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-mint{
  background: var(--mint);
  color: #ffffff;
  box-shadow: 0 10px 24px -8px rgba(31,157,108,0.55);
}
.btn-mint:hover{ background: var(--mint-deep); }
.btn-ghost{
  background: transparent;
  border-color: var(--violet-deep);
  color: var(--violet-deep);
}
.btn-ghost:hover{ background: var(--violet-deep); color: #fff; }
.btn-white{
  background: var(--white);
  color: var(--violet-deep);
}
.btn-white:hover{ background: var(--wash); }

/* ---------- header / nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand{
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--violet-ink);
}
.brand em{
  font-style: normal;
  color: var(--mint-deep);
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a{
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--violet-ink);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--mint);
  transition: right 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after{ right: 0; }
.nav-cta{ display: flex; align-items: center; gap: 18px; }
.nav-phone{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  color: var(--violet-ink);
  font-size: 0.95rem;
  white-space: nowrap;
}
.nav-phone svg{ flex-shrink: 0; }

.hamburger{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}
.hamburger span{
  width: 20px;
  height: 2px;
  background: var(--violet-ink);
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px){
  .nav-links{
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open{ max-height: 420px; }
  .nav-links li{ width: 100%; }
  .nav-links a{
    display: block;
    padding: 16px 24px;
    width: 100%;
    border-bottom: 1px solid var(--wash);
  }
  .nav-links a::after{ display: none; }
  .nav-cta .btn-ghost{ display: none; }
  .hamburger{ display: flex; }
}

/* ---------- hero ---------- */
.hero{
  position: relative;
  background: linear-gradient(160deg, var(--wash) 0%, #ece2fb 55%, #ffffff 100%);
  padding: 72px 0 0;
  overflow: hidden;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}
.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--violet-deep);
  margin-bottom: 22px;
}
.hero-badge .dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(51,201,142,0.18);
}
.hero h1{
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  color: var(--violet-ink);
}
.hero h1 .accent{ color: var(--violet-deep); }
.hero p.lede{
  font-size: 1.15rem;
  color: #4a4064;
  max-width: 46ch;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 34px;
}
.hero-stats{
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stats div strong{
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--violet-deep);
}
.hero-stats div span{
  font-size: 0.85rem;
  color: #6a5f87;
}
.hero-media{
  position: relative;
}
.hero-media .frame{
  position: relative;
  clip-path: polygon(6% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
  overflow: hidden;
  box-shadow: 0 40px 70px -30px rgba(91,63,166,0.45);
}
.hero-media img{
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.hero-media .float-card{
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--violet-ink);
  color: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  font-size: 0.9rem;
  box-shadow: 0 20px 40px -16px rgba(36,27,61,0.5);
  max-width: 220px;
}
.hero-media .float-card strong{
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--mint);
}
@media (max-width: 940px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media{ order: -1; }
  .hero-media img{ height: 320px; }
  .hero-media .float-card{ display: none; }
}

/* ---------- trust strip ---------- */
.trust-strip{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.trust-strip .container{
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 22px 24px;
}
.trust-strip p{
  margin: 0;
  font-weight: 700;
  color: #6a5f87;
  font-size: 0.9rem;
}
.trust-strip .marks{
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--violet-deep);
  opacity: 0.85;
}

/* ---------- section headings ---------- */
.section-head{
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head .kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint-deep);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 12px;
}
.section-head h2{
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}
.section-head p{
  color: #4a4064;
  font-size: 1.05rem;
}
.leaf{ flex-shrink: 0; }

/* ---------- service list (home teaser + services page) ---------- */
.service-list{
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.service-row{
  background: var(--white);
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
}
.service-row .mark{
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--mint-deep);
  border: 1.5px solid var(--mint);
  border-radius: 50%;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
}
.service-row h3{ font-size: 1.3rem; margin-bottom: 6px; }
.service-row p{ margin: 0; color: #4a4064; }
.service-row .go{
  color: var(--violet-deep);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.92rem;
}
@media (max-width: 720px){
  .service-row{ grid-template-columns: 1fr; text-align: left; }
  .service-row .go{ display: none; }
}

/* ---------- services page detail ---------- */
.service-detail{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child{ border-bottom: none; }
.service-detail.reverse .copy{ order: 2; }
.service-detail.reverse .visual{ order: 1; }
.service-detail .visual{
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
}
.service-detail .visual img{
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.service-detail .visual .tag{
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(255,255,255,0.92);
  color: var(--violet-deep);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}
.service-detail .copy .num{
  font-family: var(--font-display);
  color: var(--violet-mid);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.service-detail h3{ font-size: 1.9rem; }
.service-detail ul{
  list-style: none;
  padding: 0;
  margin: 20px 0 26px;
  display: grid;
  gap: 10px;
}
.service-detail ul li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #3a3253;
  font-size: 0.98rem;
}
.service-detail ul li svg{ flex-shrink: 0; margin-top: 3px; }
@media (max-width: 860px){
  .service-detail, .service-detail.reverse{
    grid-template-columns: 1fr;
  }
  .service-detail.reverse .copy{ order: 1; }
  .service-detail.reverse .visual{ order: 2; }
}

/* ---------- process / how-it-works ---------- */
.process{
  background: var(--violet-ink);
  color: #fff;
  border-radius: 28px;
  padding: 64px 40px;
}
.process .section-head h2, .process .section-head p{ color: #fff; }
.process .section-head p{ color: #cabdea; }
.process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step{
  border-top: 2px solid var(--mint);
  padding-top: 18px;
}
.process-step .step-num{
  font-family: var(--font-display);
  color: var(--mint);
  font-size: 1.6rem;
  display: block;
  margin-bottom: 10px;
}
.process-step h4{ color: #fff; font-size: 1.1rem; }
.process-step p{ color: #cabdea; font-size: 0.95rem; margin: 0; }
@media (max-width: 860px){
  .process{ padding: 48px 24px; }
  .process-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .process-grid{ grid-template-columns: 1fr; }
}

/* ---------- testimonial / stat band ---------- */
.stat-band{
  background: linear-gradient(120deg, var(--violet-mid), var(--violet-deep));
  color: #fff;
  border-radius: 28px;
  padding: 56px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-band div strong{
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--mint);
}
.stat-band div span{ font-size: 0.92rem; color: #ece4fb; }
@media (max-width: 720px){
  .stat-band{ grid-template-columns: 1fr 1fr; padding: 40px 24px; }
}

/* ---------- about page ---------- */
.about-hero{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-hero .visual{
  border-radius: 24px;
  overflow: hidden;
  clip-path: polygon(0 0, 94% 0, 100% 10%, 100% 100%, 6% 100%, 0 88%);
}
.about-hero .visual img{ height: 520px; object-fit: cover; }
@media (max-width: 900px){
  .about-hero{ grid-template-columns: 1fr; }
  .about-hero .visual img{ height: 340px; }
}

.values-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card{
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  background: var(--wash);
}
.value-card:nth-child(2){ background: #fff; border-color: var(--line); }
.value-card:nth-child(3){ background: var(--violet-ink); color: #fff; }
.value-card:nth-child(3) p{ color: #cabdea; }
.value-card h4{ font-size: 1.2rem; margin-bottom: 10px; }
@media (max-width: 860px){
  .values-grid{ grid-template-columns: 1fr; }
}

/* ---------- contact page ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-card{
  background: var(--wash);
  border-radius: 24px;
  padding: 36px;
}
.contact-line{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-line:last-child{ border-bottom: none; }
.contact-line .icon{
  width: 42px; height: 42px;
  border-radius: 12px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--violet-deep);
}
.contact-line a{ text-decoration: none; font-weight: 700; color: var(--violet-ink); }
.contact-line span{ display: block; font-size: 0.85rem; color: #6a5f87; margin-bottom: 2px; }

form.lead-form{
  display: grid;
  gap: 18px;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px){ .form-row{ grid-template-columns: 1fr; } }
.field{ display: grid; gap: 8px; }
.field label{ font-weight: 700; font-size: 0.9rem; }
.field input, .field select, .field textarea{
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--violet-ink);
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--violet-mid);
  outline: none;
}
.field textarea{ resize: vertical; min-height: 120px; }
.form-note{ font-size: 0.85rem; color: #6a5f87; }
.form-status{
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
}
.form-status.success{
  display: block;
  background: #e6f9f0;
  color: var(--mint-deep);
  border: 1px solid #b8ecd4;
}
.form-status.error{
  display: block;
  background: #fdeceb;
  color: #b3392c;
  border: 1px solid #f6c6c1;
}

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(120deg, #efe8fc, #ffffff);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 56px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2{ font-size: 1.9rem; margin-bottom: 6px; }
.cta-band p{ margin: 0; color: #4a4064; }
.cta-actions{ display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- footer ---------- */
footer.site-footer{
  background: var(--violet-ink);
  color: #cabdea;
  padding: 64px 0 28px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h5{
  color: #fff;
  font-size: 0.9rem;
  margin: 0 0 16px;
  font-weight: 700;
}
.footer-grid .brand{ color: #fff; margin-bottom: 12px; }
.footer-grid p{ color: #b3a5d4; font-size: 0.92rem; }
.footer-grid ul{ list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a{ color: #cabdea; text-decoration: none; font-size: 0.94rem; }
.footer-grid a:hover{ color: var(--mint); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.85rem;
  color: #8f7fb5;
}
@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ---------- misc page hero (services/about/contact top) ---------- */
.page-hero{
  background: linear-gradient(160deg, var(--wash) 0%, #ffffff 100%);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}
.page-hero .kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint-deep);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.page-hero h1{ font-size: clamp(2.1rem, 4vw, 3rem); max-width: 16ch; }
.page-hero p{ font-size: 1.1rem; color: #4a4064; max-width: 54ch; }
