/* 7R Network – Styles */

@import url('https://cdn-uicons.flaticon.com/2.1.0/uicons-outline-rounded/css/uicons-outline-rounded.css');
@import url('https://cdn-uicons.flaticon.com/2.1.0/uicons-brands/css/uicons-brands.css');

:root {
  --color-bg: #0a0e17;
  --color-bg-alt: #111827;
  --color-bg-card: #162132;
  --color-surface: #1e293b;
  --color-primary: #0066ff;
  --color-primary-hover: #0052cc;
  --color-accent: #00c2ff;
  --color-text: #edf4ff;
  --color-text-muted: #dbe7ff;
  --color-border: #2d3a52;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --container: 1140px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #fff;
}

.form-success {
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(134, 239, 172, 0.35);
  color: #dcfce7;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.10);
}

.form-error {
  background: rgba(248, 113, 113, 0.14);
  border: 1px solid rgba(248, 113, 113, 0.32);
  color: #fee2e2;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  text-align: center;
}

.share-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin: 1rem 0 0;
}

.share-strip span {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.share-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.share-chip:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.whatsapp-fab {
  position: fixed;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(18, 140, 126, 0.35);
}

.whatsapp-fab i {
  font-size: 1rem;
}

.whatsapp-fab:hover {
  transform: translateY(-1px);
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: #fff;
  color: #fff;
}

.btn-nav {
  background: var(--color-primary);
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.btn-nav:hover {
  background: var(--color-primary-hover);
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0px -3px 7px 7px #0000001f;
  /*background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(12px);*/
  /*border-bottom: 1px solid var(--color-border);*/
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  margin-inline: 14px;
  padding-inline: 12px;
}

.logo {
  display: flex;
  align-items: center;
  color: #fff;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

.footer-logo {
  height: 32px;
  width: auto;
  max-width: 160px;
  margin: 0 auto 1rem;
  display: block;
  opacity: 0.95;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 102, 255, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(0, 194, 255, 0.08) 0%, transparent 50%),
    var(--color-bg);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 23, 0.85) 0%,
    rgba(10, 14, 23, 0.6) 50%,
    rgba(10, 14, 23, 0.9) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 102, 255, 0.3);
  color: var(--color-accent);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.hero-text {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--color-bg-alt);
}

.section-alt {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.service-card,
.product-seo-card,
.info-card,
.faq-item,
.contact-form,
.highlight-box,
.cta-box,
.process-step,
.content-card,
.feature-card,
.stat-item {
  color: var(--color-text);
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.service-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 1rem;
  text-align: center;
  color: var(--color-text);
}

.service-card p,
.product-seo-card p,
.info-card p,
.faq-item p,
.highlight-box p,
.cta-box p,
.process-step p,
.stat-item .stat-label {
  color: var(--color-text-muted);
}

.highlight-box {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), rgba(0, 194, 255, 0.06));
  border: 1px solid rgba(0, 102, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.highlight-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.highlight-box p,
.content-card p,
.feature-card p,
.process-step p,
.stat-item .stat-label,
.product-seo-card p,
.info-card p,
.faq-item p {
  color: var(--color-text-muted);
}

/* Ubiquiti video showcase */
.ubiquiti-badge {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.video-showcase {
  max-width: 900px;
  margin: 0 auto;
}

.video-player-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.main-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.video-thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.video-thumb {
  background: var(--color-bg-card);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.85rem 0.75rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
  color: inherit;
  font-family: var(--font);
}

.video-thumb:hover {
  border-color: var(--color-primary);
  background: rgba(0, 102, 255, 0.08);
}

.video-thumb.active {
  border-color: var(--color-primary);
  background: rgba(0, 102, 255, 0.15);
}

.video-thumb-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.video-thumb-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.video-caption {
  margin-top: 1.25rem;
  text-align: center;
}

.video-caption h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.video-caption p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.video-credit {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Inline section videos */
.section-video,
.segment-video,
.card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.naas-layout {
  margin-bottom: 3rem;
}

.naas-media-wrap,
.install-media-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 16 / 9;
  margin-bottom: 2rem;
  background: #000;
}

.naas-media-wrap img,
.install-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.install-media-wrap {
  margin-bottom: 2rem;
}

.segment-visual {
  height: 320px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: #000;
}

.segment-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-image-wrap {
  height: 180px;
  overflow: hidden;
  margin: -2rem -2rem 1.25rem;
  background: #000;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-card-image {
  padding-top: 0;
  overflow: hidden;
}

.info-card-image h2,
.info-card-image .segment-lead,
.info-card-image p,
.info-card-image .benefits-list,
.info-card-image .segment-note {
  padding: 0 0.25rem;
}

/* Industry gallery */
.industry-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

#privat .btn {
  margin-top: 1.5rem;
}

.industry-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--color-border);
  display: block;
  transition: transform 0.2s, border-color 0.2s;
}

.industry-tile:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
}

.industry-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.industry-tile:hover img {
  transform: scale(1.05);
}

.industry-tile span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
}

/* Ubiquiti produkt SEO */
.product-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.product-seo-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.product-seo-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.product-seo-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.product-seo-highlight {
  grid-column: 1 / -1;
  border-color: rgba(0, 102, 255, 0.35);
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), var(--color-bg-card));
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--color-accent);
  font-size: 1.25rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Products */
.product-header {
  margin-bottom: 2rem;
}

.product-tag {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.product-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-subtitle {
  font-size: 1.15rem;
  color: var(--color-accent);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.two-col p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.pricing-note {
  background: var(--color-bg-card);
  border-left: 3px solid var(--color-primary);
  padding: 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1rem;
}

.pricing-note strong {
  display: block;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pricing-note p {
  font-size: 0.9rem;
  margin: 0;
}

.checklist h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.checklist ul {
  list-style: none;
}

.checklist li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

/* Steps */
.steps h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.step h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Tags */
.intro-text {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tags span {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.included-item {
  background: linear-gradient(135deg, var(--color-primary), #0044aa);
  color: #fff;
  padding: 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Segments */
.segment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.segment-reverse {
  direction: rtl;
}

.segment-reverse > * {
  direction: ltr;
}

.segment h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.segment-lead {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.segment p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.segment-note {
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.benefits-list {
  list-style: none;
  margin-top: 1rem;
}

.benefits-list li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.benefits-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.benefits-list.compact li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
}

.segment-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.info-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.why-experience,
.why-focus {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.why-experience h3,
.why-focus h3 {
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
}

.why-experience ul {
  list-style: none;
}

.why-experience li {
  padding: 0.5rem 0;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.why-experience li::before {
  content: '• ';
  color: var(--color-primary);
}

.focus-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.focus-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-muted);
}

.focus-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-lead {
  font-size: 1.2rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.contact-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Footer */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 2rem 0;
}

.footer-inner {
  text-align: center;
}

.footer p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* Responsive – tablet */
@media (max-width: 1100px) {
  .industry-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .video-thumb-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive – mobil + små tablets */
@media (max-width: 900px) {
  .two-col,
  .segment,
  .segment-cards,
  .why-grid,
  .contact-grid,
  .product-seo-grid {
    grid-template-columns: 1fr;
  }

  .product-seo-highlight {
    grid-column: auto;
  }

  .segment-reverse {
    direction: ltr;
  }

  .segment-visual {
    height: 200px;
    order: -1;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem;
    gap: 0.5rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
  }

  .btn-nav {
    text-align: center;
    padding: 0.85rem 1rem !important;
  }

  .hero {
    padding-top: 6rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 1rem 1.5rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .product-header h2 {
    font-size: 1.6rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero-video {
    opacity: 0.2;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-thumb-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-thumb {
    min-height: 56px;
    padding: 1rem 0.75rem;
  }

  .industry-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card img {
    height: 110px;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
    padding: 0.85rem 1rem;
  }

  .btn {
    padding: 0.9rem 1.5rem;
    min-height: 44px;
  }

  .logo-img {
    height: 32px;
    max-width: 150px;
  }

  .footer-logo {
    height: 28px;
  }
}

@media (max-width: 380px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .industry-gallery {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video,
  .section-video,
  .segment-video,
  .card-video {
    display: none;
  }

  .hero-overlay {
    background: var(--color-bg);
  }
}



/* _________________________________

  NEW HERO SECTION ANIMATION
  _________________________________ */
[data-hero] {
  --h-white:      #ffffff;
  --h-black:      #0a0a0a;
  --h-gray-1:     #f5f5f5;
  --h-gray-2:     #e8e8e8;
  --h-gray-3:     #999999;
  --h-gray-4:     #555555;
  --h-accent:     #0066ff;
  --h-accent-dim: rgba(0,102,255,0.08);
  --h-accent-mid: rgba(0,102,255,0.18);
  --h-ease-out:   cubic-bezier(0.16,1,0.3,1);
  --h-ease-io:    cubic-bezier(0.45,0,0.55,1);
}

[data-hero] {
  position: relative;
  background: var(--h-white);
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

[data-hero]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      600px circle at var(--mx, 50%) var(--my, 40%),
      rgba(0,102,255,0.07) 0%,
      transparent 70%
  );
  pointer-events: none;
  z-index: 1;
  transition: background 0.05s linear;
}

#h-topo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

[data-hero] .hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

[data-hero] .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--h-accent);
  background: var(--h-accent-dim);
  border: 1px solid rgba(0,102,255,0.2);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(10px);
  animation: h-rise 0.6s var(--h-ease-out) 0.1s forwards;
}

[data-hero] .hero-badge-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--h-accent);
  animation: h-pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

[data-hero] h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--h-black);
  font-style: normal;
  margin: 0 0 1.5rem;
  overflow-wrap: anywhere;
  min-width: 0;
  opacity: 0;
  transform: translateY(16px);
  animation: h-rise 0.7s var(--h-ease-out) 0.22s forwards;
}

[data-hero] h1 .h-word {
  display: inline-block;
}

[data-hero] h1 .h-accent-word {
  position: relative;
  display: inline-block;
  color: var(--h-black);
}

[data-hero] h1 .h-accent-word::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 3px;
  width: 0%;
  background: var(--h-accent);
  border-radius: 2px;
  animation: h-underline 0.5s var(--h-ease-out) 0.95s forwards;
}

[data-hero] .hero-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--h-gray-4);
  margin: 0 0 0.75rem;
  max-width: 56ch;
  opacity: 0;
  transform: translateY(12px);
  animation: h-rise 0.6s var(--h-ease-out) 0.38s forwards;
}


[data-hero] .hero-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--h-gray-3);
  margin: 0 0 2.5rem;
  max-width: 54ch;
  opacity: 0;
  transform: translateY(12px);
  animation: h-rise 0.6s var(--h-ease-out) 0.48s forwards;
}



[data-hero] .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  animation: h-rise 0.6s var(--h-ease-out) 0.6s forwards;
}

[data-hero] .h-stats {
  display: flex;
  gap: 40px;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--h-gray-2);
  opacity: 0;
  animation: h-fade 0.8s var(--h-ease-out) 0.9s forwards;
}


[data-hero] .h-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--h-black);
  line-height: 1;
  display: block;
}


[data-hero] .h-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--h-gray-3);
  margin-top: 4px;
  display: block;
}

[data-hero] .h-float-tags {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

[data-hero] .h-ftag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--h-gray-4);
  background: var(--h-white);
  border: 1px solid var(--h-gray-2);
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  animation: h-float var(--dur, 6s) var(--h-ease-io) var(--del, 0s) infinite alternate;
  opacity: 0;
  animation-fill-mode: forwards;
}


[data-hero] .h-ftag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dot-col, #22c55e);
  flex-shrink: 0;
}


[data-hero] .h-ftag:nth-child(1) { top: 14%; right: 8%;  --dur:7s; --del:0.8s; }
[data-hero] .h-ftag:nth-child(2) { top: 38%; right: 3%;  --dur:8s; --del:2.1s; }
[data-hero] .h-ftag:nth-child(3) { top: 62%; right: 11%; --dur:6s; --del:1.3s; }
[data-hero] .h-ftag:nth-child(4) { top: 24%; right: 22%; --dur:9s; --del:0.4s; }
[data-hero] .h-ftag:nth-child(5) { top: 78%; right: 6%;  --dur:7s; --del:1.8s; }

@keyframes h-rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes h-fade {
  to { opacity: 1; }
}
@keyframes h-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
@keyframes h-underline {
  to { width: 100%; }
}
@keyframes h-float {
  from { transform: translateY(0px);   opacity: 0.85; }
  to { transform: translateY(-10px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  [data-hero] .hero-badge,
  [data-hero] h1,
  [data-hero] .hero-lead,
  [data-hero] .hero-text,
  [data-hero] .hero-actions,
  [data-hero] .h-stats {
      opacity: 1;
      transform: none;
      animation: none;
  }

  [data-hero] h1 .h-accent-word::after { width: 100%; animation: none; }
  [data-hero] .hero-badge-pulse { animation: none; }
  [data-hero] .h-ftag { animation: none; opacity: 1; }
  [data-hero]::before { display: none; }
}

@media (max-width: 768px) {
  [data-hero] .h-float-tags { display: none; }
  [data-hero] .h-stats      { gap: 24px; flex-wrap: wrap; }
  [data-hero]::before {
      background: radial-gradient(
      380px circle at var(--mx, 50%) var(--my, 40%),
      rgba(0,102,255,0.07) 0%,
      transparent 70%
      );
  }
}


@media (max-width: 480px) {
  [data-hero] h1 { letter-spacing: -0.03em; }
  [data-hero] .hero-actions { flex-direction: column; align-items: flex-start; }
}