/* ============================================================
   Proper Mint — style.css v1
   ============================================================ */

:root {
  --yellow:      #F5EE20;
  --yellow-dark: #E0D900;
  --yellow-pale: #FDFBE6;
  --pink:        #E0198C;
  --pink-dark:   #C21278;
  --pink-pale:   #FCE6F3;
  --dark:        #2D2D2D;
  --mid:         #555555;
  --grey-light:  #F6F6F6;
  --border:      #E8E8E8;
  --white:       #FFFFFF;
  --font:        'Outfit', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 1rem; line-height: 1.65; color: var(--dark); background: var(--white); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; line-height: 1.2; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { color: var(--mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--dark); }

/* --- Layout --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section--yellow { background: var(--yellow); }
.section--dark   { background: var(--dark);   }
.section--grey   { background: var(--grey-light); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.four-col  { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-pink  { background: var(--pink);  color: var(--white); border-color: var(--pink); }
.btn-pink:hover,
.btn-pink:active,
.btn-pink:focus { background: var(--pink-dark); border-color: var(--pink-dark); transform: translateY(-1px); color: var(--white); }

.btn-dark  { background: var(--dark);  color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: #111; border-color: #111; transform: translateY(-1px); }

.btn-yellow { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.btn-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); transform: translateY(-1px); }

.btn-outline-dark {
  background: transparent; color: var(--dark); border-color: var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

.btn-outline-white {
  background: transparent; color: var(--white); border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--dark); }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
/* Logo recreation */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-block {
  background: var(--yellow);
  border: 2px solid var(--dark);
  border-radius: 10px;
  padding: 6px 12px 8px;
  line-height: 1;
}
.logo-dots {
  display: flex;
  gap: 5px;
  margin-bottom: 4px;
}
.logo-dots span {
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
  display: block;
}
.logo-text-block {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  transition: color 0.15s;
}
.nav-links a:not(.btn-pink):hover,
.nav-links a:not(.btn-pink).active { color: var(--pink); }
.nav-links .btn-pink,
.nav-links .btn-pink:hover,
.nav-links .btn-pink:active,
.nav-links .btn-pink:focus,
.nav-links .btn-pink.active,
a.btn-pink,
a.btn-pink:hover,
a.btn-pink:active,
a.btn-pink:visited,
a.btn-pink.active { color: #fff !important; }
.nav-links .btn { font-size: 0.88rem; padding: 10px 22px; }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: all 0.2s; }
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 2px solid var(--dark);
  padding: 16px 24px 24px;
}
.mobile-nav a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: 12px; justify-content: center; }
.mobile-nav.open { display: flex; }

/* --- Hero --- */
.hero {
  background: var(--yellow);
  padding: 100px 0 80px;
  border-bottom: 2px solid var(--dark);
  overflow: hidden;
  position: relative;
}
.hero-inner {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-label {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--dark); margin-bottom: 24px; max-width: 820px; }
.hero p  { font-size: 1.15rem; color: var(--dark); opacity: 0.75; max-width: 560px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* Inner hero */
.hero--inner {
  padding: 72px 0 64px;
  min-height: auto;
}
.hero--inner .hero-inner { min-height: auto; }
.hero--inner h1 { font-size: clamp(2rem, 4vw, 3rem); }

/* --- Stat strip --- */
.stat-strip {
  background: var(--dark);
  padding: 36px 0;
  border-bottom: 2px solid var(--dark);
}
.stat-strip-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); font-weight: 600; }
.stat-strip .divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border: 2px solid var(--dark);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 var(--dark);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: 12px;
  border: 2px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.card h4 { margin-bottom: 8px; color: var(--dark); }
.card p  { font-size: 0.9rem; }

/* --- Plan Cards --- */
.plan-card {
  background: var(--white);
  border: 2.5px solid var(--dark);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 var(--dark);
}
.plan-card.featured {
  background: var(--yellow);
  border-color: var(--dark);
  box-shadow: 6px 6px 0 var(--dark);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 8px;
}
.plan-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price span { font-size: 1rem; font-weight: 600; color: var(--mid); vertical-align: top; padding-top: 8px; display: inline-block; }
.plan-period { font-size: 0.8rem; color: var(--mid); margin-bottom: 20px; }
.plan-desc  { font-size: 0.9rem; margin-bottom: 24px; border-bottom: 1.5px solid var(--border); padding-bottom: 20px; }
.plan-card.featured .plan-desc { border-color: rgba(0,0,0,0.15); }
.plan-features { flex-grow: 1; margin-bottom: 28px; }
.plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
}
.plan-card.featured .plan-features li { border-color: rgba(0,0,0,0.12); }
.plan-features li:last-child { border-bottom: none; }
.plan-check { color: var(--pink); font-weight: 900; flex-shrink: 0; }

/* --- Process steps --- */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1.5px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  background: var(--dark);
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.step-content h4 { margin-bottom: 4px; }
.step-content p  { font-size: 0.9rem; margin: 0; }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 2px solid var(--dark); }
.faq-item:first-child { border-top: 2px solid var(--dark); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  gap: 16px;
}
.faq-question:hover { color: var(--pink); }
.faq-icon { color: var(--pink); flex-shrink: 0; font-size: 1.4rem; font-weight: 300; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px; }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.92rem; margin: 0; }

/* --- Portfolio Grid --- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.portfolio-card {
  border: 2px solid var(--dark);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s;
  background: var(--white);
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 var(--dark);
}
.portfolio-preview {
  height: 200px;
  border-bottom: 2px solid var(--dark);
  overflow: hidden;
  position: relative;
  background: var(--grey-light);
}
.portfolio-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-preview img {
  transform: scale(1.04);
}
.portfolio-body { padding: 20px 22px; }
.portfolio-body h4 { margin-bottom: 4px; font-size: 1rem; }
.portfolio-body p  { font-size: 0.82rem; margin-bottom: 14px; }
.portfolio-body a  { font-size: 0.82rem; font-weight: 700; color: var(--pink); }
.portfolio-body a:hover { text-decoration: underline; }
.portfolio-tag {
  display: inline-block;
  background: var(--yellow);
  border: 1px solid var(--dark);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* --- Section label --- */
.label {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.label--yellow {
  background: var(--yellow);
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.label--dark {
  background: var(--dark);
  color: var(--white);
}

/* --- Big quote stat --- */
.big-quote {
  background: var(--yellow);
  border: 2px solid var(--dark);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}
.big-quote p {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin: 0;
}
.big-quote-num {
  font-size: 5rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 8px;
}

/* --- Checklist --- */
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.checklist li:last-child { border-bottom: none; }
.checklist .ck { color: var(--pink); font-weight: 900; flex-shrink: 0; }

/* --- Footer --- */
.site-footer {
  background: var(--dark);
  padding: 60px 0 0;
  border-top: 2px solid var(--dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-top: 16px; }
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--yellow); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .four-col { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .two-col  { grid-template-columns: 1fr; gap: 40px; }
  .three-col { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr !important; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .stat-strip .divider { display: none; }
  .stat-strip-inner { justify-content: flex-start !important; gap: 24px; }
  .section { padding: 60px 0; }
  .hero { padding: 64px 0 56px; }
  .hero-inner { min-height: 50vh; }
  .stat-strip-inner { gap: 28px; }
}
@media (max-width: 560px) {
  .four-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h1 { font-size: 2.2rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .plan-cards { grid-template-columns: 1fr !important; }
}
