/* ═══════════════════════════════════════════════════════════════════════════
   MAACK-IT — Main Stylesheet
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────────────────────── */
:root {
  --color-primary:     #1a3a6e;
  --color-primary-dk:  #0d2450;
  --color-primary-lt:  #e8eef8;
  --color-accent:      #0ea5e9;
  --color-accent-dk:   #0284c7;
  --color-highlight:   #f97316;
  --color-text:        #1e293b;
  --color-text-muted:  #64748b;
  --color-border:      #e2e8f0;
  --color-bg:          #ffffff;
  --color-bg-alt:      #f8fafc;
  --color-success:     #16a34a;
  --color-error:       #dc2626;
  --color-warning:     #d97706;

  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.10), 0 4px 10px rgba(0,0,0,.06);
  --shadow-xl:  0 20px 50px rgba(0,0,0,.12);

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --transition: 220ms ease;

  --container-max: 1200px;
  --container-pad: clamp(1rem, 4vw, 2rem);
}

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-dk); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { max-width: 70ch; }

/* ─── Skip Link (accessibility) ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  font-size: .875rem;
}
.skip-link:focus { top: 0; }

/* ─── Container ─────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-dk);
  border-color: var(--color-accent-dk);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--color-primary-lt);
  border-color: var(--color-primary-lt);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* ─── Section helpers ────────────────────────────────────────────────────── */
.section { padding-block: clamp(3rem, 8vw, 6rem); }
.section-alt { background: var(--color-bg-alt); }
.section-dark { background: var(--color-primary); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.8); }

.section-header { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-header .label {
  display: inline-block;
  background: var(--color-primary-lt);
  color: var(--color-accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.section-header p { margin-inline: auto; color: var(--color-text-muted); font-size: 1.05rem; }

/* ─── Top bar ────────────────────────────────────────────────────────────── */
.topbar {
  background: var(--color-primary);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding-block: 6px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar a {
  color: rgba(255,255,255,.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* ─── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 70px;
}

/* Logo */
.logo, .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon svg { width: 44px; height: 44px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -.03em;
}
.logo-name strong { color: var(--color-accent); }
.logo-tag { font-size: .65rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: .1em; }

/* Nav */
.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: .25rem; list-style: none; }
.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--color-accent); background: var(--color-primary-lt); }
.nav-link.active { color: var(--color-accent); }

.header-cta { margin-left: auto; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  background: #fff;
  border-bottom: 2px solid var(--color-border);
  padding: 1rem var(--container-pad);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 1rem; }
.mobile-nav a {
  display: block;
  padding: 10px 14px;
  color: var(--color-text);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-nav a:hover { background: var(--color-primary-lt); color: var(--color-accent); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0d2450 60%, #071630 100%);
  color: #fff;
  padding-block: clamp(4rem, 12vw, 8rem);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,.2);
  border: 1px solid rgba(14,165,233,.4);
  color: var(--color-accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.hero h1 span { color: var(--color-accent); }

.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}

.hero-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-graphic {
  position: relative;
  width: 340px;
  height: 340px;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(14,165,233,.3);
}
.hero-circle:nth-child(1) { inset: 0; }
.hero-circle:nth-child(2) { inset: 30px; border-color: rgba(14,165,233,.2); }
.hero-circle:nth-child(3) { inset: 60px; border-color: rgba(14,165,233,.15); }
.hero-center-icon {
  position: absolute;
  inset: 80px;
  background: rgba(14,165,233,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-center-icon svg { width: 80px; height: 80px; fill: var(--color-accent); opacity: .9; }

/* Floating cards on hero */
.hero-card {
  position: absolute;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: .8rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hero-card svg { width: 16px; height: 16px; fill: var(--color-accent); flex-shrink: 0; }
.hero-card-1 { top: 20px;  right: -20px; }
.hero-card-2 { bottom: 60px; left: -20px; }
.hero-card-3 { top: 50%;   right: -40px; transform: translateY(-50%); }

/* ─── Trust bar ──────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding-block: 1rem;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: .85rem;
  font-weight: 600;
}
.trust-item svg { width: 18px; height: 18px; fill: var(--color-accent); flex-shrink: 0; }

/* ─── Services grid ──────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--color-primary-lt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--color-accent); }
.service-icon svg { width: 26px; height: 26px; fill: var(--color-accent); transition: fill var(--transition); }
.service-card:hover .service-icon svg { fill: #fff; }

.service-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.service-card p { color: var(--color-text-muted); font-size: .9rem; line-height: 1.6; }
.service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: gap var(--transition);
}
.service-card:hover .read-more { gap: 8px; }
.service-card .read-more svg { width: 14px; height: 14px; fill: currentColor; }

/* ─── About section ──────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-img-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-primary-lt), #dbe8f8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-placeholder-svg { width: 60%; opacity: .4; }

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-num { font-size: 2.5rem; font-weight: 900; color: var(--color-accent); display: block; line-height: 1; }
.about-badge-txt { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.75); }

.about-content p { color: var(--color-text-muted); margin-bottom: 1rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.about-feature-icon {
  width: 32px;
  height: 32px;
  background: var(--color-primary-lt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon svg { width: 16px; height: 16px; fill: var(--color-accent); }
.about-feature-text strong { display: block; font-size: .85rem; color: var(--color-primary); }
.about-feature-text span { font-size: .78rem; color: var(--color-text-muted); }

/* ─── Technologies ───────────────────────────────────────────────────────── */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.tech-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tech-item:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.tech-item svg { width: 20px; height: 20px; fill: var(--color-accent); }

/* ─── Stats counter ──────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.stat-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
}
.stat-label {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .5rem;
  display: block;
}
.stat-desc {
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  margin-top: .25rem;
}

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-quote {
  color: var(--color-text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--color-primary-lt);
  position: absolute;
  top: -1.5rem;
  left: -.5rem;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-author { font-weight: 700; color: var(--color-primary); }
.testimonial-company { font-size: .85rem; color: var(--color-text-muted); }

/* ─── CTA section ────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dk) 100%);
  color: #fff;
  text-align: center;
  padding-block: clamp(3rem, 8vw, 5rem);
}
.cta-section h2 { color: #fff; margin-bottom: .75rem; }
.cta-section p { color: rgba(255,255,255,.85); margin-inline: auto; margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ─── Contact page ───────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.contact-info-card h3 { color: #fff; margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(14,165,233,.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; fill: var(--color-accent); }
.contact-detail strong { display: block; font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.contact-detail a { color: #fff; font-weight: 600; }
.contact-detail a:hover { color: var(--color-accent); }
.contact-detail span { color: #fff; font-weight: 600; }

.contact-hours { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.15); }
.contact-hours h4 { color: rgba(255,255,255,.7); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .9rem; padding: 4px 0; }
.hours-row span:first-child { color: rgba(255,255,255,.7); }
.hours-row span:last-child { color: #fff; font-weight: 600; }

/* ─── Forms ──────────────────────────────────────────────────────────────── */
.form-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}
.form-group label .req { color: var(--color-highlight); margin-left: 3px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: .95rem;
  font-family: inherit;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(14,165,233,.1);
}
.form-control::placeholder { color: #a0aec0; }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }

/* ─── Page hero (inner pages) ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary), #0d2450);
  color: #fff;
  padding-block: clamp(2.5rem, 7vw, 5rem);
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-inline: auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255,255,255,.4); }

/* ─── Services detail page ───────────────────────────────────────────────── */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--color-border);
}
.service-detail:last-child { border-bottom: none; padding-bottom: 0; }
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }
.service-detail-visual {
  background: var(--color-primary-lt);
  border-radius: var(--radius-xl);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail-visual svg { width: 50%; height: 50%; fill: var(--color-primary); opacity: .3; }
.service-detail-content h2 { margin-bottom: 1rem; }
.service-detail-content p { color: var(--color-text-muted); margin-bottom: 1rem; }
.service-detail-content ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.service-detail-content li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: .95rem;
}
.service-detail-content li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--color-primary-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230ea5e9' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ─── Om os page ─────────────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--color-accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.value-icon svg { width: 28px; height: 28px; fill: var(--color-accent); }
.value-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.value-card p { font-size: .85rem; color: var(--color-text-muted); max-width: none; }

/* ─── Team ───────────────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--color-primary-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar-placeholder { font-size: 2rem; font-weight: 800; color: var(--color-primary); }
.team-card h3 { font-size: 1rem; margin-bottom: .25rem; }
.team-card .team-title { font-size: .85rem; color: var(--color-accent); font-weight: 600; margin-bottom: .75rem; }
.team-card .team-contact { display: flex; flex-direction: column; gap: .25rem; }
.team-card .team-contact a { font-size: .8rem; color: var(--color-text-muted); }
.team-card .team-contact a:hover { color: var(--color-accent); }

/* ─── Alerts ─────────────────────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-size: .9rem;
  border-left: 4px solid;
}
.alert-success { background: #f0fdf4; color: #166534; border-color: var(--color-success); }
.alert-error   { background: #fef2f2; color: #991b1b; border-color: var(--color-error); }
.alert-warning { background: #fffbeb; color: #92400e; border-color: var(--color-warning); }
.alert-info    { background: #eff6ff; color: #1e40af; border-color: var(--color-accent); }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: #0a1628;
  color: rgba(255,255,255,.7);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.5); margin-top: .75rem; line-height: 1.6; }
.footer-col h3 {
  color: #fff;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .4rem; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--color-accent); }
.footer-contact-list { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; }
.footer-contact-list svg { width: 16px; height: 16px; fill: var(--color-accent); flex-shrink: 0; margin-top: 3px; }
.footer-contact-list a { color: rgba(255,255,255,.8); }
.footer-contact-list a:hover { color: #fff; }
.footer-contact-list span { color: rgba(255,255,255,.8); }

.social-links { display: flex; gap: .5rem; margin-top: 1rem; }
.social-links a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.social-links a:hover { background: var(--color-accent); }
.social-links svg { width: 16px; height: 16px; fill: rgba(255,255,255,.7); }
.social-links a:hover svg { fill: #fff; }

.footer-logo { text-decoration: none; }
.footer-logo .logo-name { color: #fff; }
.footer-logo .logo-name strong { color: var(--color-accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.25rem;
  font-size: .8rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { max-width: none; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) { direction: ltr; }
  .service-detail-visual { max-width: 300px; aspect-ratio: 1; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.5rem; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .topbar-right { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ─── Animations / scroll reveal ────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ─── Cookie bar ─────────────────────────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: rgba(255,255,255,.85);
  padding: 1rem var(--container-pad);
  z-index: 1000;
  display: none;
}
.cookie-bar.show { display: flex; }
.cookie-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
  flex-wrap: wrap;
}
.cookie-bar p { font-size: .85rem; max-width: 70ch; margin: 0; color: rgba(255,255,255,.8); }
.cookie-bar a { color: var(--color-accent); }
.cookie-bar-actions { display: flex; gap: .5rem; flex-shrink: 0; }
