/* ============================================================
   KAMERARENDSZER BUDAPEST — Főstílus
   ============================================================ */

:root {
  --primary: #1a3a6b;
  --primary-dark: #0f2347;
  --secondary: #e8390e;
  --accent: #2563eb;
  --light: #f1f5f9;
  --white: #ffffff;
  --dark: #0f172a;
  --text: #334155;
  --text-light: #64748b;
  --border: #e2e8f0;
  --success: #16a34a;
  --shadow: 0 4px 24px rgba(26,58,107,0.10);
  --shadow-lg: 0 8px 40px rgba(26,58,107,0.16);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: 0.22s ease;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary); }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  color: var(--primary-dark);
  line-height: 1.22;
  font-weight: 700;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.15rem; color: var(--text-light); }
.section-tag {
  display: inline-block;
  background: rgba(37,99,235,0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title { margin-bottom: 0.6rem; }
.section-desc { color: var(--text-light); font-size: 1.05rem; margin-bottom: 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-primary:hover {
  background: #c42d0a;
  border-color: #c42d0a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,57,14,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: var(--white);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.9rem; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar a { color: rgba(255,255,255,0.75); }
.topbar a:hover { color: var(--white); }
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; fill: var(--white); }
.logo-text { line-height: 1.15; }
.logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-dark);
  display: block;
}
.logo-sub {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 13px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary);
  background: var(--light);
}
.nav-cta { margin-left: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1e4d8c 100%);
  color: var(--white);
  padding: 80px 0 70px;
  position: relative;
  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 .container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.9);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.82); margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat-item { text-align: center; }
.hero-stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.hero-card h3 { color: var(--primary-dark); margin-bottom: 20px; font-size: 1.15rem; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 0.78rem; color: var(--text-light); margin-top: 8px; text-align: center; }

/* ---- SECTION SPACING ---- */
.section { padding: 72px 0; }
.section--light { background: var(--light); }
.section--dark { background: var(--primary-dark); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .section-desc { color: rgba(255,255,255,0.72); }
.section-header { text-align: center; margin-bottom: 52px; }

/* ---- CARDS ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.cards-grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards-grid--2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1.5px solid var(--border);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,0.2);
}
.card-icon {
  width: 52px; height: 52px;
  background: rgba(26,58,107,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }
.card-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover { color: var(--secondary); gap: 10px; }

/* ---- SERVICE CARDS ---- */
.service-card {
  display: flex;
  flex-direction: column;
}
.service-card .card-icon { background: rgba(232,57,14,0.1); }

/* ---- STATS STRIP ---- */
.stats-strip { background: var(--primary); padding: 48px 0; }
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-item .stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- WHY US / USP ---- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
}
.usp-check {
  width: 32px; height: 32px;
  background: rgba(22,163,74,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--success);
  font-size: 1rem;
}
.usp-item h4 { margin-bottom: 4px; font-size: 0.98rem; }
.usp-item p { font-size: 0.875rem; color: var(--text-light); }

/* ---- PRICE TABLE ---- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(37,99,235,0.18);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-title { font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1;
}
.price-amount span { font-size: 1rem; font-weight: 600; }
.price-note { font-size: 0.82rem; color: var(--text-light); margin-bottom: 24px; }
.price-features { margin-bottom: 28px; }
.price-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--text); margin-bottom: 16px; font-style: italic; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.92rem; color: var(--primary-dark); }
.author-location { font-size: 0.8rem; color: var(--text-light); }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--secondary) 0%, #c42d0a 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.88); margin-bottom: 28px; font-size: 1.08rem; }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.7); }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--light);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after { content: '›'; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li:last-child { color: var(--primary-dark); font-weight: 600; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 60px 0 50px;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.08rem; max-width: 640px; }

/* ---- CONTENT LAYOUT ---- */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  margin-bottom: 20px;
}
.sidebar-card h4 { margin-bottom: 14px; color: var(--primary-dark); }
.sidebar-phone {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}
.sidebar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li::before { content: '✓'; color: var(--success); font-weight: 700; }

/* ---- TABLE ---- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
th {
  background: var(--primary);
  color: var(--white);
  padding: 13px 16px;
  text-align: left;
  font-weight: 700;
}
td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
tr:hover td { background: var(--light); }
tr:last-child td { border-bottom: none; }

/* ---- PROCESS STEPS ---- */
.steps { counter-reset: step; }
.step-item {
  display: flex;
  gap: 22px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.step-num {
  counter-increment: step;
  width: 46px; height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-content h3 { margin-bottom: 6px; }
.step-content p { color: var(--text-light); font-size: 0.95rem; }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--light); }
.faq-icon {
  width: 22px; height: 22px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--primary);
  font-weight: 700;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ---- BLOG GRID ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.blog-tag {
  background: rgba(37,99,235,0.1);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--primary-dark); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 0.9rem; color: var(--text-light); flex: 1; }
.blog-more {
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---- CONTACT SECTION ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(26,58,107,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-label { font-size: 0.8rem; color: var(--text-light); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-value { font-weight: 700; color: var(--primary-dark); font-size: 1.0rem; }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  padding: 20px;
}

/* ---- GDPR / CONTENT PAGE ---- */
.content-body h2 { margin-top: 42px; margin-bottom: 14px; font-size: 1.5rem; }
.content-body h3 { margin-top: 30px; margin-bottom: 10px; }
.content-body ul, .content-body ol { padding-left: 22px; margin-bottom: 16px; }
.content-body ul li { list-style: disc; margin-bottom: 6px; }
.content-body ol li { list-style: decimal; margin-bottom: 6px; }
.content-body p { margin-bottom: 16px; }
.info-box {
  background: rgba(37,99,235,0.07);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.info-box.warning { background: rgba(232,57,14,0.07); border-color: var(--secondary); }
.info-box.success { background: rgba(22,163,74,0.07); border-color: var(--success); }
.info-box p { margin: 0; }

/* ---- REFERENCE ---- */
.reference-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.reference-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}
.reference-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.reference-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.reference-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 14px; }
.reference-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  background: var(--light);
  color: var(--text);
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
}

/* ---- TEAM ---- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}
.team-avatar {
  width: 80px; height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--text-light); margin-bottom: 10px; }
.team-cert {
  font-size: 0.78rem;
  background: rgba(22,163,74,0.1);
  color: var(--success);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-about .logo { margin-bottom: 16px; }
.footer-about p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-contact-icon { font-size: 1rem; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }
.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 5px 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* ---- FLOATING PHONE ---- */
.floating-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--secondary);
  color: var(--white);
  border-radius: 100px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(232,57,14,0.45);
  text-decoration: none;
  transition: all var(--transition);
  animation: float-bounce 3s ease-in-out infinite;
}
.floating-phone:hover {
  color: var(--white);
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(232,57,14,0.55);
}
@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ---- ARTICLE ---- */
.article-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 56px 0 48px;
}
.article-hero h1 { color: var(--white); margin-bottom: 16px; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.article-body { max-width: 780px; }
.article-body h2 { margin-top: 48px; margin-bottom: 16px; }
.article-body h3 { margin-top: 34px; margin-bottom: 12px; }
.article-body p { margin-bottom: 18px; line-height: 1.8; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 18px; }
.article-body ul li { list-style: disc; margin-bottom: 8px; line-height: 1.7; }
.article-body ol li { list-style: decimal; margin-bottom: 8px; line-height: 1.7; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.1rem; padding: 12px 20px; }
  .nav-cta { margin-left: 0; margin-top: 10px; }
  .hamburger { display: flex; z-index: 1000; position: relative; }
  .hero { padding: 50px 0 40px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .section { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .cards-grid--2 { grid-template-columns: 1fr; }
  .topbar-right { display: none; }
  .floating-phone { padding: 11px 16px; font-size: 0.88rem; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .stats-strip .container { grid-template-columns: 1fr 1fr; }
}
