/*
Theme Name: ArQom Tech
Theme URI: http://100.101.213.7/
Author: ArQom Tech
Description: Custom theme converted from static HTML for ArQom Tech.
Version: 1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
  --bg-primary: #fafafb;
  --bg-secondary: #f5f5f7;
  --bg-tertiary: #ffffff;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --accent: #079889;
  --accent-hover: #067e72;
  --accent-light: rgba(7, 152, 137, 0.08);
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.12);
  --nav-bg: rgba(250, 250, 251, 0.85);
  --font-main: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Myriad Set Pro", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  --font-serif: "Playfair Display", serif;
  --font-heading: "Inter", sans-serif;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
  --section-padding: 120px;
  --card-padding: 40px;
  --grid-gap: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.015em;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.5;
}

/* Typography Enhancements */
.gradient-text {
  /* Simplified for Apple style - Clean High Contrast */
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--text-primary);
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 980px; /* Pill shaped */
  font-size: 17px;
  line-height: 1.17648;
  font-weight: 400;
  letter-spacing: -0.022em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.btn-primary {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border: 1px solid var(--text-primary);
}

.btn-primary:hover {
  background-color: #333333;
  border-color: #333333;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent);
  border: none;
  padding-left: 0;
  padding-right: 0;
}

.btn-secondary:hover {
  text-decoration: underline;
}

.btn-secondary::after {
  content: ' >';
  font-size: 0.8em;
}

/* Container */
.container {
  max-width: 980px; /* Apple signature width */
  margin: 0 auto;
  padding: 0 22px;
}

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  height: 52px;
  z-index: 9999;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

body.admin-bar .navbar {
  top: 32px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 2rem; /* Increased spacing between logo and nav links */
}

.brand-logo {
  height: 32px;
  width: auto;
  border-radius: 8px; /* Added rounded corners */
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

.footer-logo-img {
  height: 50px;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: auto;
}

.nav-links a:not(.btn-primary) {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:not(.btn-primary):hover {
  color: var(--accent);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 0;
  color: var(--bg-tertiary);
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, var(--bg-tertiary) 0%, #f9f9fb 100%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Visual Fine-tuning: Set to 20% (0.2) */
  filter: brightness(0.2) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* Ultimate Contrast: Dual-layer gradient for targeted dimming behind content */
  background: 
    radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.95) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 100%);
  backdrop-filter: blur(12px) saturate(160%); /* High-grade cinematic isolation */
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-card {
  max-width: 880px;
  margin: 0 auto;
  padding: var(--card-padding);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 80%);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
}

.hero-title {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--bg-tertiary) !important;
  margin-bottom: 0.5em;
  /* Super-Nova Bloom: Combination of deep black dropshadow and white ambient glow */
  text-shadow: 
    0 4px 35px rgba(0, 0, 0, 1), 
    0 0 70px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(255, 255, 255, 0.4);
}

/* Single Case Study Page Title: Force black for readability */
.section-single-case-study .hero-title {
  color: var(--text-primary) !important;
  text-shadow: none !important;
}

/* Career Opportunities & Standard Page Hero: Force black for readability */
.hero-opportunities .hero-title,
.hero-opportunities .hero-subtitle,
.section .hero-title {
  color: #1d1d1f !important;
  -webkit-text-fill-color: #1d1d1f !important;
  background: none !important;
  text-shadow: none !important;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px; /* Slightly larger for clarity */
  line-height: 1.4;
  font-weight: 700; /* Increased to Bold for maximum legibility */
  letter-spacing: 0.012em;
  color: var(--bg-tertiary) !important;
  margin-bottom: 2em;
  /* Super-Nova Bloom: Combination of deep black dropshadow and white ambient glow */
  text-shadow: 
    0 2px 20px rgba(0, 0, 0, 1), 
    0 0 40px rgba(0, 0, 0, 0.9),
    0 0 25px rgba(255, 255, 255, 0.3);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.proof-strip {
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.proof-item {
  text-align: center;
  padding: 16px;
}

.proof-item strong {
  display: block;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  font-weight: 700;
}

.proof-item span {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.4;
}

.text-center {
  text-align: center;
}

.read-more-link {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  margin: 15px 0 25px;
  font-size: 15px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  width: fit-content;
}

.read-more-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.animate-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.article-video-section {
  margin: 40px 0;
  text-align: center;
}

.article-video-section video {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.empty-state {
  text-align: center;
  padding: 3rem 0;
  color: var(--text-secondary);
}

/* Sections General */
.section {
  padding: var(--section-padding) 0;
  background-color: var(--bg-primary);
}

.section:nth-child(even) {
  background-color: var(--bg-secondary);
}

.section-dim {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

/* Portfolio / Clients */
.client-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius-md);
  width: 260px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.client-card:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
  border-color: var(--accent);
}

.client-card img {
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.client-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Infinite Marquee */
.clients-grid {
  overflow: hidden;
  width: 100%;
  display: flex;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  padding: 40px 0;
}

.clients-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--grid-gap);
}

.service-card {
  background: var(--bg-tertiary);
  padding: var(--card-padding);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

/* Contact */
.contact-content {
  background: var(--bg-secondary);
  padding: var(--card-padding);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  margin-bottom: 0;
  width: 100%;
  font-family: var(--font-main);
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
  outline: none;
}

/* Footer */
footer {
  background-color: var(--bg-secondary);
  padding: 60px 0;
  border-top: 1px solid var(--border-strong);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.lang-btn {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: var(--accent);
}

.lang-btn.active {
  color: var(--accent);
  background: var(--accent-light);
  font-weight: 600;
}

/* Opportunities */
.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .opportunities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.opportunity-card {
  background: var(--bg-primary);
  padding: 2.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--text-primary);
  text-decoration: none;
}

.opportunity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--accent);
}

.opportunity-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.opportunity-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--accent);
}

.badge-location {
  background: var(--accent-light);
  color: var(--accent);
}

.badge-type {
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-secondary);
  border-color: var(--border);
}

.text-decoration-none {
  text-decoration: none !important;
}

/* Refactored Opportunities Classes */
.hero-opportunities {
  min-height: 40vh;
  padding-top: 150px;
  padding-bottom: 5rem;
}

.section-opportunities {
  padding-top: 2rem;
  background-color: #f5f5f7 !important;
}

.empty-state-container {
  text-align: center;
  padding: 5rem 0;
}

.section-single-opportunity {
  padding-top: 150px;
  padding-bottom: 5rem;
  background-color: #f5f5f7 !important;
}

.container-single-opportunity {
  max-width: 800px;
  margin: 0 auto;
}

.opportunity-header {
  text-align: center;
  margin-bottom: 3rem;
}

.opportunity-meta-single {
  justify-content: center;
  margin-top: 1rem;
}

.opportunity-content-single {
  background: var(--bg-primary);
  padding: 3rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.hero-opportunities .hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-opportunities .glow-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.35;
}

.hero-opportunities .orb-1 {
  width: 320px;
  height: 320px;
  top: 10%;
  left: -5%;
  background: rgba(7, 152, 137, 0.35);
}

.hero-opportunities .orb-2 {
  width: 280px;
  height: 280px;
  right: 0;
  bottom: 5%;
  background: rgba(6, 126, 114, 0.28);
}

.opportunity-cta-container {
  text-align: center;
  margin-top: 3rem;
}

.btn-apply-now {
  width: 100%;
  display: block;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
}

/* Bilingual Support */
html[lang="en"] .lang-id {
  display: none !important;
}

html[lang="id"] .lang-en {
  display: none !important;
}
/* New Section Layouts */

.problem-grid, .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--grid-gap);
  margin-top: 60px;
}

.problem-item, .feature-item {
  padding: var(--card-padding);
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.problem-item:hover, .feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.problem-item h4, .feature-item h4 {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 600;
}

.problem-item p, .feature-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.process-item {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--card-padding);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.process-item h4 {
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
}

.process-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--grid-gap);
  margin-top: 50px;
}

.case-study-card {
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-study-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.case-content {
  padding: var(--card-padding);
  flex-grow: 1;
}

.case-content .label {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-content h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.case-details p {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Single Case Study Styles */
.container-narrow {
  max-width: 840px;
  margin: 0 auto;
  padding: 120px 24px;
}

.article-header {
  margin-bottom: 60px;
}

.article-header .label {
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
}

.article-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  padding: 48px;
  background: var(--bg-secondary);
  border-radius: 32px;
  margin-bottom: 80px;
  text-align: left;
}

.meta-item h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 800;
}

.meta-item p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-primary);
  font-weight: 500;
}

.meta-item p.highlight {
  font-weight: 700;
  color: var(--accent);
}

.article-content {
  font-size: 20px;
  line-height: 1.65;
  color: var(--text-primary);
  text-align: left;
}

.article-content h2, .article-content h3 {
  margin: 50px 0 24px;
  font-size: 32px;
  font-weight: 700;
}

.article-content p {
  margin-bottom: 30px;
}

.article-content ul, .article-content ol {
  margin-bottom: 40px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 16px;
}

.article-content strong {
  color: var(--accent);
}

.article-footer {
  margin-top: 100px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}

.btn-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: var(--accent);
}

.result-highlight {
  color: var(--accent) !important;
  font-weight: 600;
  margin-top: 20px;
}

/* Services Grid Enhancements */
.icon-wrap {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Form Styles */
.contact-form {
  max-width: 600px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offer-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--card-padding);
  max-width: 900px;
  margin: 0 auto;
}

.offer-points {
  margin: 28px 0 34px;
  text-align: left;
}

.offer-points p {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.contact-promise {
  color: var(--accent);
  font-weight: 600;
  margin-top: -6px;
}

.contact-alt {
  margin-top: 16px;
  text-align: center;
}

.contact-alt p {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-consent-link {
  border: 0;
  background: transparent;
  color: var(--text-secondary);
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.footer-consent-link:hover {
  color: var(--accent);
}

.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 1200;
}

.cookie-consent-inner {
  max-width: 960px;
  margin: 0 auto;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-consent-inner p {
  margin: 0;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent-actions .btn-primary,
.cookie-consent-actions .btn-secondary {
  min-width: 110px;
}

.arqom-ad-slot {
  min-height: 280px;
  margin: 40px auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px;
  background: var(--bg-tertiary);
}

.arqom-ad-slot ins.adsbygoogle {
  min-height: 250px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
    word-wrap: break-word;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 3rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex !important;
  }

  .nav-container {
    width: 100%;
    justify-content: space-between;
  }

  .logo {
    margin-right: 0;
  }

  .navbar {
    padding: 0;
  }

  .footer-content {
    flex-direction: column;
  }

  .lang-switcher {
    margin-left: auto;
    margin-top: 0;
    justify-content: center;
    font-size: 0.8rem;
  }

  .opportunities-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 34px 24px;
  }

  .section {
    padding: 60px 0;
  }

  .case-content {
    padding: 30px;
  }

  .container-narrow {
    padding: 80px 20px;
  }

  .article-meta-grid {
    padding: 30px;
    gap: 24px;
  }

  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-consent-actions .btn-primary,
  .cookie-consent-actions .btn-secondary {
    width: 100%;
  }
}

/* Hardened Video Protection */
video {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide Download Button in Chromium */
video::-internal-media-controls-download-button {
  display: none !important;
}

video::-webkit-media-controls-enclosure {
  overflow: hidden !important;
}

video::-webkit-media-controls-panel {
  width: calc(100% + 35px) !important; /* Push the three-dot menu off-screen */
}

/* Disable context menu specifically for iOS Safari long-press */
.article-video-section video {
  pointer-events: auto;
  -webkit-touch-callout: none;
}

/* Video Shield Overlay */
.video-shield-container {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.video-shield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 60px); /* Leave space for controls at the bottom if needed, or 100% for full block */
  z-index: 10;
  background: transparent;
}

/* Ensure controls are still reachable if mouse is at the bottom */
.video-shield-container:hover .video-shield {
  height: calc(100% - 60px);
}
