/* Weltivation – S-PRO inspired clean white theme */
:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --text-muted: #4a4a4a;
  --border: #e5e5e5;
  --accent: #e63946;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1280px;
  --header-height: 80px;
  --card-dark: #252525;
  --footer-bg: #252525;
  --footer-text: #e5e5e5;
  --footer-muted: #a3a3a3;
  --footer-accent: #7dd3fc;
  --section-padding: clamp(3rem, 8vw, 6rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.5; color: var(--text); background: var(--bg); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Header – bottom line only as wide as content (not full viewport) */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--bg); }
.header-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-bottom: 1px solid var(--border); }
.logo { display: flex; align-items: center; min-height: 56px; }
.logo-img { height: 64px; width: auto; max-width: 280px; object-fit: contain; filter: invert(1); }
.nav-main { display: flex; gap: 2rem; }
.nav-main a { font-size: 0.9375rem; font-weight: 500; color: var(--text); }
.nav-main a:hover { color: var(--accent); }
.header-right { display: flex; align-items: center; gap: 1rem; }
.lang-dropdown { position: relative; }
.lang-toggle { font-family: var(--font); font-size: 0.9375rem; color: var(--text); background: none; border: none; cursor: pointer; padding: 0.25rem 0.25rem 0.25rem 0; display: inline-flex; align-items: center; gap: 0.2rem; }
.lang-toggle:hover { color: var(--accent); }
.chevron { font-size: 0.6em; opacity: 0.7; transition: transform 0.2s; }
.lang-dropdown.open .chevron { transform: rotate(180deg); }
.lang-dropdown-menu { position: absolute; top: 100%; right: 0; margin-top: 0.35rem; min-width: 140px; background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 12px rgba(0,0,0,0.08); z-index: 200; padding: 0.35rem 0; }
.lang-dropdown-menu[hidden] { display: none !important; }
.lang-dropdown-menu button { display: block; width: 100%; text-align: left; font-family: var(--font); font-size: 0.875rem; color: var(--text); background: none; border: none; padding: 0.5rem 1rem; cursor: pointer; }
.lang-dropdown-menu button:hover { background: #f5f5f5; color: var(--accent); }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font); font-size: 0.9375rem; font-weight: 500; padding: 0.6rem 1.25rem; border-radius: 0; cursor: pointer; transition: background 0.2s, color 0.2s; }
.btn-outline { border: 1px solid var(--text); background: transparent; color: var(--text); }
.btn-outline:hover { background: var(--text); color: var(--bg); }
/* Hamburger: three lines of different lengths, right-aligned (S-PRO style) */
.nav-toggle { display: none; width: 28px; height: 20px; background: none; border: none; cursor: pointer; padding: 0; position: relative; flex-shrink: 0; }
.nav-toggle .nav-toggle-line { display: block; height: 1.5px; background: var(--text); position: absolute; right: 0; top: 0; transition: transform 0.3s ease, opacity 0.25s ease, width 0.2s ease; }
.nav-toggle .nav-toggle-line:nth-child(1) { width: 14px; top: 0; }
.nav-toggle .nav-toggle-line:nth-child(2) { width: 20px; top: 50%; transform: translateY(-50%); }
.nav-toggle .nav-toggle-line:nth-child(3) { width: 24px; top: 100%; transform: translateY(-100%); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { width: 20px; top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; transform: translateY(-50%); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) { width: 20px; top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* Mobile menu overlay – slides down from top, S-PRO style */
.mobile-menu-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; z-index: 99; padding: 0; overflow-y: auto; visibility: hidden; opacity: 0; transform: translateY(-100%); transition: transform 0.5s ease-out, opacity 0.35s ease, visibility 0.01s linear 0.5s; }
.mobile-menu-overlay.is-open { visibility: visible; opacity: 1; transform: translateY(0); transition: transform 0.5s ease-out, opacity 0.35s ease, visibility 0s; z-index: 101; }
.mobile-menu-overlay .logo-img { filter: invert(1); height: 64px; width: auto; max-width: 280px; object-fit: contain; }
.mobile-menu-inner { max-width: var(--max-width); margin: 0 auto; min-height: 100%; display: flex; flex-direction: column; padding: 0 1.5rem 2rem; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); min-height: var(--header-height); margin-bottom: 0; position: relative; z-index: 1; }
.mobile-menu-logo { display: inline-flex; align-items: center; min-height: 56px; }
.mobile-menu-close { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 300; line-height: 1; color: var(--text); background: none; border: none; cursor: pointer; padding: 0; margin: -8px -8px -8px 0; position: relative; z-index: 2; }
.mobile-menu-close:hover { color: var(--accent); }
.mobile-menu-nav { display: flex; flex-direction: column; border-top: 1px solid var(--border); margin-top: 0; padding-top: 0; }
.mobile-menu-item { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid var(--border); gap: 1rem; }
.mobile-menu-link { font-size: 1rem; font-weight: 500; color: var(--text); flex: 1; }
.mobile-menu-link:hover { color: var(--accent); }
.mobile-menu-plus { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--text); display: flex; align-items: center; justify-content: center; font-size: 1rem; line-height: 1; color: var(--text); flex-shrink: 0; pointer-events: none; }
.mobile-menu-language { margin-top: 2rem; margin-bottom: 1.5rem; position: relative; }
.mobile-menu-language-label { font-size: 0.875rem; color: var(--text-muted); display: block; margin-bottom: 0.75rem; }
.mobile-menu-lang-dropdown { position: relative; }
.mobile-menu-lang-toggle { font-family: var(--font); font-size: 0.9375rem; font-weight: 500; padding: 0.5rem 1rem; border: 1px solid var(--text); background: #fff; color: var(--text); width: 100%; max-width: 160px; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; }
.mobile-menu-lang-toggle:hover { background: #f9f9f9; }
.mobile-menu-lang-toggle .chevron { transition: transform 0.2s; }
.mobile-menu-lang-dropdown:has(.mobile-menu-lang-menu.is-open) .mobile-menu-lang-toggle .chevron { transform: rotate(180deg); }
.mobile-menu-lang-menu { position: absolute; top: 100%; left: 0; margin-top: 0.25rem; min-width: 100%; background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 12px rgba(0,0,0,0.08); z-index: 10; max-height: 240px; overflow-y: auto; display: none; }
.mobile-menu-lang-menu.is-open { display: block; }
.mobile-menu-lang-menu button { display: block; width: 100%; text-align: left; font-family: var(--font); font-size: 0.875rem; color: var(--text); background: none; border: none; padding: 0.5rem 1rem; cursor: pointer; }
.mobile-menu-lang-menu button:hover { background: #f5f5f5; color: var(--accent); }
.mobile-menu-cta { width: 100%; margin-top: auto; padding: 1rem 1.5rem; text-align: center; justify-content: center; box-sizing: border-box; display: inline-flex; }

/* Section */
.section { max-width: var(--max-width); margin: 0 auto; padding: var(--section-padding) 1.5rem; position: relative; }
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.section-marker { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.section-marker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* Hero */
.hero { min-height: 85vh; display: flex; flex-direction: column; justify-content: center; padding-top: calc(var(--header-height) + var(--section-padding) - 1.25rem); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-content { max-width: 42rem; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 1.5rem; }
.hero-desc { font-size: 1.125rem; color: var(--text-muted); line-height: 1.6; margin: 0 0 2rem; max-width: 32rem; }
.hero-media { position: relative; display: flex; align-items: center; justify-content: center; overflow: visible; }
.hero-video { width: 100%; max-width: 920px; height: auto; border-radius: 4px; display: block; transform: scale(1.2); transform-origin: center center; -webkit-tap-highlight-color: transparent; }
.hero-video-slot { display: none; }
.hero-media.has-video .hero-video-slot { display: block; }
.hero-media.has-gif .hero-video-slot { display: block; }
.hero-media.has-gif .hero-video-poster { display: none !important; }
.hero-media.has-gif .hero-video-slot .hero-gif { width: 100%; max-width: 920px; height: auto; border-radius: 4px; display: block; transform: scale(1.2); transform-origin: center center; object-fit: cover; -webkit-tap-highlight-color: transparent; }
.hero-video-poster { display: block; width: 100%; max-width: 920px; height: auto; border-radius: 4px; transform: scale(1.2); transform-origin: center center; object-fit: cover; }
.hero-media.has-video .hero-video-poster { display: none !important; }
.hero-video-overlay { display: none; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 2; pointer-events: auto; touch-action: pan-y; -webkit-overflow-scrolling: touch; }
.embedded-browser .hero-media.has-video .hero-video-poster { display: none !important; }
.embedded-browser .hero-media.has-video .hero-video-slot { display: block !important; }
.embedded-browser .hero-media.has-video .hero-video-overlay { display: block !important; }
/* Hide native play button overlay on mobile so autoplay video doesn't show a play icon */
.hero-video::-webkit-media-controls-start-playback-button { display: none !important; -webkit-appearance: none; }
.hero-video::-webkit-media-controls-play-button { display: none !important; -webkit-appearance: none; }
.hero-video::-webkit-media-controls { display: none !important; }
.hero-dots { position: absolute; bottom: 0; left: 0; right: 0; height: 55%; background-image: radial-gradient(circle, var(--text) 1px, transparent 1px); background-size: 24px 24px; opacity: 0.08; mask-image: linear-gradient(to top, black 20%, transparent 70%); -webkit-mask-image: linear-gradient(to top, black 20%, transparent 70%); pointer-events: none; }

/* Key stats */
.key-stats { padding-bottom: 4rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { display: flex; flex-direction: column; }
.stat-value { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.4; }
.highlights-pill { position: absolute; bottom: 2rem; right: 1.5rem; font-size: 0.75rem; padding: 0.35rem 0.75rem; background: var(--accent); color: white; border-radius: 999px; }

/* Success stories grid */
.success-stories .section-marker { margin-bottom: 2rem; }
.stories-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); }
.story-card { position: relative; aspect-ratio: 1; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg); overflow: hidden; isolation: isolate; }
.story-card:nth-child(4n) { border-right: none; }
.story-card:nth-last-child(-n+4) { border-bottom: none; }
.story-card-link { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 1.5rem; overflow: hidden; }
.story-card img:not(.story-logo-hover):not(.story-logo-default) { max-height: 56px; width: auto; object-fit: contain; opacity: 0.95; transition: opacity 0.25s; }
.story-card:hover img:not(.story-logo-hover):not(.story-logo-default) { opacity: 1; }
.story-card .story-logo-default { opacity: 1; }
.story-card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; max-width: 100%; max-height: 100%; background: var(--card-dark); color: var(--footer-text); display: flex; flex-direction: column; flex-wrap: nowrap; align-items: stretch; justify-content: flex-end; padding: 1.15rem 1.25rem; transform: translateY(100%); transition: transform 0.35s ease-out; box-sizing: border-box; overflow: hidden; }
.story-card:hover .story-card-overlay { transform: translateY(0); }
.story-card-dreambox { background: var(--bg); }
.story-card-dreambox .story-logo-default { max-height: 40px; width: auto; object-fit: contain; opacity: 1; }
.story-card-overlay .story-name,
.story-card-overlay .story-desc,
.story-card-overlay .story-key,
.story-card-overlay .story-badges,
.story-card-overlay .story-link { flex: 0 0 auto; width: 100%; max-width: 100%; }
.story-name { font-size: clamp(0.9375rem, 2.4vw, 1.125rem); font-weight: 700; margin: 0 0 0.35rem; color: #fff; line-height: 1.25; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; width: 100%; min-width: 0; }
.story-desc { font-size: 0.8125rem; opacity: 0.92; margin: 0 0 0.4rem; line-height: 1.4; color: var(--footer-text); overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; width: 100%; min-width: 0; }
.story-key { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.7); margin: 0 0 0.5rem; }
.story-badges { display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0.3rem; margin-bottom: 0.6rem; min-height: 0; width: 100%; }
.story-badge { font-size: 0.625rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; color: rgba(255,255,255,0.9); padding: 0.2rem 0.4rem; border: 1px solid rgba(255,255,255,0.25); border-radius: 2px; flex-shrink: 0; width: fit-content; }
.story-badge-flag { background: rgba(255,255,255,0.08); }
.story-link { font-size: 0.8125rem; font-weight: 500; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.5); padding-bottom: 0.15rem; margin-top: auto; flex-shrink: 0; transition: border-color 0.2s, color 0.2s; width: 100%; }
.story-link:hover { border-color: var(--accent); color: var(--accent); }
.story-tags { font-size: 0.75rem; opacity: 0.85; color: var(--footer-muted); }
.story-card-logo-norams img:not(.story-logo-hover) { max-height: 76px; }
.story-card-logo-aroma img:not(.story-logo-hover) { filter: brightness(0.72) contrast(1.12); }
.story-card-logo-motion img:not(.story-logo-hover) { filter: brightness(0); }

/* We've got experts in - full width, hover to update */
.experts-in { background: #fff; padding: clamp(2rem, 4vw, 2.75rem) 1.5rem; width: 100%; }
.experts-in-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; gap: 3rem; }
.experts-in-text { flex-shrink: 0; min-width: 220px; }
.experts-in-label { font-size: 0.9375rem; color: var(--text-muted); margin: 0 0 0.35rem; letter-spacing: 0.01em; }
.experts-in-name { font-size: clamp(1.875rem, 3.5vw, 2.75rem); font-weight: 700; letter-spacing: -0.02em; margin: 0; color: var(--text); transition: opacity 0.2s ease; }
.experts-in-icons { display: flex; flex: 1; justify-content: space-between; align-items: center; gap: 0.5rem; flex-wrap: nowrap; min-height: 72px; }
.expert-icon { width: 64px; height: 64px; padding: 12px; border: 1px solid var(--border); border-radius: 14px; background: #f8f8f8; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease; }
.expert-icon img { width: 100%; height: 100%; object-fit: contain; transition: filter 0.2s ease; }
.expert-icon:hover { background: #fff; border-color: var(--accent); box-shadow: 0 4px 12px rgba(230, 57, 70, 0.12); transform: translateY(-2px); }
.expert-icon:hover img { filter: none; }
.expert-icon:not(:hover) img { filter: grayscale(0.7); opacity: 0.85; }

/* Stages */
.section-heading { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 3rem; max-width: 28rem; }
.stages-layout { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.stages-list { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid var(--border); }
.stages-list li { border-top: 1px solid var(--border); }
.stages-list a { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; font-size: 1rem; color: var(--text); position: relative; }
.stages-list a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--text); transform: scaleX(0); transform-origin: left; transition: transform 0.25s; }
.stages-list a.active { font-weight: 600; }
.stages-list a.active::before { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 10px; height: 10px; border: 1px solid var(--accent); border-radius: 50%; background: transparent; }
.stages-list a:hover::after, .stages-list a.active::after { transform: scaleX(1); }
.stages-content { min-height: 200px; }
.stage-panel { display: none; }
.stage-panel.active { display: block; }
.stage-panel h3 { font-size: 1.5rem; font-weight: 700; margin: 0 0 1rem; }
.stage-panel p { color: var(--text-muted); margin: 0 0 1.5rem; max-width: 36rem; line-height: 1.6; }
.read-more { font-size: 0.9375rem; color: var(--text); display: inline-flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid var(--border); padding-bottom: 0.25rem; width: fit-content; }
.read-more:hover { border-color: var(--accent); color: var(--accent); }
.read-more::after { content: '→'; font-size: 0.875rem; }

/* CTA */
.cta { text-align: left; }
.cta-heading { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 1rem; }
.cta-text { font-size: 1.125rem; color: var(--text-muted); margin: 0 0 2rem; max-width: 32rem; }

/* Industries */
.industries-intro { color: var(--text-muted); font-size: 1rem; margin: 0 0 2rem; max-width: 28rem; }
.industries-list { list-style: none; margin: 0; padding: 0; }
.industries-list li { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding: 1.25rem 0; }
.industries-list a { font-size: 1.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; position: relative; display: inline-block; }
.industries-list a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--accent); transition: width 0.35s ease-out; }
.industries-list a:hover { color: var(--accent); }
.industries-list a:hover::after { width: 100%; }
.arrow-circle { width: 36px; height: 36px; border: 1px solid var(--text); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.875rem; flex-shrink: 0; }

/* Platforms we support */
.platforms-subtitle { color: var(--text-muted); font-size: 1rem; margin: 0 0 2rem; }
.platforms-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.platforms-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.platforms-icon { aspect-ratio: 1; padding: 1rem; border: 1px solid var(--border); border-radius: 14px; background: #f8f8f8; display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; }
.platforms-icon:hover { background: #fff; border-color: var(--accent); }
.platforms-icon img { width: 100%; height: 100%; object-fit: contain; }
.platforms-icon-dark img { filter: brightness(0); }
.platforms-icon-sm img { max-width: 70%; max-height: 70%; }
.platforms-icon-lg img { max-width: 120%; max-height: 120%; }
.platforms-copy { min-width: 0; }
.platforms-desc { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin: 1.5rem 0 1.25rem; }
.platforms-list { list-style: none; margin: 0; padding: 0; font-size: 0.9375rem; color: var(--text); }
.platforms-list li { position: relative; padding-left: 1.25rem; margin-bottom: 0.5rem; }
.platforms-list li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* Custom code benefit */
.custom-code-benefit { padding-top: 2rem; padding-bottom: 2rem; }
.custom-code-heading { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 1rem; max-width: 36rem; line-height: 1.3; }
.custom-code-desc { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin: 0; max-width: 32rem; }

/* Integrations – text left, small visual right */
.integrations-layout { display: grid; grid-template-columns: 1fr auto; gap: 2.5rem; align-items: start; }
.integrations-content { min-width: 0; }
.integrations-desc { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin: 0; max-width: 28rem; }
.integrations-visual { flex-shrink: 0; max-width: 400px; }
.integrations-image { width: 100%; max-width: 100%; height: auto; display: block; border-radius: 4px; }

/* Footer – white, content-width divider, one logo (top only) */
.site-footer { background: #fff; color: var(--text); margin-top: 4rem; padding: 0; }
.footer-border-wrap { width: 100%; }
.footer-border-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; border-top: 1px solid var(--border); }
.footer-main { padding: clamp(2rem, 4vw, 2.75rem) 1.5rem; }
.footer-main-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start; }
.footer-brand { max-width: 320px; }
.footer-logo-link { display: inline-block; margin-bottom: 1.25rem; }
.footer-logo-img { height: 56px; width: auto; max-width: 240px; object-fit: contain; filter: brightness(0); }
.footer-tagline { font-size: 1rem; color: var(--text-muted); line-height: 1.6; margin: 0 0 1.75rem; }
.footer-cta-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn-footer-secondary { background: #fff; color: var(--text); border: 1px solid var(--border); padding: 0.6rem 1.25rem; border-radius: 0; font-weight: 500; font-size: 0.9375rem; text-decoration: none; display: inline-flex; align-items: center; transition: border-color 0.2s, color 0.2s, background 0.2s; }
.btn-footer-secondary:hover { border-color: var(--accent); color: var(--accent); background: #fef2f2; }
.footer-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-col-title { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 1.25rem; color: var(--text); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { font-size: 0.9375rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { padding: 1rem 1.5rem; background: #fff; }
.footer-bottom-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom-left { display: flex; align-items: center; flex-wrap: wrap; gap: 1.25rem; align-content: center; }
.footer-copy { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.footer-social { display: flex; gap: 1.25rem; }
.footer-social a { font-size: 0.875rem; color: var(--text-muted); }
.footer-social a:hover { color: var(--accent); }
.footer-badges { display: flex; gap: 0.75rem; font-size: 0.75rem; color: var(--text-muted); }
.footer-badge { padding: 0.3rem 0.6rem; border: 1px solid var(--border); border-radius: 4px; }
.footer-need-help { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.01em; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-need-help:hover { color: var(--accent); }
.footer-need-help-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.footer-need-help-text { border-bottom: 1px solid transparent; padding-bottom: 0.15rem; transition: border-color 0.2s; }
.footer-need-help:hover .footer-need-help-text { border-bottom-color: var(--accent); }

/* Get in touch page – two-column layout like reference */
.contact-page-wrap { padding-top: calc(var(--header-height) + 2rem); min-height: 100vh; }
.contact-page { padding-bottom: 4rem; }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin: 0; padding: 0; }
.contact-page-info { max-width: 28rem; }
.contact-page-heading { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 1rem; color: var(--text); }
.contact-page-desc { font-size: 1.125rem; color: var(--text-muted); line-height: 1.6; margin: 0 0 2rem; }
.contact-page-contacts-title { font-size: 1rem; font-weight: 700; margin: 0 0 0.75rem; color: var(--text); }
.contact-page-contacts { font-size: 0.9375rem; color: var(--text-muted); }
.contact-page-contacts a { color: #2563eb; text-decoration: underline; }
.contact-page-contacts a:hover { color: var(--accent); }
.contact-email { margin: 0 0 0.35rem; }
.contact-phones { margin: 0; }
.contact-sep { margin: 0 0.5rem; color: var(--text-muted); }
.contact-form { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1rem; }
.contact-label { font-size: 0.9375rem; font-weight: 500; color: var(--text); margin-bottom: 0.25rem; display: block; }
.contact-label .required { color: var(--accent); }
.contact-input, .contact-textarea { width: 100%; padding: 0.75rem 1rem; font-family: var(--font); font-size: 1rem; border: 1px solid var(--border); border-radius: 0; background: #fff; color: var(--text); box-sizing: border-box; }
.contact-input:focus, .contact-textarea:focus { outline: none; border-color: var(--text); }
.contact-textarea { resize: vertical; min-height: 120px; }
.contact-phone-row { display: flex; gap: 0.5rem; }
.contact-country { padding: 0.75rem 1rem; font-family: var(--font); font-size: 1rem; border: 1px solid var(--border); background: #fff; color: var(--text); min-width: 100px; }
.contact-input-phone { flex: 1; }
.contact-upload { display: flex; align-items: center; gap: 0.5rem; padding: 1rem; border: 1px dashed var(--border); background: #fafafa; margin: 0.5rem 0 1rem; font-size: 0.9375rem; color: var(--text-muted); cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.contact-upload:hover { border-color: var(--text-muted); }
.contact-upload-dragover { border-color: var(--accent); background: #fef2f2; }
.contact-upload-has-file { border-color: var(--accent); background: #fef2f2; }
.contact-upload-icon { font-size: 1.125rem; }
.contact-upload-browse { background: none; border: none; padding: 0; font-family: var(--font); font-size: inherit; color: #2563eb; text-decoration: underline; cursor: pointer; }
.contact-upload-browse:hover { color: var(--accent); }
.contact-checkbox-wrap { display: flex; align-items: flex-start; gap: 0.75rem; margin: 0 0 1.5rem; font-size: 0.875rem; color: var(--text-muted); cursor: pointer; }
.contact-checkbox { margin-top: 0.25rem; flex-shrink: 0; }
.contact-checkbox-wrap a { color: #2563eb; text-decoration: underline; }
.contact-checkbox-wrap a:hover { color: var(--accent); }
.contact-submit { align-self: flex-start; }
.contact-recaptcha { font-size: 0.75rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.contact-recaptcha a { color: #2563eb; text-decoration: underline; }
.contact-recaptcha a:hover { color: var(--accent); }
.contact-form-status { font-size: 0.9375rem; margin-bottom: 1rem; min-height: 1.5em; }
.contact-form-status-success { color: #0d9488; }
.contact-form-status-error { color: var(--accent); }
@media (max-width: 900px) {
  .contact-page-wrap { padding-top: calc(var(--header-height) + 0.75rem); }
  .contact-page-grid { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .contact-page-info { order: 1; }
  .contact-page-form-wrap { order: 2; }
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: repeat(3, 1fr); }
  .story-card:nth-child(4n) { border-right: 1px solid var(--border); }
  .story-card:nth-child(3n) { border-right: none; }
  .story-card:nth-last-child(-n+4) { border-bottom: 1px solid var(--border); }
  .story-card:nth-last-child(-n+3) { border-bottom: none; }
  .footer-main-inner { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: repeat(2, 1fr); }
  .stages-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-media { overflow: hidden; outline: none !important; border: none !important; box-shadow: none !important; }
  .hero-media:focus, .hero-media:focus-visible { outline: none !important; }
  .hero-media.has-video .hero-video-overlay { display: block !important; }
  .hero-video { pointer-events: none; touch-action: none; outline: none !important; border: none !important; box-shadow: none !important; background: #000; -webkit-appearance: none; appearance: none; user-select: none; -webkit-user-select: none; -webkit-touch-callout: none; }
  .hero-video:focus, .hero-video:focus-visible { outline: none !important; border: none !important; box-shadow: none !important; }
  .hero-video::-webkit-media-controls { display: none !important; }
  .hero-video::-webkit-media-controls-enclosure { display: none !important; }
  .hero-video::-webkit-media-controls-panel { display: none !important; }
  .hero-video::-webkit-media-controls-play-button { display: none !important; -webkit-appearance: none; }
  .hero-video::-webkit-media-controls-start-playback-button { display: none !important; -webkit-appearance: none; }
  .hero-video::-webkit-media-controls-timeline { display: none !important; }
  .hero-video::-webkit-media-controls-current-time-display { display: none !important; }
  .hero-video::-webkit-media-controls-time-remaining-display { display: none !important; }
  .hero-video::-webkit-media-controls-mute-button { display: none !important; }
  .hero-video::-webkit-media-controls-overlay-play-button { display: none !important; -webkit-appearance: none; }
  .experts-in-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; min-width: 0; }
  .experts-in-text { min-width: 0; }
  .experts-in-icons { flex-wrap: wrap; justify-content: flex-start; gap: 0.75rem; min-width: 0; }
  main { overflow-x: hidden; }
  .nav-main, .header-right .lang-dropdown { display: none; }
  .nav-toggle { display: block; }
  .header-right .btn { display: none; }
  .header-inner { padding-left: 2rem; padding-right: 2rem; border-bottom: 1px solid var(--border); }
  .mobile-menu-inner { padding-left: 2rem; padding-right: 2rem; }
  .mobile-menu-header { border-bottom: 1px solid var(--border); }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .story-card:nth-child(4n) { border-right: 1px solid var(--border); }
  .story-card:nth-child(2n) { border-right: none; }
  .story-card:nth-last-child(-n+4) { border-bottom: 1px solid var(--border); }
  .story-card:nth-last-child(-n+2) { border-bottom: none; }
  .footer-main-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-columns { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; justify-content: center; }
  .footer-bottom-left { justify-content: center; }
  .footer-need-help { justify-content: center; }
  .footer-need-help-badge { order: -1; }
  .industries-list a { font-size: 1.25rem; }
  .platforms-layout { grid-template-columns: 1fr; min-width: 0; }
  .platforms-icons { grid-template-columns: repeat(4, 1fr); gap: 0.4rem; max-width: 100%; min-width: 0; }
  .platforms-icon { padding: 0.35rem; min-width: 0; }
  .platforms-icon-sm img { max-width: 55%; max-height: 55%; }
  .platforms-icon-lg img { max-width: 95%; max-height: 95%; }
  .platforms-desc { margin-top: 1.25rem; }
  .integrations-layout { grid-template-columns: 1fr; text-align: left; }
  .integrations-visual { max-width: 280px; margin-left: auto; margin-right: auto; }
  .integrations-content { text-align: left; }
  .integrations-desc { max-width: none; }
  .footer-main-inner { text-align: center; }
  .footer-brand { margin-left: auto; margin-right: auto; }
  .footer-cta-buttons { justify-content: center; }
  .footer-columns { justify-items: center; text-align: center; }
  .footer-col { text-align: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-dots { height: 40%; }
}
