/* ---------------------------------------------------
   2M Solutions Limited — design tokens
   Slick monochrome, black canvas throughout
--------------------------------------------------- */
:root{
  --bg:         #000000;   /* main page background, pure black */
  --bg-alt:     #0C0C0C;   /* alternate section background, a hair lighter for separation */
  --surface:    #161616;   /* raised surfaces: cards, inputs, plan cards */
  --surface-2:  #1F1F1F;   /* slightly higher surface: featured/hover states */
  --white:      #FFFFFF;
  --gold:       #C9A227;
  --gold-light: #E0BE4C;
  --text:       #F2F2F0;   /* primary text on black */
  --text-muted: #9C9C9C;   /* secondary text on black */
  --text-faint: #6E6E6E;
  --line:       rgba(255,255,255,0.12);
  --line-soft:  rgba(255,255,255,0.08);

  --font-display: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1140px;
  --radius: 10px;
  --radius-pill: 999px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

ul{ list-style: none; margin: 0; padding: 0; }

h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--white);
}

h1{ font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.03em; }
h2{ font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3{ font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em; }

.light{ color: var(--white); }

p{ margin: 0 0 1em; }

.wrap{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  color: var(--bg);
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus{ left: 12px; top: 12px; }

:focus-visible{
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(255,255,255,0.18);
}

/* ---------------- Buttons ---------------- */
.btn{
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover{ transform: translateY(-2px); }

.btn-primary{
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover{
  background: var(--gold-light);
  box-shadow: 0 10px 22px rgba(201,162,39,0.35);
}

.btn-outline-light{
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-light:hover{
  background: var(--gold);
  color: var(--bg);
}

/* ---------------- Header ---------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo{
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
}
.logo-img{
  height: 72px;
  width: auto;
  display: block;
}
.logo-mark{
  background: var(--white);
  color: var(--bg);
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 1.1rem;
}
.logo-word{
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: var(--text);
}
.logo-light .logo-mark{ background: var(--white); color: var(--bg); }
.logo-light .logo-word{ color: var(--white); }

.site-nav{
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.95rem;
  font-weight: 500;
}
.site-nav a{ position: relative; padding: 4px 0; color: var(--text); }
.site-nav a:not(.nav-cta):after{
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--white);
  transition: width 0.2s ease;
}
.site-nav a:not(.nav-cta):hover:after{ width: 100%; }

.nav-cta{
  background: var(--gold);
  color: var(--bg);
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: var(--radius-pill);
}
.nav-cta:hover{ background: var(--gold-light); }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  height: 2px;
  background: var(--text);
}

/* ---------------- Sections (base) ---------------- */
.section{ padding: clamp(56px, 9vw, 96px) 0; }
.section-paper{ background: var(--bg); }
.section-cream{ background: var(--bg-alt); }
.section-ink{ background: var(--surface); color: var(--text); }

.section-light{ background: var(--white); color: var(--bg); }
.section-light h1, .section-light h2, .section-light h3{ color: var(--bg); }
.section-light .kicker{ color: var(--text-faint); }
.section-light .kicker::before{ background: var(--bg); }
.section-light .muted{ color: #55524B; }
.section-light .service-card .muted{ color: var(--text-muted); }
.section-light .service-card{ background: var(--bg); border-color: rgba(255,255,255,0.14); color: var(--white); }
.section-light .service-card:nth-child(2){
  background: var(--gold);
  border-color: transparent;
}
.section-light .service-card:nth-child(2) h3{ color: var(--bg); }
.section-light .service-card:nth-child(2) .muted{ color: #4A4A48; }
.section-light .service-card:nth-child(2) .service-points li{ color: #4A4A48; border-top-color: rgba(10,10,10,0.15); }
.section-light .service-card:nth-child(2) .service-num{ color: #6E6E6E; }
.section-light .service-card:nth-child(2) .service-price{ color: var(--bg); }
.section-light .service-card:nth-child(2) .service-link{ color: var(--bg); border-bottom-color: rgba(10,10,10,0.3); }
.section-light .service-card:nth-child(2) .service-link:hover{ border-color: var(--bg); }
.section-light .service-card h3{ color: var(--white); }
.section-light .service-points li{ color: var(--text-muted); border-top-color: rgba(255,255,255,0.14); }
.section-light .service-price{ color: var(--white); }
.section-light .service-link{ color: var(--white); border-bottom-color: rgba(255,255,255,0.3); }
.section-light .service-link:hover{ border-color: var(--white); }
.section-light .mosaic img{ box-shadow: 0 0 0 1px rgba(10,10,10,0.1); }
.section-light .mosaic img:hover{ box-shadow: 0 0 0 1px rgba(10,10,10,0.3), 0 16px 28px rgba(10,10,10,0.18); }
.section-light .call-cta h3{ color: var(--white); }

.kicker{
  font-family: var(--font-body);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.kicker::before{
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin-right: 10px;
  vertical-align: middle;
}
.kicker-light{ color: var(--text-muted); }
.kicker-light::before{ background: var(--white); }

.muted{ color: var(--text-muted); max-width: 46ch; }
.muted-light{ color: var(--text-muted); }

.section-sub{ margin-top: 56px; }

/* ---------------- Hero ---------------- */
.hero{
  background: var(--bg);
  color: var(--text);
  padding: 96px 0 110px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero--photo{
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75)),
    url('images/hero-banner-graphic-design.jpg') center 30% / cover no-repeat;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy{
  animation: rise 0.7s ease both;
}
.hero-art{
  animation: rise 0.7s ease 0.15s both;
}
@keyframes rise{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}
.hero-copy .kicker{ color: var(--text-muted); }
.hero-copy .kicker::before{ background: var(--white); }
.hero h1{ color: var(--white); }
.hero-sub{
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 40ch;
}
.hero-art{
  position: relative;
  min-height: 340px;
}
.hero-photo{
  position: absolute;
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(0,0,0,0.6);
  width: 78%;
  object-fit: cover;
}
.hero-photo--back{
  top: 0; right: 0;
  transform: rotate(4deg);
  border: 6px solid var(--white);
  filter: grayscale(1) contrast(1.05);
}
.hero-photo--front{
  bottom: 0; left: 0;
  transform: rotate(-5deg);
  border: 6px solid var(--surface-2);
  filter: grayscale(1) contrast(1.05);
}

/* ---------------- Mosaic (graphics grid) ---------------- */
/* CSS-columns masonry: each image keeps its natural aspect ratio, nothing is cropped */
.mosaic{
  margin-top: 40px;
  column-count: 4;
  column-gap: 16px;
}
.mosaic img{
  width: 100%;
  height: auto;
  display: block;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px var(--line-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mosaic img:hover{
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.3), 0 16px 28px rgba(0,0,0,0.5);
}

@media (max-width: 980px){
  .mosaic{ column-count: 3; }
}
@media (max-width: 700px){
  .mosaic{ column-count: 2; column-gap: 12px; }
  .mosaic img{ margin-bottom: 12px; }
}
@media (max-width: 460px){
  .mosaic{ column-count: 1; }
}

/* ---------------- Services ---------------- */
.services-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.services-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.services-list li{
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

/* ---------------- Website clients ---------------- */
.client-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.client-card{
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.client-card:hover{
  border-color: var(--white);
  transform: translateY(-3px);
}
.client-name{ font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--text); }
.client-url{ color: var(--text-muted); font-size: 0.9rem; }

/* ---------------- Pricing ---------------- */
.call-cta{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 36px;
  margin: 32px 0 64px;
}
.call-cta-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.plan-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.plan-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plan-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.35);
}
.plan-card--featured{
  background: var(--white);
  border-color: var(--white);
}
.plan-card--featured .plan-name{ color: var(--text-faint); }
.plan-card--featured .plan-price{ color: var(--bg); }
.plan-card--featured .plan-desc{ color: #4A4A4A; }

.plan-card:nth-child(1),
.plan-card:nth-child(3){ background: var(--gold); border-color: var(--gold); }
.plan-card:nth-child(1) .plan-name,
.plan-card:nth-child(3) .plan-name{ color: rgba(10,10,10,0.6); }
.plan-card:nth-child(1) .plan-price,
.plan-card:nth-child(3) .plan-price{ color: var(--bg); }
.plan-card:nth-child(1) .plan-desc,
.plan-card:nth-child(3) .plan-desc{ color: rgba(10,10,10,0.7); }
.plan-name{ color: var(--text-muted); font-weight: 600; text-transform: none; margin-bottom: 6px; }
.plan-price{
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.plan-desc{ color: var(--text-muted); margin-bottom: 0; }

.plan-features{
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.plan-features li{
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
}
.plan-features li::before{
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
}

.update-card{
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.update-card .plan-price{ margin: 0; }

/* ---------------- Graphic design pricing ---------------- */
.gd-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 32px;
}
.price-list li{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  color: var(--text-muted);
}
.price-list li span:last-child{ color: var(--white); font-weight: 600; white-space: nowrap; }
.fine-print{ font-size: 0.85rem; color: var(--text-faint); margin-top: 14px; }

/* ---------------- Testimonials ---------------- */
.testimonial-section{ text-align: center; }
.testimonial-section h2{ max-width: 46ch; margin-left: auto; margin-right: auto; }
.kicker-center{ justify-content: center; }
.kicker-center::before{ display: none; }

.testimonial-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-row img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px var(--line);
  transition: transform 0.3s ease, box-shadow 0.25s ease;
}
.testimonial-row img:hover{
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.35);
}

/* ---------------- Footer ---------------- */
.site-footer{
  background: var(--surface);
  color: var(--text);
  padding: 64px 0 28px;
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.phone-link{
  display: inline-block;
  margin-top: 10px;
  color: var(--white);
  font-weight: 600;
}
.footer-nav{
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  font-size: 0.95rem;
}
.footer-nav a{ color: var(--text-muted); }
.footer-nav a:hover{ color: var(--white); }

/* ---------------- Contact form ---------------- */
.contact-form{
  max-width: 640px;
}
.form-row{
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label{
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}
.form-row input,
.form-row select,
.form-row textarea{
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
}
.form-row input::placeholder,
.form-row textarea::placeholder{ color: var(--text-faint); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  border-color: var(--white);
  outline: none;
}

.hero h1 em{
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ---------------- Ticker ---------------- */
.ticker{
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track{
  display: inline-flex;
  gap: 14px;
  padding: 14px 0;
  animation: scroll-left 32s linear infinite;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}
.ticker-track span:nth-child(odd){ color: var(--text-faint); }
@keyframes scroll-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .ticker-track{ animation: none; }
}

/* ---------------- Service cards ---------------- */
.service-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.service-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.2s ease;
}
.service-card.in-view{ opacity: 1; transform: translateY(0); }
.service-card:nth-child(1){ transition-delay: 0s; }

/* ---------------- Generic scroll-reveal ---------------- */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view{ opacity: 1; transform: translateY(0); }
.plan-card:nth-child(1){ transition-delay: 0s; }
.plan-card:nth-child(2){ transition-delay: 0.1s; }
.plan-card:nth-child(3){ transition-delay: 0.2s; }
.gd-col:nth-child(1){ transition-delay: 0s; }
.gd-col:nth-child(2){ transition-delay: 0.1s; }
.gd-col:nth-child(3){ transition-delay: 0.2s; }
.process-step:nth-child(1){ transition-delay: 0s; }
.process-step:nth-child(2){ transition-delay: 0.08s; }
.process-step:nth-child(3){ transition-delay: 0.16s; }
.process-step:nth-child(4){ transition-delay: 0.24s; }
.start-card:nth-child(1){ transition-delay: 0s; }
.start-card:nth-child(2){ transition-delay: 0.08s; }
.start-card:nth-child(3){ transition-delay: 0.16s; }
.start-card:nth-child(4){ transition-delay: 0.24s; }
.start-card:nth-child(5){ transition-delay: 0.32s; }
.chip{ transition-delay: 0s; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}
.service-card:nth-child(2){ transition-delay: 0.12s; }
.service-card:nth-child(3){ transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce){
  .service-card{ opacity: 1; transform: none; transition: none; }
}
.service-num{
  font-family: var(--font-display);
  color: var(--text-faint);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.service-card h3{ color: var(--text); margin-bottom: 10px; }
.service-points{ margin: 18px 0; }
.service-points li{
  padding: 8px 0;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.95rem;
}
.service-points li:first-child{ border-top: none; }
.service-price{
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.service-link{
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.service-link:hover{ border-color: var(--white); }

/* ---------------- Featured client logos (slider) ---------------- */
.logo-slider{
  margin-top: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.logo-slider-track{
  display: flex;
  gap: 20px;
  width: max-content;
  animation: logo-scroll 36s linear infinite;
}
.logo-slider:hover .logo-slider-track{ animation-play-state: paused; }
@keyframes logo-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .logo-slider-track{ animation: none; }
  .logo-slider{ overflow-x: auto; }
}

.logo-card{
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 380px;
  padding: 10px;
  min-height: 200px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
a.logo-card:hover{
  transform: translateY(-3px);
  opacity: 0.85;
}
.logo-card img{
  max-width: 100%;
  max-height: 180px;
  width: auto;
  object-fit: contain;
}
.logo-card img.logo-img-keep{
  max-height: 150px;
}
.logo-card img.logo-img-big{
  max-height: 230px;
}
.logo-card img.logo-img-xl{
  max-height: 280px;
}
.logo-card-text{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-align: center;
}

/* ---------------- Stats ---------------- */
.stat-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
}
.stat-num{
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 4px;
}
.stat-label{ color: var(--text-muted); margin-bottom: 0; font-size: 0.92rem; }

.stats-gold{ background: var(--gold); }
.stats-gold .stat-num{ color: var(--bg); }
.stats-gold .stat-label{ color: rgba(10,10,10,0.7); }

/* ---------------- Starting-point pricing cards ---------------- */
.start-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 40px 0 48px;
}
.start-card{
  position: relative;
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: 0 1px 3px rgba(10,10,10,0.08);
  transition: opacity 0.6s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.start-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(10,10,10,0.18);
}
.start-card:nth-child(1){ background: #F3E3B8; }
.start-card:nth-child(2){ background: #C9E6E0; }
.start-card:nth-child(3){ background: #F2D4DC; }
.start-card:nth-child(4){ background: #DCD3F0; }
.start-card:nth-child(5){ background: #CFE3F2; }

.start-num{
  font-family: var(--font-display);
  color: rgba(10,10,10,0.45);
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.start-badge{
  position: absolute;
  top: 24px; right: 20px;
  background: var(--bg);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
}
.start-card h3{ margin-bottom: 8px; font-size: 1.1rem; color: var(--bg); }
.start-desc{ color: #3A3936; }
.start-points{ margin: 16px 0; }
.start-points li{
  padding: 6px 0;
  color: #3A3936;
  font-size: 0.88rem;
}
.start-price{
  font-family: var(--font-display);
  color: var(--bg);
  font-weight: 700;
  margin-bottom: 0;
}

.gd-wrap{ margin-top: 88px; }
.heading-gold{ color: var(--gold); }

/* ---------------- Chips ---------------- */
.chip-list{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.chip{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.chip:hover{
  border-color: var(--gold);
  transform: translateY(-2px);
}
.section-light .chip{
  background: #F0F0EE;
  border-color: rgba(10,10,10,0.12);
  color: var(--bg);
}

/* ---------------- Process steps ---------------- */
.process-steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.process-step{
  border-top: 2px solid var(--line);
  padding-top: 20px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.process-step:hover{
  border-top-color: var(--gold);
  transform: translateY(-3px);
}
.process-num{
  font-family: var(--font-display);
  color: var(--text-faint);
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.process-phase{
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: none;
  margin-bottom: 12px;
}
.process-step h3{ margin-bottom: 10px; }

/* ---------------- FAQ ---------------- */
.faq-list{ margin-top: 32px; max-width: 760px; }
.faq-item{
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item:last-child{ border-bottom: 1px solid var(--line); }
.faq-item summary{
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--text-faint);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after{ content: "–"; }
.faq-item p{
  color: var(--text-muted);
  margin: 14px 0 0;
  max-width: 62ch;
}
.section-light .faq-item{ border-top-color: rgba(10,10,10,0.12); }
.section-light .faq-item:last-child{ border-bottom-color: rgba(10,10,10,0.12); }
.section-light .faq-item summary{ color: var(--bg); }
.section-light .faq-item summary::after{ color: rgba(10,10,10,0.45); }
.section-light .faq-item p{ color: #55524B; }

/* ---------------- Final CTA ---------------- */
.final-cta{ text-align: left; }
.cta-email{
  display: inline-block;
  margin-left: 20px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.cta-email:hover{ color: var(--white); border-color: var(--white); }

/* ---------------- Footer columns ---------------- */
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.footer-col{ display: flex; flex-direction: column; gap: 10px; }
.footer-brand{ display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-heading{
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-col a{ color: var(--text); font-size: 0.92rem; }
.footer-col a:hover{ color: var(--white); }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px){
  .gd-grid{ grid-template-columns: 1fr 1fr; }
  .plan-grid{ grid-template-columns: 1fr 1fr; }
  .plan-card--featured{ grid-column: span 2; }
  .service-cards{ grid-template-columns: 1fr 1fr; }
  .start-grid{ grid-template-columns: 1fr 1fr 1fr; }
  .process-steps{ grid-template-columns: 1fr 1fr; }
  .stat-row{ grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .testimonial-row{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px){
  .hero{ padding: 72px 0 56px; text-align: left; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{
    min-height: 0;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .hero-photo{
    position: static;
    width: 100%;
    transform: none;
  }
  .services-grid{ grid-template-columns: 1fr; gap: 32px; }
  .services-list{ grid-template-columns: 1fr 1fr; }
  .plan-grid{ grid-template-columns: 1fr; }
  .plan-card--featured{ grid-column: auto; }
  .plan-features{ grid-template-columns: 1fr; }
  .client-grid{ grid-template-columns: 1fr; }
  .gd-grid{ grid-template-columns: 1fr; gap: 32px; }
  .call-cta{ padding: 28px; }
  .service-cards{ grid-template-columns: 1fr; }
  .start-grid{ grid-template-columns: 1fr 1fr; }
  .process-steps{ grid-template-columns: 1fr 1fr; }
  .stat-row{ grid-template-columns: 1fr 1fr; }
  .work-item{ grid-template-columns: 40px 1fr; row-gap: 8px; }
  .work-link{ grid-column: 2; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .logo-card{ width: 280px; min-height: 150px; padding: 8px; }
  .logo-card img.logo-img-big{ max-height: 190px; }
  .logo-card img.logo-img-xl{ max-height: 230px; }
}

@media (max-width: 900px) and (min-width: 701px){
  .logo-img{ height: 50px; }
  .site-nav{ gap: 18px; font-size: 0.88rem; }
  .nav-cta{ padding: 12px 22px; }
}

@media (max-width: 700px){
  .logo-img{ height: 44px; }
  .nav-toggle{ display: flex; }
  .site-nav{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line-soft);
    display: none;
  }
  .site-nav.open{ display: flex; }
  .site-nav a{ width: 100%; padding: 10px 0; }
  .nav-cta{
    margin-top: 8px;
    padding: 13px 28px;
    display: inline-block;
    text-align: center;
  }
}

@media (max-width: 480px){
  .services-list{ grid-template-columns: 1fr; }
  .testimonial-row{ grid-template-columns: 1fr; }
  .testimonial-row img{ height: 320px; }
  .start-grid{ grid-template-columns: 1fr; }
  .process-steps{ grid-template-columns: 1fr; }
  .stat-row{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .final-cta .btn{ display: block; margin-bottom: 12px; }
  .cta-email{ margin-left: 0; }
  .logo-card{ width: 240px; min-height: 140px; padding: 6px; }
  .logo-card img.logo-img-big{ max-height: 160px; }
  .logo-card img.logo-img-xl{ max-height: 190px; }
  .logo-slider-track{ animation-duration: 24s; }
}

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