/* =====================================================
   CRAWLERS — STRATEGIC ECOMMERCE CONSULTANCY
   Design System: Refined Editorial / Executive Boutique
   ===================================================== */

:root {
  --black:       #0a0a0a;
  --off-black:   #111111;
  --charcoal:    #1c1c1c;
  --mid-gray:    #4a4a4a;
  --light-gray:  #8a8a8a;
  --silver:      #c8c8c8;
  --off-white:   #f4f2ee;
  --white:       #ffffff;
  --accent:      #1e4d3c;
  --accent-mid:  #2a6b53;
  --accent-lt:   #3d9e7a;
  --rule:        rgba(0,0,0,0.1);
  --rule-light:  rgba(255,255,255,0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --max-w: 1180px;
  --pad: clamp(1.5rem, 4vw, 3rem);
  --section-pad: clamp(5rem, 8vw, 9rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===================== UTILS ===================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.02em; text-transform: uppercase; }
p { font-size: 1.05rem; line-height: 1.75; color: var(--mid-gray); }
em { font-style: italic; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.25);
}
.btn-ghost:hover {
  border-color: var(--black);
  background: rgba(0,0,0,0.04);
}
.btn-full { width: 100%; justify-content: center; }

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  background: var(--off-white);
  box-shadow: 0 1px 0 var(--rule);
  transition: box-shadow 0.35s var(--ease-out);
}
.nav.scrolled {
  background: var(--off-white);
  box-shadow: 0 1px 0 var(--rule);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--black);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--mid-gray);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }
.nav-cta {
  color: var(--white) !important;
  background: var(--black);
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 50%, rgba(30,77,60,0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  z-index: -1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(30,77,60,0.3), transparent);
}
.hero-content {
  max-width: 820px;
  animation: heroFadeIn 1s var(--ease-out) both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: heroFadeIn 1s 0.1s var(--ease-out) both;
}
.hero-headline {
  margin-bottom: 1.5rem;
  animation: heroFadeIn 1s 0.2s var(--ease-out) both;
}
.hero-headline em { color: var(--accent); }
.hero-sub {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--mid-gray);
  max-width: 640px;
  margin-bottom: 2.5rem;
  animation: heroFadeIn 1s 0.3s var(--ease-out) both;
}
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.8rem;
  animation: heroFadeIn 1s 0.4s var(--ease-out) both;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.98rem;
  color: var(--charcoal);
  padding: 0.9rem 1.2rem;
  background: rgba(0,0,0,0.025);
  border-left: 2px solid var(--accent);
  border-radius: 0 2px 2px 0;
}
.bullet-icon {
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroFadeIn 1s 0.5s var(--ease-out) both;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--light-gray);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--silver), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===================== PROBLEM STRIP ===================== */
.problem-strip {
  background: var(--black);
  padding: 3rem 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.problem-item {
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.problem-item:last-child { border-right: none; }
.problem-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-lt);
  letter-spacing: 0.1em;
}
.problem-item p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

/* ===================== SECTIONS ===================== */
.section { padding: var(--section-pad) 0; }
.section-dark {
  background: var(--charcoal);
  color: var(--white);
}
.section-off { background: var(--off-white); }

.section-header {
  margin-bottom: 4rem;
  max-width: 760px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(30,77,60,0.3);
  border-radius: 100px;
}
.section-label-light { color: var(--accent-lt); border-color: rgba(61,158,122,0.3); }
.section-title { margin-bottom: 1rem; }
.section-title.light { color: var(--white); }
.section-title em { color: var(--accent-lt); font-style: italic; }
.section-intro { font-size: 1.1rem; }
.section-dark .section-intro { color: rgba(255,255,255,0.6); }

/* ===================== SERVICE MAIN ===================== */
.service-main {
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 5rem;
}
.service-main-header {
  padding: 3rem 3rem 2.5rem;
  border-bottom: 1px solid var(--rule);
  background: var(--off-white);
}
.service-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(30,77,60,0.08);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.service-main-header h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.service-main-desc { max-width: 720px; font-size: 1.05rem; }
.service-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--rule);
}
.service-block {
  padding: 2.2rem 2rem;
  border-right: 1px solid var(--rule);
}
.service-block:last-child { border-right: none; }
.service-block h4 { margin-bottom: 1.2rem; font-size: 0.8rem; color: var(--black); }
.service-block ul li, .service-block ol li {
  font-size: 0.93rem;
  color: var(--mid-gray);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  line-height: 1.5;
}
.service-block ul li:last-child, .service-block ol li:last-child { border-bottom: none; }
.phase-list { counter-reset: phase; }
.phase-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.phase-list li span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  min-width: 1.5rem;
}
.service-for {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
}
.for-block {
  padding: 2rem 2.5rem;
}
.for-block:first-child { border-right: 1px solid var(--rule); }
.for-block h4 { margin-bottom: 1rem; font-size: 0.8rem; }
.for-yes h4 { color: var(--accent); }
.for-no h4 { color: var(--mid-gray); }
.for-block ul li {
  font-size: 0.93rem;
  color: var(--mid-gray);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.for-block ul li:last-child { border-bottom: none; }
.for-yes ul li::before { content: '✓'; color: var(--accent); font-size: 0.85rem; flex-shrink: 0; margin-top: 0.1rem; }
.for-no ul li::before { content: '×'; color: var(--light-gray); font-size: 0.85rem; flex-shrink: 0; margin-top: 0.1rem; }

/* ===================== FAQS ===================== */
.faq-section { margin-bottom: 5rem; }
.faq-title { margin-bottom: 2rem; font-size: 1.6rem; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.faq-item:nth-child(even) { border-right: none; }
.faq-item:nth-last-child(-n+2) { border-bottom: none; }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.4rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  line-height: 1.45;
}
.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--light-gray);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-a.open { max-height: 300px; }
.faq-a p {
  padding: 0 1.8rem 1.6rem;
  font-size: 0.92rem;
  color: var(--mid-gray);
}

/* ===================== COMPLEMENTARY ===================== */
.complementary-services h3 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.comp-desc { margin-bottom: 2rem; }
.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.comp-item {
  background: var(--white);
  padding: 1.8rem 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.comp-num {
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.comp-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.comp-item p { font-size: 0.88rem; color: var(--light-gray); line-height: 1.55; }

/* ===================== FRAMEWORK ===================== */
.framework-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.framework-step {
  background: rgba(255,255,255,0.03);
  padding: 2.5rem 2.5rem;
  transition: background 0.3s;
}
.framework-step:hover { background: rgba(255,255,255,0.06); }
.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--accent-lt);
  background: rgba(61,158,122,0.12);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
}
.step-header h3 { color: var(--white); font-size: 1.5rem; }
.step-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.step-col-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 0.4rem;
}
.step-col p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ===================== BLOG ===================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.blog-card {
  background: var(--white);
  transition: background 0.25s;
}
.blog-card:hover { background: var(--off-white); }
.blog-card a {
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 1.8rem;
  height: 100%;
}
.blog-card-featured {
  grid-column: 1 / 3;
  background: var(--off-white);
}
.blog-card-featured a { padding: 2.5rem; }
.blog-card-featured h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.blog-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(30,77,60,0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.blog-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--light-gray);
}
.blog-card h3 { margin-bottom: 0.7rem; font-size: 1.15rem; line-height: 1.3; color: var(--black); }
.blog-card p { font-size: 0.9rem; color: var(--mid-gray); margin-bottom: auto; }
.blog-read {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}

/* ===================== ABOUT ===================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 1.8rem;
  color: var(--black);
}
.about-manifesto p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-content: start;
}
.pillar {
  padding: 1.5rem 0;
  border-top: 2px solid var(--black);
}
.pillar h4 { margin-bottom: 0.7rem; }
.pillar p { font-size: 0.92rem; }

/* ===================== CONTACT ===================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}
.contact-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0.5rem 0 1.2rem;
}
.contact-title em { color: var(--accent); }
.contact-desc { margin-bottom: 2.5rem; font-size: 1.05rem; }
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--accent); }
.contact-icon { font-size: 1.1rem; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,77,60,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--silver); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.82rem;
  color: var(--light-gray);
  text-align: center;
  font-style: italic;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-logo {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-nav a, .footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.25); }
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ===================== ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .service-grid-4 { grid-template-columns: 1fr 1fr; }
  .service-block:nth-child(2) { border-right: none; }
  .service-block:nth-child(3), .service-block:nth-child(4) { border-top: 1px solid var(--rule); }
  .framework-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card-featured { grid-column: 1 / 3; }
  .about-layout { gap: 3rem; }
  .contact-layout { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .problem-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .service-grid-4 { grid-template-columns: 1fr; }
  .service-block { border-right: none !important; border-top: 1px solid var(--rule) !important; }
  .service-block:first-child { border-top: none !important; }
  .service-for { grid-template-columns: 1fr; }
  .for-block:first-child { border-right: none; border-bottom: 1px solid var(--rule); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item:nth-child(even) { border-right: 1px solid var(--rule); }
  .faq-item:last-child { border-bottom: none; }
  .comp-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-featured { grid-column: 1; }
  .about-layout { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ===================== TEAM ===================== */
.about-manifesto-full {
  max-width: 760px;
  margin-bottom: 4rem;
}
.about-manifesto-full .manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 1.5rem;
  color: var(--black);
}
.about-manifesto-full p { margin-bottom: 1rem; font-size: 1rem; }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team-photo-wrap {
  height: 220px;
  overflow: hidden;
  background: var(--charcoal);
}
.team-photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  transition: transform 0.5s var(--ease-out);
}
.team-card:hover .team-photo { transform: scale(1.03); }
.team-photo-andres {
  background-image: url('../foto-andres.jpg');
  background-size: cover;
  background-position: center 20%;
}
.team-photo-luciano {
  background-image: url('../foto-luciano.jpg');
  background-size: cover;
  background-position: center 20%;
}
.team-info { padding: 2rem; flex: 1; }
.team-name-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.team-name-row h3 { font-size: 1.5rem; color: var(--black); }
.team-current {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.team-focus {
  font-size: 0.88rem !important;
  font-weight: 500;
  color: var(--mid-gray) !important;
  font-style: italic;
  margin-bottom: 1rem !important;
}
.team-bio {
  font-size: 0.93rem !important;
  color: var(--mid-gray) !important;
  line-height: 1.7 !important;
  margin-bottom: 1.5rem !important;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.team-tags span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(30,77,60,0.08);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  border: 1px solid rgba(30,77,60,0.15);
}
.about-pillars-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
  .about-pillars-full { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .about-pillars-full { grid-template-columns: 1fr; }
}
