/* ============================================
   DIDIT — Life Simplified
   Style Sheet | Work Sans | White/Black/Orange
   ============================================ */

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

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #111111;
  --white: #FFFFFF;
  --orange: #E85000;
  --orange-dark: #C44000;
  --grey-light: #F5F5F5;
  --grey-mid: #E0E0E0;
  --grey-text: #666666;
  --font: 'Work Sans', sans-serif;
  --nav-height: 72px;
  --max-w: 1140px;
  --radius: 4px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { font-size: 1rem; line-height: 1.7; color: var(--black); }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.6; }
.caption { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.orange { color: var(--orange); }
.uppercase { text-transform: uppercase; }
strong { font-weight: 700; }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }
.section--black { background: var(--black); color: var(--white); }
.section--black p { color: rgba(255,255,255,0.8); }
.section--orange { background: var(--orange); color: var(--white); }
.section--grey { background: var(--grey-light); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo img { height: 52px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  transition: color var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--orange); }
.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  background: none;
  border: 1.5px solid var(--grey-mid);
  border-radius: 20px;
  padding: 4px 12px;
  transition: all var(--transition);
}
.lang-toggle:hover { border-color: var(--black); }
.lang-toggle span { color: var(--grey-text); transition: color var(--transition); }
.lang-toggle span.active { color: var(--black); }
.lang-toggle .sep { color: var(--grey-mid); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  padding: 40px 24px;
  gap: 8px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-mid);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--orange); }
.nav__mobile .btn { margin-top: 24px; text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,80,0,0.3);
}
.btn--black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--black:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--black);
}
.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}
.btn--sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}
.btn .icon { font-size: 1.1em; }

/* WhatsApp specific */
.btn--wa {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn--wa:hover {
  background: #1aa84e;
  border-color: #1aa84e;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}
.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 60px) 0 80px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
}
.hero__title { margin-bottom: 24px; }
.hero__title em {
  font-style: normal;
  color: var(--orange);
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--grey-text);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero__img {
  position: relative;
  overflow: hidden;
}
.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__img--overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,80,0,0.15), transparent);
}

/* --- Section headers --- */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header .caption { color: var(--orange); margin-bottom: 12px; display: block; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 580px; color: var(--grey-text); font-size: 1.05rem; }
.section-header--center p { margin: 0 auto; }

/* --- Cards --- */
.card {
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.card--black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.card--black p { color: rgba(255,255,255,0.7); }
.card--black:hover { border-color: var(--orange); }
.card__icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.95rem; }

/* --- Stats --- */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 48px 24px;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--orange);
}
.stat__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}
.section--black .stat__label { color: rgba(255,255,255,0.7); }

/* --- How it works --- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: var(--orange);
}
.step { text-align: center; padding: 0 24px; }
.step__num {
  width: 56px;
  height: 56px;
  background: var(--black);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--black);
}
.step h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step p { font-size: 0.9rem; color: var(--grey-text); }

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--grey-mid);
  border-radius: 8px;
  overflow: hidden;
}
.pricing-tier {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition);
}
.pricing-tier--featured {
  background: var(--black);
  color: var(--white);
}
.pricing-tier--featured p { color: rgba(255,255,255,0.7); }
.pricing-tier__badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.pricing-tier__hours {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.pricing-tier__rate {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 4px;
}
.pricing-tier__rate span { font-size: 1.2rem; font-weight: 600; }
.pricing-tier__benefit {
  font-size: 0.9rem;
  margin: 16px 0 24px;
}
.pricing-tier--featured .pricing-tier__benefit { color: rgba(255,255,255,0.7); }

/* --- Testimonials / Quotes --- */
.quote-block {
  border-left: 4px solid var(--orange);
  padding: 24px 32px;
  margin: 32px 0;
}
.quote-block blockquote {
  font-size: 1.2rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 12px;
}
.quote-block cite { font-size: 0.85rem; color: var(--grey-text); font-style: normal; }

/* --- Photo sections --- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.photo-grid__item { overflow: hidden; aspect-ratio: 1; }
.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-grid__item:hover img { transform: scale(1.04); }

.photo-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
}
.photo-feature__img { overflow: hidden; }
.photo-feature__img img { width: 100%; height: 100%; object-fit: cover; }
.photo-feature__content {
  background: var(--black);
  color: var(--white);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.photo-feature__content p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }

/* --- Services list --- */
.service-item {
  border-top: 1.5px solid var(--grey-mid);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 32px;
  align-items: center;
  transition: all var(--transition);
}
.service-item:last-child { border-bottom: 1.5px solid var(--grey-mid); }
.service-item:hover { padding-left: 12px; }
.service-item:hover .service-item__num { color: var(--orange); }
.service-item__num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--grey-text);
  text-transform: uppercase;
}
.service-item__title { font-size: 1.3rem; font-weight: 800; }
.service-item__desc { font-size: 0.9rem; color: var(--grey-text); }
.service-item__arrow {
  font-size: 1.4rem;
  color: var(--grey-mid);
  transition: color var(--transition);
}
.service-item:hover .service-item__arrow { color: var(--orange); }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--orange);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .btn--outline-white:hover { color: var(--orange); }

/* --- Footer --- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo { margin-bottom: 16px; }
.footer__logo img { height: 32px; }
.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--orange); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  text-transform: uppercase;
}
.footer__social a:hover { color: var(--orange); }

/* --- Checkmark decoration --- */
.checkmark-orange {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle;
  position: relative;
}

/* --- Page hero (inner pages) --- */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: calc(var(--nav-height) + 80px) 0 80px;
}
.page-hero .caption { color: var(--orange); display: block; margin-bottom: 12px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.15rem; max-width: 560px; }

/* --- FAQ --- */
.faq-item {
  border-top: 1.5px solid var(--grey-mid);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1.5px solid var(--grey-mid); }
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-item__q h4 { font-size: 1.05rem; }
.faq-toggle {
  width: 28px;
  height: 28px;
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-toggle {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: rotate(45deg);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-item__a { max-height: 300px; }
.faq-item__a p { padding-top: 16px; color: var(--grey-text); }

/* --- Tag chips --- */
.tag {
  display: inline-block;
  border: 1.5px solid var(--grey-mid);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 20px;
  transition: all var(--transition);
}
.tag:hover { border-color: var(--orange); color: var(--orange); }
.tags-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* --- Divider --- */
.divider {
  width: 48px;
  height: 4px;
  background: var(--orange);
  margin: 24px 0;
}
.divider--center { margin: 24px auto; }

/* --- Utility --- */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-orange { color: var(--orange); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .service-item { grid-template-columns: 1fr; gap: 8px; }
  .service-item__arrow { display: none; }
  .steps::before { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav__links { display: none; }
  .nav__right .btn { display: none; }
  .nav__hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero--split { grid-template-columns: 1fr; }
  .hero__img { height: 300px; }
  .hero__content { padding-top: calc(var(--nav-height) + 40px); padding-bottom: 48px; }
  .hero__sub { max-width: 100%; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-feature { grid-template-columns: 1fr; }
  .photo-feature__content { padding: 40px 32px; }
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .stats-bar { gap: 32px; }
}
