/*
Theme Name: Lyon Nijkamp
Theme URI: https://lyonnijkamp.nl
Author: Lyon Nijkamp
Author URI: https://lyonnijkamp.nl
Description: Professioneel en vriendelijk thema voor Lyon Nijkamp - computerreparatie, laptop reparatie, telefoon reparatie en verkoop van refurbished & nieuwe producten in Twente.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lyonnijkamp
Tags: one-column, two-columns, custom-colors, custom-menu, featured-images, footer-widgets, responsive-layout
*/

/* =====================
   CSS CUSTOM PROPERTIES
   ===================== */
:root {
  --primary:       #FF6B35;
  --primary-dark:  #E5541E;
  --primary-light: #FF8C5A;
  --secondary:     #2EC4B6;
  --secondary-dark:#1FA99E;
  --accent:        #FFD166;
  --dark:          #1A1A2E;
  --dark-soft:     #2D2D44;
  --text:          #333344;
  --text-light:    #666677;
  --bg:            #FFFFFF;
  --bg-soft:       #F8F8FC;
  --bg-card:       #FFFFFF;
  --border:        #E8E8F0;
  --shadow-sm:     0 2px 8px rgba(26,26,46,0.08);
  --shadow-md:     0 8px 30px rgba(26,26,46,0.12);
  --shadow-lg:     0 20px 60px rgba(26,26,46,0.18);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --font-head:     'Nunito', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 800;
}

/* =====================
   UTILITY CLASSES
   ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255,107,53,0.1);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 48px;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,53,0.45);
}
.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(46,196,182,0.35);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--primary-dark);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* =====================
   HEADER / NAV
   ===================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
}
.logo-tagline {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary);
  background: rgba(255,107,53,0.08);
}
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.header-phone .phone-icon {
  width: 32px;
  height: 32px;
  background: rgba(46,196,182,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 0.9rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #FFF8F5 0%, #F0FFFE 50%, #FFFBF0 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46,196,182,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(46,196,182,0.1));
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 40px;
  padding: 6px 16px 6px 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.hero-badge .badge-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-title .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(255,209,102,0.4);
  z-index: -1;
  border-radius: 4px;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 380px;
  height: 420px;
}
.hero-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card--main {
  top: 0; left: 0; right: 0;
  z-index: 3;
  background: linear-gradient(135deg, var(--dark), var(--dark-soft));
  color: white;
}
.hero-card--float1 {
  bottom: 20px;
  right: -20px;
  width: 180px;
  z-index: 4;
  text-align: center;
  border: 2px solid rgba(255,107,53,0.2);
}
.hero-card--float2 {
  bottom: 0;
  left: -20px;
  width: 160px;
  z-index: 4;
  border: 2px solid rgba(46,196,182,0.2);
}
.repair-icon { font-size: 2.5rem; margin-bottom: 12px; }
.repair-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 8px;
}
.repair-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.float-card-icon { font-size: 2rem; margin-bottom: 8px; }
.float-card-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
}
.float-card-value {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}
.float-card-sub { font-size: 0.75rem; color: var(--text-light); }

/* =====================
   USP STRIP
   ===================== */
.usp-strip {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 20px 0;
}
.usp-strip-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
}
.usp-item .usp-icon { font-size: 1.2rem; }

/* =====================
   SERVICES SECTION
   ===================== */
.services { padding: 100px 0; background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: height var(--transition);
}
.service-card:nth-child(1)::before { background: var(--primary); }
.service-card:nth-child(2)::before { background: var(--secondary); }
.service-card:nth-child(3)::before { background: var(--accent); }
.service-card:nth-child(4)::before { background: #A78BFA; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { height: 6px; }
.service-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.service-card:nth-child(1) .service-icon-wrap { background: rgba(255,107,53,0.1); }
.service-card:nth-child(2) .service-icon-wrap { background: rgba(46,196,182,0.1); }
.service-card:nth-child(3) .service-icon-wrap { background: rgba(255,209,102,0.2); }
.service-card:nth-child(4) .service-icon-wrap { background: rgba(167,139,250,0.15); }
.service-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
}
.service-feature::before {
  content: '✓';
  width: 18px; height: 18px;
  background: rgba(46,196,182,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--secondary);
  flex-shrink: 0;
}
.service-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* =====================
   WHY US SECTION
   ===================== */
.why-us {
  padding: 100px 0;
  background: var(--bg-soft);
  overflow: hidden;
}
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card:nth-child(2) { margin-top: 24px; }
.why-card:nth-child(4) { margin-top: 24px; }
.why-card-icon { font-size: 2rem; margin-bottom: 12px; }
.why-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.why-card-text { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
.why-content .section-desc { margin: 0 0 40px; text-align: left; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255,107,53,0.25);
}
.why-item-text h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.why-item-text p { font-size: 0.85rem; color: var(--text-light); }

/* =====================
   PRODUCTS SECTION
   ===================== */
.products { padding: 100px 0; background: var(--bg); }
.products-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,107,53,0.2);
}
.product-image {
  height: 160px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.badge-refurbished { background: rgba(46,196,182,0.15); color: var(--secondary-dark); }
.badge-new { background: rgba(255,107,53,0.15); color: var(--primary-dark); }
.product-body { padding: 16px; }
.product-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--dark);
}
.product-spec { font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px; }
.product-price {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.product-price .old-price {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-light);
  font-weight: 500;
  margin-left: 6px;
}

/* =====================
   PROCESS SECTION
   ===================== */
.process {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: white;
  overflow: hidden;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  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");
  pointer-events: none;
}
.process .section-label { color: var(--accent); background: rgba(255,209,102,0.15); }
.process .section-title { color: white; }
.process .section-desc { color: rgba(255,255,255,0.6); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}
.process-step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(255,107,53,0.4);
}
.step-icon { font-size: 2rem; margin-bottom: 16px; }
.step-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.step-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials { padding: 100px 0; background: var(--bg-soft); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  font-family: var(--font-head);
  color: rgba(255,107,53,0.08);
  line-height: 1;
}
.stars { color: var(--accent); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: white;
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.author-detail { font-size: 0.78rem; color: var(--text-light); }

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .section-title { color: white; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* =====================
   CONTACT SECTION
   ===================== */
.contact { padding: 100px 0; background: var(--bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(255,107,53,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .site-logo .logo-name { color: white; }
.footer-desc { font-size: 0.85rem; line-height: 1.7; margin: 16px 0 24px; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-link:hover { background: var(--primary); color: white; }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--primary); }

/* =====================
   MOBILE NAV OVERLAY
   ===================== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: white;
  z-index: 999;
  flex-direction: column;
  padding: 80px 32px 32px;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .why-us-inner { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 60px 0 70px; }
  .services, .why-us, .products, .process, .testimonials, .contact { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .usp-strip-inner { gap: 24px; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-badge { font-size: 0.72rem; }
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* =====================
   WORDPRESS DEFAULTS
   ===================== */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute; width: 1px;
  word-wrap: normal !important;
}
.wp-block-image img { border-radius: var(--radius-md); }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
