/* ============================================
   MARKETECHTS — MAIN CSS
   ============================================ */

/* Header — beat Hello Elementor defaults */
.marketechts-site .site-header,
.site-header {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  z-index: 1000;
  display: block;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  padding: 0 !important;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--gray-200); background: rgba(255,255,255,0.98); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 2rem;
  max-width: none; margin: 0; width: 100%;
}
.site-logo img { height: 40px; width: auto; }
.nav-list { display: flex; align-items: center; gap: 2.5rem; }
.nav-list a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray-600); transition: color 0.3s;
}
.nav-list a:hover, .nav-list .current a { color: var(--accent); }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.75rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger-line { display: block; width: 24px; height: 1.5px; background: #0a0a0a; transition: 0.3s; }
.hamburger.active .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 999; padding: 2rem;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 0; }
.mobile-nav-list li { border-bottom: 1px solid #e8e8e8; }
.mobile-nav-list a { display: block; padding: 1.25rem 0; font-size: 1.5rem; font-family: 'Playfair Display', serif; color: #0a0a0a; }
.mobile-cta { border-bottom: none !important; padding-top: 2rem; }

/* Hero */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: #0a0a0a;
  padding-top: 80px;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.35;
}
.hero-video-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.85) 40%, rgba(10,10,10,0.3));
}
.hero-content {
  position: relative; z-index: 2;
  padding: 6rem 0;
}
.hero-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-label::before { content: ''; display: block; width: 40px; height: 1px; background: rgba(255,255,255,0.4); }
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 700; line-height: 1.02;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.hero-headline em { font-style: italic; color: rgba(255,255,255,0.6); }
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.7);
  max-width: 600px; line-height: 1.7; margin-bottom: 1.5rem;
}
.hero-body {
  font-size: 0.95rem; color: rgba(255,255,255,0.5);
  max-width: 560px; line-height: 1.8; margin-bottom: 3rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; color: rgba(255,255,255,0.4);
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 60px; background: rgba(255,255,255,0.2);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.2; transform: scaleY(1); }
  50% { opacity: 0.6; transform: scaleY(1.2); }
}

/* Philosophy Section */
.philosophy-section { padding: 8rem 0; background: #fff; }
.philosophy-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
  border-top: 1px solid #e8e8e8; padding-top: 4rem;
}
.philosophy-left { position: sticky; top: 120px; }
.philosophy-key {
  margin-top: 3rem; padding: 2rem;
  border: 1px solid #e8e8e8;
  background: #f5f5f5;
}
.philosophy-key p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-style: italic;
  line-height: 1.6; color: #0a0a0a;
}

/* Services Section */
.services-section { padding: 8rem 0; background: #f5f5f5; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e8e8e8;
}
.service-card {
  padding: 2.5rem; border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  transition: background 0.3s;
}
.service-card:hover { background: #0a0a0a; }
.service-card:hover .service-num,
.service-card:hover .service-title,
.service-card:hover .service-desc { color: #fff; }
.service-card:hover .service-divider { background: rgba(255,255,255,0.2); }
.service-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem; color: #999; margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem;
  color: #0a0a0a; transition: color 0.3s;
}
.service-divider {
  width: 30px; height: 1px; background: #e8e8e8;
  margin-bottom: 1rem; transition: background 0.3s;
}
.service-desc { font-size: 0.875rem; color: #555; line-height: 1.7; transition: color 0.3s; }

/* Founder Section */
.founder-section { padding: 8rem 0; background: #fff; }
.founder-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  border-top: 1px solid #e8e8e8; padding-top: 4rem;
}
.founder-image-wrap {
  position: relative; aspect-ratio: 3/4;
  background: #f5f5f5; overflow: hidden;
}
.founder-image-wrap::after {
  content: 'T.S.'; position: absolute; bottom: 2rem; right: 2rem;
  font-family: 'Playfair Display', serif; font-size: 4rem; font-style: italic;
  color: rgba(0,0,0,0.08); line-height: 1;
}
.founder-stat {
  display: flex; align-items: baseline; gap: 0.5rem;
  margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid #e8e8e8;
}
.founder-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 700; line-height: 1;
  color: #0a0a0a;
}
.founder-stat-label { font-size: 0.8rem; color: #999; letter-spacing: 0.05em; }

/* Clients Section */
.clients-section { padding: 6rem 0; background: #0a0a0a; }
.clients-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
}
.client-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.client-item:hover { background: rgba(255,255,255,0.05); }
.client-item span {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  text-align: center; transition: color 0.3s; font-style: italic;
}
.client-item:hover span { color: #fff; }

/* Projects Section */
.projects-section { padding: 8rem 0; background: #fff; }
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 3rem;
}
.project-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: #f5f5f5; cursor: pointer;
}
.project-card-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.project-card:hover .project-card-inner { opacity: 1; }
.project-card-bg {
  position: absolute; inset: 0;
  background: #e8e8e8;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.project-card:hover .project-card-bg { transform: scale(1.05); }
.project-cat {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 0.5rem;
}
.project-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: #fff; font-weight: 600;
  margin-bottom: 0.5rem;
}
.project-desc { font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.project-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.project-placeholder-label {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1rem; color: #bbb; text-align: center; padding: 1rem;
}

/* Process Section */
.process-section { padding: 8rem 0; background: #f5f5f5; }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 4rem;
  border: 1px solid #e8e8e8;
}
.process-step {
  padding: 3rem 2rem;
  border-right: 1px solid #e8e8e8;
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-num {
  font-family: 'Space Mono', monospace;
  font-size: 2.5rem; font-weight: 400; color: #e8e8e8;
  line-height: 1; margin-bottom: 1.5rem; display: block;
}
.process-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; color: #0a0a0a;
}
.process-desc { font-size: 0.875rem; color: #555; line-height: 1.7; }

/* CTA Section */
.cta-section {
  padding: 8rem 0; background: #0a0a0a;
  text-align: center;
}
.cta-section .section-label { justify-content: center; }
.cta-section .section-label::before { background: rgba(255,255,255,0.3); }
.cta-section h2 { color: #fff; max-width: 800px; margin: 0 auto 2rem; }
.cta-section p { color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 3rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Footer — full-bleed ink, gold accents, override Hello white footer */
.marketechts-site .site-footer,
.site-footer {
  background: var(--primary) !important;
  color: rgba(255,255,255,0.78) !important;
  padding: 5.5rem 0 2rem !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}
.site-footer .footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2.5rem;
  box-sizing: border-box;
}
.footer-top {
  display: grid; grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr);
  gap: 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(196,163,90,0.28);
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin: 1.5rem 0 1rem;
}
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.62); line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; }
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  font-size: 0.875rem; color: rgba(255,255,255,0.72) !important;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent) !important; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(196,163,90,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent) !important; transition: 0.3s;
}
.footer-social a:hover { border-color: var(--accent); background: var(--accent); color: var(--black) !important; }
.footer-bottom {
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.footer-copy, .footer-copy-right { font-size: 0.75rem; color: rgba(255,255,255,0.55) !important; }

/* About Page */
.about-hero { padding: 12rem 0 8rem; background: #fff; border-bottom: 1px solid #e8e8e8; }
.about-founder-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
  padding: 6rem 0; border-bottom: 1px solid #e8e8e8;
}
.diff-blocks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem;
}
.diff-block {
  padding: 2.5rem; background: #f5f5f5;
  border-left: 2px solid #0a0a0a;
}
.diff-block h4 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.75rem;
}
.diff-block p { font-size: 0.875rem; color: #555; line-height: 1.7; }
.capabilities-list {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; border: 1px solid #e8e8e8; margin-top: 2rem;
}
.cap-item {
  padding: 1.25rem 1.5rem; border-right: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8;
  font-size: 0.875rem; color: #555;
  display: flex; align-items: center; gap: 0.75rem;
}
.cap-item::before { content: '—'; color: #bbb; font-size: 0.75rem; }

/* Projects Page */
.projects-hero { padding: 12rem 0 6rem; background: #fff; border-bottom: 1px solid #e8e8e8; }
.filter-bar {
  display: flex; gap: 0; flex-wrap: wrap;
  margin: 3rem 0; border: 1px solid #e8e8e8;
}
.filter-btn {
  padding: 0.75rem 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: transparent; border: none; border-right: 1px solid #e8e8e8;
  cursor: pointer; color: #999; transition: 0.3s;
}
.filter-btn:hover, .filter-btn.active { background: #0a0a0a; color: #fff; }
.projects-full-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}

/* Services Page */
.services-hero { padding: 12rem 0 6rem; background: #fff; border-bottom: 1px solid #e8e8e8; }
.service-pillar { padding: 4rem 0; border-bottom: 1px solid #e8e8e8; }
.pillar-grid {
  display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start;
  margin-top: 2rem;
}
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; position: sticky; top: 120px;
}
.pillar-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid #e8e8e8; }
.pillar-item {
  padding: 1.5rem; border-right: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8;
  font-size: 0.875rem; color: #555;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.pillar-item-name { font-weight: 500; color: #0a0a0a; font-size: 0.9rem; }

/* Contact Page */
.contact-hero { padding: 12rem 0 6rem; background: #fff; border-bottom: 1px solid #e8e8e8; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; padding: 6rem 0; }
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.form-group { display: flex; flex-direction: column; border: 1px solid #e8e8e8; margin: -1px 0 0 -1px; }
.form-group label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #999; padding: 1rem 1.25rem 0;
}
.form-group input, .form-group textarea, .form-group select {
  border: none; outline: none; padding: 0.5rem 1.25rem 1rem;
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  background: transparent; color: #0a0a0a; resize: none;
}
.form-group textarea { min-height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }
.contact-info { padding-top: 1rem; }
.contact-info-item {
  padding: 1.5rem 0; border-bottom: 1px solid #e8e8e8;
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.contact-info-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #999; min-width: 80px;
}
.contact-info-value { font-size: 0.9rem; color: #0a0a0a; line-height: 1.6; }
.form-message { padding: 1rem; font-size: 0.875rem; display: none; }
.form-message.success { background: #f0f9f0; color: #2d6a2d; border: 1px solid #b3d9b3; display: block; }
.form-message.error { background: #fdf0f0; color: #6a2d2d; border: 1px solid #d9b3b3; display: block; }

/* Responsive */
@media (max-width: 1024px) {
  .services-grid, .process-steps, .projects-grid, .projects-full-grid { grid-template-columns: repeat(2,1fr); }
  .clients-grid { grid-template-columns: repeat(3,1fr); }
  .philosophy-grid, .founder-grid, .about-founder-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-left { position: static; }
  .footer-top { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-title { position: static; }
}
@media (max-width: 768px) {
  .primary-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid, .process-steps, .diff-blocks { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2,1fr); }
  .projects-grid, .projects-full-grid { grid-template-columns: 1fr; }
  .capabilities-list, .pillar-items { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-headline { font-size: 3rem; }
}

/* Homepage Elementor blocks */
.mkt-kicker {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); display: flex; align-items: center; gap: 14px;
  margin: 0 0 22px;
}
.mkt-kicker::before { content: ''; width: 36px; height: 1px; background: var(--accent); display: block; }
.mkt-kicker.is-light { color: var(--accent); }
.mkt-quote {
  padding: 28px 32px; background: var(--paper);
  border-left: 3px solid var(--accent);
}
.mkt-quote p {
  font-family: var(--font-heading); font-size: 18px; font-style: italic;
  line-height: 1.7; color: var(--primary); margin: 0;
}
.mkt-services {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gray-200); margin-top: 8px;
}
.mkt-service {
  padding: 2rem 1.75rem; border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200); transition: 0.3s;
}
.mkt-service:nth-child(3n) { border-right: none; }
.mkt-service:hover { background: var(--primary); }
.mkt-service:hover * { color: #fff !important; }
.mkt-service:hover .mkt-service-num { color: var(--accent) !important; }
.mkt-service-num { font-family: var(--font-mono); font-size: 11px; color: var(--accent); margin-bottom: 1rem; }
.mkt-service h3 { font-family: var(--font-heading); font-size: 1.2rem; margin: 0 0 0.75rem; color: var(--primary); }
.mkt-service p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; margin: 0; }
.mkt-clients {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(196,163,90,0.25); margin-top: 2.5rem;
}
.mkt-client {
  padding: 1.75rem 1.25rem; border-right: 1px solid rgba(196,163,90,0.2);
  border-bottom: 1px solid rgba(196,163,90,0.2);
  display: flex; align-items: center; justify-content: center; min-height: 88px;
  transition: background 0.3s;
}
.mkt-client:nth-child(5n) { border-right: none; }
.mkt-client:hover { background: rgba(196,163,90,0.12); }
.mkt-client span {
  font-family: var(--font-heading); font-style: italic; font-size: 0.95rem;
  color: rgba(255,255,255,0.72); text-align: center;
}
.mkt-client:hover span { color: var(--accent); }
.mkt-work {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 2.5rem;
}
.mkt-card {
  position: relative; min-height: 280px; padding: 1.75rem;
  background: var(--paper); overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--gray-200); transition: 0.35s;
}
.mkt-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--primary) 100%);
  opacity: 0; transition: opacity 0.35s;
}
.mkt-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.mkt-card:hover::before { opacity: 1; }
.mkt-card > * { position: relative; z-index: 1; }
.mkt-card-cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin: 0 0 8px; }
.mkt-card h3 { font-family: var(--font-heading); font-size: 1.25rem; margin: 0 0 8px; color: var(--primary); }
.mkt-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.65; margin: 0; }
.mkt-card:hover h3, .mkt-card:hover p { color: #fff; }
.mkt-process {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--gray-200); margin-top: 2.5rem;
}
.mkt-step { padding: 2.5rem 1.75rem; border-right: 1px solid var(--gray-200); }
.mkt-step:last-child { border-right: none; }
.mkt-step-num { font-family: var(--font-mono); font-size: 2rem; color: var(--accent); line-height: 1; margin-bottom: 1.25rem; display: block; }
.mkt-step h3 { font-family: var(--font-heading); font-size: 1.2rem; margin: 0 0 0.75rem; color: var(--primary); }
.mkt-step p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; margin: 0; }
.mkt-cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.mkt-btn {
  display: inline-flex; align-items: center; padding: 15px 34px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none;
  transition: 0.3s;
}
.mkt-btn-gold { background: var(--accent); color: var(--primary); }
.mkt-btn-gold:hover { background: #fff; color: var(--primary); }
.mkt-btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.mkt-btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.mkt-founder-panel {
  min-height: 460px; background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.mkt-founder-panel::after {
  content: 'T.S.'; position: absolute; bottom: 1.5rem; right: 1.75rem;
  font-family: var(--font-heading); font-style: italic; font-size: 4.5rem;
  color: rgba(10,10,10,0.08); line-height: 1;
}
.mkt-stat { display: flex; align-items: baseline; gap: 12px; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--gray-200); }
.mkt-stat strong { font-family: var(--font-heading); font-size: 3.5rem; line-height: 1; color: var(--accent); }
.mkt-stat span { font-size: 0.8rem; color: var(--gray-400); letter-spacing: 0.04em; }
.mkt-row-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 8px; }
@media (max-width: 1024px) {
  .mkt-services, .mkt-work { grid-template-columns: 1fr 1fr; }
  .mkt-clients { grid-template-columns: repeat(3, 1fr); }
  .mkt-process { grid-template-columns: 1fr 1fr; }
  .mkt-service:nth-child(3n) { border-right: 1px solid var(--gray-200); }
}
@media (max-width: 768px) {
  .mkt-services, .mkt-work, .mkt-process, .mkt-clients { grid-template-columns: 1fr; }
  .site-footer .footer-inner { padding: 0 1.25rem; }
}
