/* Appac-inspired home sections — SEO Rank Pro */

/* —— Hero (full-bleed video) —— */
.mkt-hero-appac {
  min-height: 100vh;
  padding: calc(var(--mkt-header-offset) + 48px) 0 72px;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
}
.mkt-hero-appac .mkt-hero-bg-overlay {
  background:
    linear-gradient(105deg,
      rgba(4, 8, 18, 0.88) 0%,
      rgba(6, 12, 28, 0.72) 42%,
      rgba(8, 16, 36, 0.45) 68%,
      rgba(10, 18, 40, 0.35) 100%),
    linear-gradient(180deg, rgba(4, 8, 18, 0.5) 0%, transparent 40%, rgba(4, 8, 18, 0.55) 100%);
}
.mkt-hero-appac-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.mkt-hero-appac-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fde68a;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}
.mkt-hero-appac h1,
.mkt-hero-appac h1.mkt-motion-title {
  font-family: var(--mkt-serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 16px;
}
.mkt-hero-appac h1.mkt-motion-title::after {
  background: linear-gradient(90deg, #fde68a, #fbbf24, #fde68a);
  background-size: 200% 100%;
}
.mkt-hero-appac h2.mkt-hero-appac-sub {
  font-family: var(--mkt-serif);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.mkt-hero-appac-lead {
  font-size: 18px;
  color: rgba(226, 232, 240, 0.88);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.mkt-hero-appac-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.mkt-hero-appac-actions .mkt-btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #ffffff;
}
.mkt-hero-appac-actions .mkt-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}
.mkt-hero-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mkt-hero-quicklink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.mkt-hero-quicklink:hover {
  background: rgba(37, 99, 235, 0.25);
  border-color: rgba(96, 165, 250, 0.45);
  color: #ffffff;
  transform: translateY(-2px);
}
.mkt-hero-quicklink i {
  font-size: 12px;
  color: #7dd3fc;
}

/* —— Trusted marquee —— */
.mkt-appac-trust {
  padding: 40px 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}
.mkt-appac-trust-head {
  text-align: center;
  margin-bottom: 28px;
}
.mkt-appac-trust-head h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #64748b;
}
.mkt-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.mkt-marquee {
  display: flex;
  gap: 48px;
  animation: mkt-marquee 32s linear infinite;
  width: max-content;
}
.mkt-marquee:hover { animation-play-state: paused; }
@keyframes mkt-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.mkt-marquee-item {
  flex-shrink: 0;
  font-family: var(--mkt-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #94a3b8;
  padding: 12px 24px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.mkt-marquee-item:hover { color: #2563eb; border-color: #bfdbfe; }

/* —— Intro + video —— */
.mkt-appac-intro {
  padding: 88px 0;
  background: var(--mkt-bg);
}
.mkt-appac-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.mkt-appac-intro h2 {
  font-family: var(--mkt-serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 20px;
}
.mkt-appac-intro p {
  color: #475569;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.mkt-appac-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid #e2e8f0;
  box-shadow: var(--mkt-shadow-lg);
  background: #0f172a;
}
.mkt-appac-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mkt-appac-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 8, 18, 0.75) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px;
  text-align: center;
}
.mkt-appac-video-overlay h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}
.mkt-appac-video-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mkt-appac-video-play:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.mkt-appac-video-play i { font-size: 12px; }

/* —— Stats —— */
.mkt-appac-stats {
  padding: 72px 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.mkt-appac-stats-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.mkt-appac-stats-head h2 {
  font-family: var(--mkt-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.mkt-appac-stats-head p { color: #64748b; }
.mkt-appac-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mkt-appac-stat {
  text-align: center;
  padding: 32px 20px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.mkt-appac-stat:hover {
  border-color: #93c5fd;
  box-shadow: var(--mkt-shadow-md);
  transform: translateY(-4px);
}
.mkt-appac-stat strong {
  display: block;
  font-family: var(--mkt-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  margin-bottom: 8px;
}
.mkt-appac-stat span {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  line-height: 1.4;
}
.mkt-appac-certs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.mkt-appac-cert {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

/* —— Why choose —— */
.mkt-appac-why {
  padding: 88px 0;
  background: var(--mkt-bg);
}
.mkt-appac-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.mkt-appac-section-head h2 {
  font-family: var(--mkt-serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: #0f172a;
}
.mkt-appac-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mkt-appac-why-card {
  padding: 28px 24px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.mkt-appac-why-card:hover {
  border-color: #93c5fd;
  box-shadow: var(--mkt-shadow-md);
  transform: translateY(-4px);
}
.mkt-appac-why-num {
  font-family: var(--mkt-serif);
  font-size: 2rem;
  font-weight: 800;
  color: #cbd5e1;
  line-height: 1;
  margin-bottom: 16px;
}
.mkt-appac-why-card:hover .mkt-appac-why-num { color: #2563eb; }
.mkt-appac-why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
.mkt-appac-why-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
}

/* —— Industries —— */
.mkt-appac-industries {
  padding: 88px 0;
  background: #ffffff;
}
.mkt-appac-ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mkt-appac-ind-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  display: block;
}
.mkt-appac-ind-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.mkt-appac-ind-card:hover img { transform: scale(1.06); }
.mkt-appac-ind-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 8, 18, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.mkt-appac-ind-label h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
}

/* —— Four disciplines —— */
.mkt-appac-disciplines {
  padding: 88px 0;
  background: linear-gradient(180deg, #eef2f9 0%, var(--mkt-bg) 100%);
}
.mkt-disc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.mkt-disc-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s;
}
.mkt-disc-tab.is-active {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}
.mkt-disc-tab i { font-size: 14px; }
.mkt-disc-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  animation: mkt-fade-in 0.5s ease;
}
.mkt-disc-panel.is-active { display: grid; }
@keyframes mkt-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.mkt-disc-panel h3 {
  font-family: var(--mkt-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}
.mkt-disc-panel p {
  color: #475569;
  line-height: 1.75;
  margin-bottom: 20px;
}
.mkt-disc-visual {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: var(--mkt-shadow-md);
  aspect-ratio: 16/11;
}
.mkt-disc-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* —— Digital marketing block —— */
.mkt-appac-dm {
  padding: 88px 0;
  background: #0f172a;
  color: #e2e8f0;
}
.mkt-appac-dm-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.mkt-appac-dm h2 {
  font-family: var(--mkt-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}
.mkt-appac-dm-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 16px;
  display: block;
}
.mkt-appac-dm p { color: #94a3b8; line-height: 1.75; margin-bottom: 24px; }
.mkt-appac-dm-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.mkt-appac-service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
}
.mkt-appac-service-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.mkt-appac-service-list li a:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: rgba(96, 165, 250, 0.4);
  color: #ffffff;
}
.mkt-appac-service-list i {
  color: #60a5fa;
  font-size: 12px;
}

/* —— Case studies —— */
.mkt-appac-cases {
  padding: 88px 0;
  background: #ffffff;
}
.mkt-appac-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mkt-appac-case {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  transition: box-shadow 0.3s, transform 0.3s;
}
.mkt-appac-case:hover {
  box-shadow: var(--mkt-shadow-lg);
  transform: translateY(-6px);
}
.mkt-appac-case-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.mkt-appac-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.mkt-appac-case:hover .mkt-appac-case-img img { transform: scale(1.05); }
.mkt-appac-case-body { padding: 24px; }
.mkt-appac-case-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 8px;
}
.mkt-appac-case-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.35;
}
.mkt-appac-case-body p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.6;
}
.mkt-appac-case-link {
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mkt-appac-case-link:hover { color: #1d4ed8; }

/* —— Leaders —— */
.mkt-appac-leaders {
  padding: 88px 0;
  background: var(--mkt-bg);
}
.mkt-appac-leaders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.mkt-appac-pillars {
  display: grid;
  gap: 16px;
}
.mkt-appac-pillar {
  padding: 20px 22px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.mkt-appac-pillar:hover {
  border-color: #93c5fd;
  box-shadow: var(--mkt-shadow-sm);
}
.mkt-appac-pillar strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.mkt-appac-pillar span { font-size: 14px; color: #64748b; line-height: 1.55; }
.mkt-appac-leaders-visual {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: var(--mkt-shadow-lg);
}
.mkt-appac-leaders-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* —— News —— */
.mkt-appac-news {
  padding: 88px 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}
.mkt-appac-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mkt-appac-news-card {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.3s, transform 0.3s;
}
.mkt-appac-news-card:hover {
  box-shadow: var(--mkt-shadow-md);
  transform: translateY(-4px);
}
.mkt-appac-news-date {
  padding: 20px 20px 0;
  font-size: 12px;
  font-weight: 700;
  color: #2563eb;
}
.mkt-appac-news-card h3 {
  padding: 8px 20px 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}
.mkt-appac-news-card p {
  padding: 0 20px 20px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}
.mkt-appac-news-card a.mkt-appac-news-more {
  display: block;
  padding: 0 20px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

/* —— Partners —— */
.mkt-appac-partners {
  padding: 56px 0;
  background: #eef2f9;
  border-top: 1px solid #e2e8f0;
}
.mkt-appac-partners h3 {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 28px;
}
.mkt-partner-marquee .mkt-marquee-item {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
}

.mkt-appac-dm .mkt-btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #ffffff;
}
.mkt-appac-dm .mkt-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
  .mkt-appac-intro-grid,
  .mkt-appac-leaders-grid,
  .mkt-appac-dm-grid,
  .mkt-disc-panel { grid-template-columns: 1fr; }
  .mkt-appac-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mkt-appac-why-grid { grid-template-columns: repeat(2, 1fr); }
  .mkt-appac-ind-grid { grid-template-columns: repeat(2, 1fr); }
  .mkt-appac-case-grid,
  .mkt-appac-news-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .mkt-appac-stats-grid,
  .mkt-appac-why-grid,
  .mkt-appac-ind-grid,
  .mkt-appac-service-list { grid-template-columns: 1fr; }
  .mkt-hero-quicklinks { gap: 8px; }
  .mkt-hero-quicklink { font-size: 12px; padding: 8px 12px; }
}
