/*
Theme Name:  SolutIT
Theme URI:   https://www.solutit.nl
Author:      SolutIT
Author URI:  https://www.solutit.nl
Description: A slick, modern Web Design & Development agency theme with full Customizer support.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: solutit
*/

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --accent: #ff0060;
  --gray:   #999999;
  --black:  #000000;
  --white:  #ffffff;
  --light:  #f6f6f6;
  --dark:   #0a0a0a;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--black); background: var(--white); overflow-x: hidden; }
img  { max-width: 100%; height: auto; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-size: revert !important; font-weight: revert !important; }
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem) !important; font-weight: 900 !important; line-height: 1.04; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem) !important; font-weight: 800 !important; line-height: 1.1; letter-spacing: -0.025em; }
h3 { font-size: 1.25rem !important; font-weight: 700 !important; }
p  { line-height: 1.75; color: var(--gray); }
a  { text-decoration: none; color: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.accent    { color: var(--accent); }
.tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-header .tag { margin-bottom: 0.8rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 480px; margin: 0 auto; font-size: 1rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 3px;
  font-family: inherit; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all 0.3s ease;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: #cc004d; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,0,96,0.32); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.btn-white { background: var(--white); color: var(--accent); }
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.btn-outline-dark { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal       { opacity: 0; transform: translateY(44px);  transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal-left  { opacity: 0; transform: translateX(-54px); transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal-right { opacity: 0; transform: translateX(54px);  transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ============================
   NAVIGATION
============================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.6rem 0;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled, nav.page-nav {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img {
  height: 34px;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}
nav.scrolled .nav-logo img,
nav.page-nav .nav-logo img { filter: none; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); transition: color 0.3s;
}
nav.scrolled .nav-links a,
nav.page-nav .nav-links a { color: var(--black); }
.nav-links a:hover { color: var(--accent) !important; }
.nav-cta {
  padding: 0.6rem 1.4rem !important;
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: 3px !important;
}
.nav-cta:hover { background: #cc004d !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); transition: background 0.4s; }
nav.scrolled .nav-hamburger span,
nav.page-nav .nav-hamburger span { background: var(--black); }
.nav-mobile-open .nav-links {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white);
  padding: 1.5rem 2rem 2rem;
  gap: 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.nav-mobile-open .nav-links a { color: var(--black) !important; }

/* ============================
   HOMEPAGE — HERO
============================ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(130deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(255,0,96,0.12) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 740px; }
.hero-pill {
  display: inline-block;
  background: var(--accent); color: var(--white);
  padding: 0.38rem 1.1rem; border-radius: 2px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.6rem; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub {
  font-size: 1.1rem; line-height: 1.7;
  color: rgba(255,255,255,0.68);
  margin-bottom: 2.8rem; max-width: 520px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.45; transform: scaleY(1); }
  50%      { opacity: 1;    transform: scaleY(1.15); }
}

/* ============================
   HOMEPAGE — STATS
============================ */
.stats { background: var(--black); padding: 4.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-number { font-size: clamp(2.6rem, 4.5vw, 3.8rem); font-weight: 900; color: var(--white); line-height: 1; }
.stat-number sup { color: var(--accent); font-size: 60%; vertical-align: super; }
.stat-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #555; margin-top: 0.6rem; }

/* ============================
   HOMEPAGE — ABOUT
============================ */
.about { padding: 8rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-text .tag { margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.6rem; }
.about-text p { font-size: 1rem; margin-bottom: 1.4rem; }
.about-text .btn { margin-top: 0.5rem; }
.about-image { position: relative; }
.about-image img { width: 100%; height: 560px; object-fit: cover; border-radius: 3px; display: block; }
.about-badge {
  position: absolute; bottom: -2.2rem; left: -2.2rem;
  background: var(--accent); color: var(--white);
  padding: 2rem 2.2rem; border-radius: 3px; text-align: center;
}
.about-badge .num { font-size: 2.8rem; font-weight: 900; line-height: 1; }
.about-badge .num small { font-size: 1.6rem; opacity: 0.75; }
.about-badge .lbl { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.88; margin-top: 0.3rem; }

/* ============================
   HOMEPAGE — SERVICES
============================ */
.services { padding: 8rem 0; background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card { background: var(--white); border-radius: 3px; overflow: hidden; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 32px 64px rgba(0,0,0,0.1); }
.service-img { height: 235px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.service-card:hover .service-img img { transform: scale(1.07); }
.service-body { padding: 2rem; }
.service-body h3 { margin-bottom: 0.75rem; }
.service-body p { font-size: 0.94rem; margin-bottom: 1.6rem; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); transition: gap 0.3s;
}
.service-link:hover { gap: 0.75rem; }
.service-link::after { content: '→'; }

/* ============================
   HOMEPAGE — WORK
============================ */
.work { padding: 8rem 0; }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.work-item {
  position: relative; overflow: hidden; border-radius: 3px;
  aspect-ratio: 4/3; cursor: pointer;
}
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; display: block; }
.work-item:hover img { transform: scale(1.06); }
.work-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
  display: flex; align-items: flex-end; padding: 1.8rem;
}
.work-overlay-content { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.work-overlay span { color: var(--white); font-weight: 700; font-size: 1rem; }
.work-overlay .work-arrow {
  width: 40px; height: 40px; border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem; transition: background 0.3s, border-color 0.3s;
}
.work-item:hover .work-arrow { background: var(--accent); border-color: var(--accent); }
.work-tag {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--accent); color: var(--white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.35rem 0.85rem; border-radius: 2px; pointer-events: none;
}
.work-count {
  position: absolute; top: 3.4rem; left: 1.2rem;
  display: flex; flex-direction: row; align-items: center;
  pointer-events: none; line-height: 1; gap: 0px;
}
.work-count-num {
  font-size: 90px; font-weight: 900;
  color: rgba(255,255,255,0.48);
  letter-spacing: -0.04em; line-height: 1;
}
.work-count-label {
  font-size: 18px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  transform: rotate(270deg); white-space: nowrap;
}
.work-cta { text-align: center; }

/* ============================
   HOMEPAGE — CTA BAND
============================ */
.cta-band { padding: 7rem 0; background: var(--black); position: relative; overflow: hidden; }
.cta-band-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: 0.12;
}
.cta-band-accent {
  position: absolute; top: -40%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,96,0.15) 0%, transparent 70%);
}
.cta-band-content { position: relative; z-index: 1; text-align: center; }
.cta-band-content .tag { color: var(--accent); margin-bottom: 1rem; }
.cta-band h2 { color: var(--white); margin-bottom: 1.2rem; }
.cta-band p { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 2.8rem; font-size: 1rem; }

/* ============================
   HOMEPAGE — TEAM
============================ */
.team { padding: 8rem 0; background: var(--light); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.team-card { background: var(--white); border-radius: 3px; overflow: hidden; transition: transform 0.35s; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,0.09); }
.team-img { height: 290px; overflow: hidden; }
.team-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  filter: grayscale(25%); transition: filter 0.35s, transform 0.55s;
}
.team-card:hover .team-img img { filter: grayscale(0%); transform: scale(1.04); }
.team-info { padding: 1.5rem; }
.team-info h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.team-info .role { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }

/* ============================
   HOMEPAGE — TESTIMONIALS
============================ */
.testimonials { padding: 8rem 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--white); border: 1px solid #ebebeb; border-radius: 3px; padding: 2.5rem;
  transition: box-shadow 0.35s, transform 0.35s;
}
.testimonial-card:hover { box-shadow: 0 24px 56px rgba(0,0,0,0.08); transform: translateY(-5px); }
.stars { color: var(--accent); font-size: 1rem; letter-spacing: 0.08rem; margin-bottom: 1.2rem; }
.testimonial-text { font-size: 0.97rem; font-style: italic; color: var(--black); line-height: 1.75; margin-bottom: 1.8rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 700; font-size: 0.88rem; }
.author-title { font-size: 0.78rem; color: var(--gray); }

/* ============================
   HOMEPAGE — CONTACT BAND
============================ */
.contact-band { padding: 6.5rem 0; background: var(--accent); }
.contact-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.contact-band h2 { color: var(--white); }
.contact-band p { color: rgba(255,255,255,0.8); margin-top: 0.8rem; max-width: 480px; }

/* ============================
   INNER PAGE — PAGE HERO
============================ */
.page-hero {
  position: relative; padding: 11rem 0 7rem; overflow: hidden; background: var(--dark);
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.18; }
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 2rem;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: var(--accent); }
.page-hero h1 { color: var(--white); max-width: 720px; margin-bottom: 1.4rem; }
.page-hero h1 em { color: var(--accent); font-style: normal; }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.55); max-width: 520px; line-height: 1.75; margin-bottom: 2.8rem; }
.page-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* INNER — INTRO */
.intro { padding: 7rem 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.intro-text .tag { margin-bottom: 1rem; }
.intro-text h2 { margin-bottom: 1.4rem; }
.intro-text p { margin-bottom: 1.1rem; font-size: 1rem; }
.intro-text p:last-of-type { margin-bottom: 1.8rem; }
.intro-image { position: relative; }
.intro-image img { width: 100%; height: 480px; object-fit: cover; border-radius: 3px; display: block; }
.intro-float {
  position: absolute; bottom: -2rem; right: -2rem;
  background: var(--accent); color: var(--white);
  padding: 1.6rem 2rem; border-radius: 3px;
}
.intro-float .num { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.intro-float .lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; margin-top: 0.3rem; }

/* INNER — CONTENT + SIDEBAR */
.content-section { padding: 7rem 0; background: var(--light); }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 5rem; align-items: start; }
.body-copy h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 1.4rem; }
.body-copy p { font-size: 1rem; margin-bottom: 1.4rem; }
.body-copy h3 { font-size: 1.1rem; font-weight: 700; color: var(--black); margin: 2.2rem 0 0.8rem; }
.pull-quote {
  border-left: 3px solid var(--accent); padding: 1.2rem 1.8rem;
  background: var(--white); margin: 2.5rem 0; border-radius: 0 3px 3px 0;
}
.pull-quote p { font-size: 1.1rem; font-style: italic; color: var(--black); line-height: 1.65; }
.sidebar { position: sticky; top: 7rem; }
.sidebar-card { background: var(--white); border-radius: 3px; padding: 2rem; margin-bottom: 1.5rem; }
.sidebar-card h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); margin-bottom: 1.2rem; }
.sidebar-list { list-style: none; }
.sidebar-list li { padding: 0.65rem 0; border-bottom: 1px solid #efefef; font-size: 0.88rem; color: var(--gray); display: flex; align-items: center; gap: 0.6rem; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li::before { content: '→'; color: var(--accent); font-size: 0.75rem; flex-shrink: 0; }
.sidebar-cta { background: var(--black); color: var(--white); border-radius: 3px; padding: 2rem; text-align: center; }
.sidebar-cta h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; letter-spacing: 0; text-transform: none; }
.sidebar-cta p { font-size: 0.88rem; color: #777; margin-bottom: 1.5rem; }

/* INNER — FEATURES */
.features { padding: 7rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { padding: 2.4rem 2rem; border: 1px solid #ebebeb; border-radius: 3px; transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s; }
.feature-card:hover { box-shadow: 0 24px 56px rgba(0,0,0,0.08); transform: translateY(-6px); border-color: transparent; }
.feature-icon { width: 48px; height: 48px; border-radius: 3px; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.6rem; transition: background 0.3s; }
.feature-card:hover .feature-icon { background: var(--accent); }
.feature-card h3 { margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.94rem; }

/* INNER — IMAGE STRIP */
.image-strip { padding: 5rem 0; overflow: hidden; }
.strip-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.2rem; }
.strip-item { border-radius: 3px; overflow: hidden; }
.strip-item img { width: 100%; height: 320px; object-fit: cover; display: block; transition: transform 0.55s ease; }
.strip-item:hover img { transform: scale(1.04); }
.strip-item:first-child img { height: 420px; }

/* INNER — PROCESS */
.process { padding: 7rem 0; background: var(--dark); position: relative; overflow: hidden; }
.process-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&auto=format&fit=crop&q=80'); opacity: 0.12; }
.process > .container { position: relative; z-index: 1; }
.process .section-header .tag { color: var(--accent); }
.process .section-header h2 { color: var(--white); }
.process .section-header p { color: rgba(255,255,255,0.45); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.step { position: relative; padding: 2.4rem 1.6rem 2rem; border: 1px solid rgba(255,255,255,0.08); border-radius: 3px; transition: border-color 0.35s; }
.step:hover { border-color: var(--accent); }
.step-number { font-size: 3.5rem; font-weight: 900; line-height: 1; color: rgba(255,255,255,0.3); margin-bottom: 1.4rem; transition: color 0.8s ease; }
.step.visible .step-number { color: rgba(255,255,255,0.3); }
.step h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1rem; }
.step p { font-size: 0.88rem; color: rgba(255,255,255,0.38); line-height: 1.7; }
.step:not(:last-child)::after { content: ''; position: absolute; top: 2.8rem; left: 100%; width: 0; height: 1px; background: rgba(255,255,255,0.2); transition: width 0.5s ease 0.55s; }
.step.visible:not(:last-child)::after { width: 2rem; }
/* Step-specific reveal — stronger entrance */
.step.reveal { transform: translateY(48px) scale(0.94); opacity: 0; transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.35s; }
.step.reveal.visible { opacity: 1; transform: none; }

/* INNER — CTA BAND */
.cta-band-inner-page { padding: 6.5rem 0; background: var(--accent); }
.cta-band-inner-page-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.cta-band-inner-page h2 { color: var(--white); max-width: 520px; }
.cta-band-inner-page p { color: rgba(255,255,255,0.75); margin-top: 0.8rem; max-width: 440px; }
.cta-band-inner-page-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ============================
   FOOTER
============================ */
footer { background: var(--dark); padding: 5.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand img { height: 30px; filter: brightness(0) invert(1); display: block; margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.88rem; color: #555; line-height: 1.75; margin-bottom: 1.8rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-icon { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.3s; }
.social-icon svg { display: block; flex-shrink: 0; }
.social-icon:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 { color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.6rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { font-size: 0.88rem; color: #555; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item { margin-bottom: 1rem; }
.footer-contact-item strong { display: block; color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.3rem; }
.footer-contact-item span { font-size: 0.88rem; color: #555; }
.footer-bottom { border-top: 1px solid #161616; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; color: #444; }
.footer-bottom p.footer-madeby { color: #ffffff !important; }
.footer-bottom a { color: var(--accent); }

/* ============================
   STANDARD PAGE
============================ */
.page-content { padding: 10rem 0 7rem; }
.page-content-inner { max-width: 800px; }
.page-content h1 { margin-bottom: 2rem; }
.page-content .wp-content p { font-size: 1rem; margin-bottom: 1.4rem; }
.page-content .wp-content h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin: 2.4rem 0 1rem; }
.page-content .wp-content h3 { font-size: 1.2rem; margin: 2rem 0 0.8rem; }
.page-content .wp-content ul, .page-content .wp-content ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.page-content .wp-content li { font-size: 1rem; line-height: 1.75; color: var(--gray); margin-bottom: 0.4rem; }

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .about-grid, .intro-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-badge { bottom: 1rem; left: 1rem; }
  .intro-float { bottom: 1rem; right: 1rem; }
  .services-grid, .features-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-band-inner, .cta-band-inner-page-inner { flex-direction: column; text-align: center; }
  .cta-band-inner-page-actions { justify-content: center; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item img, .strip-item:first-child img { height: 240px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* ============================
   OFFERTE TEMPLATE
============================ */
.quote-section { padding: 7rem 0; }
.quote-grid { display: grid; grid-template-columns: 1fr 420px; gap: 5rem; align-items: start; }
.quote-form-wrap .tag { margin-bottom: 0.8rem; }
.quote-form-wrap h2 { margin-bottom: 0.8rem; }
.quote-form-wrap > p { font-size: 1rem; margin-bottom: 3rem; }

.steps-indicator { display: flex; align-items: center; gap: 0; margin-bottom: 3.5rem; }
.step-dot { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; position: relative; flex: 1; }
.step-dot:not(:last-child)::after { content: ''; position: absolute; top: 15px; left: calc(50% + 16px); width: calc(100% - 32px); height: 1px; background: #e0e0e0; }
.step-dot.done::after, .step-dot.active::after { background: var(--accent); }
.dot { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; background: #e8e8e8; color: #aaa; transition: all 0.3s; z-index: 1; }
.step-dot.active .dot { background: var(--accent); color: var(--white); box-shadow: 0 4px 16px rgba(255,0,96,0.3); }
.step-dot.done .dot { background: var(--black); color: var(--white); }
.step-dot.done .dot::after { content: '✓'; font-size: 0.75rem; }
.step-dot.done .dot span { display: none; }
.step-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #ccc; white-space: nowrap; }
.step-dot.active .step-label { color: var(--black); }
.step-dot.done .step-label { color: var(--gray); }

.form-step { display: none; }
.form-step.active { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.85rem 1rem; border: 1.5px solid #e0e0e0; border-radius: 3px; font-family: inherit; font-size: 0.94rem; color: var(--black); background: var(--white); outline: none; transition: border-color 0.3s, box-shadow 0.3s; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,0,96,0.08); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.service-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.service-option input[type="checkbox"] { display: none; }
.service-option label { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.2rem; border: 1.5px solid #e0e0e0; border-radius: 3px; cursor: pointer; font-size: 0.88rem; font-weight: 600; transition: all 0.25s; }
.service-option label:hover { border-color: var(--accent); background: rgba(255,0,96,0.03); }
.service-option input:checked + label { border-color: var(--accent); background: rgba(255,0,96,0.06); color: var(--accent); }
.service-icon { font-size: 1.1rem; }

.budget-display { font-size: 2rem; font-weight: 900; color: var(--black); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.budget-display span { color: var(--accent); }
.budget-label { font-size: 0.75rem; color: var(--gray); margin-bottom: 1.2rem; }
input[type="range"] { width: 100%; appearance: none; height: 3px; background: linear-gradient(to right, var(--accent) 0%, var(--accent) 30%, #e0e0e0 30%); border-radius: 2px; outline: none; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--accent); box-shadow: 0 2px 8px rgba(255,0,96,0.4); cursor: pointer; }

.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2.5rem; }
.btn-back { background: none; border: none; font-family: inherit; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); cursor: pointer; padding: 0; transition: color 0.3s; }
.btn-back:hover { color: var(--black); }
.form-note { font-size: 0.78rem; color: #bbb; margin-top: 1.2rem; }

.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success.visible { display: block; }
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--accent); color: var(--white); font-size: 1.8rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.8rem; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.form-success p { max-width: 360px; margin: 0 auto 2rem; }

.quote-sidebar { position: sticky; top: 7rem; }
.sidebar-usp { background: var(--black); border-radius: 3px; padding: 2.4rem; margin-bottom: 1.5rem; }
.sidebar-usp h4 { color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.6rem; }
.usp-list { list-style: none; }
.usp-list li { display: flex; align-items: flex-start; gap: 0.9rem; padding: 0.85rem 0; border-bottom: 1px solid #1a1a1a; }
.usp-list li:last-child { border-bottom: none; }
.usp-icon { width: 30px; height: 30px; border-radius: 3px; background: var(--accent); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; margin-top: 0.1rem; }
.usp-text strong { display: block; color: var(--white); font-size: 0.88rem; margin-bottom: 0.2rem; }
.usp-text span { font-size: 0.8rem; color: #555; line-height: 1.5; }

.sidebar-reviews { background: var(--light); border-radius: 3px; padding: 2rem; margin-bottom: 1.5rem; }
.sidebar-reviews h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); margin-bottom: 1.4rem; }
.mini-review { padding: 1.2rem 0; border-bottom: 1px solid #e8e8e8; }
.mini-review:last-child { border-bottom: none; padding-bottom: 0; }
.mini-stars { color: var(--accent); font-size: 0.75rem; margin-bottom: 0.4rem; }
.mini-review p { font-size: 0.82rem; font-style: italic; color: var(--black); line-height: 1.6; margin-bottom: 0.6rem; }
.mini-author { font-size: 0.75rem; font-weight: 700; color: var(--gray); }

.sidebar-contact { background: var(--white); border: 1.5px solid #e8e8e8; border-radius: 3px; padding: 1.8rem; }
.sidebar-contact h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); margin-bottom: 1.2rem; }
.contact-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.9rem; }
.contact-row:last-child { margin-bottom: 0; }
.contact-row-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
.contact-row-text strong { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); }
.contact-row-text span { font-size: 0.82rem; color: var(--gray); }

.clients { padding: 5rem 0; background: var(--light); overflow: hidden; }
.clients-label { text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #ccc; margin-bottom: 2.5rem; }
.clients-track { display: flex; gap: 4rem; align-items: center; justify-content: center; flex-wrap: wrap; }
.client-logo { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; color: #d0d0d0; transition: color 0.3s; white-space: nowrap; }
.client-logo:hover { color: var(--black); }

@media (max-width: 1024px) {
  .quote-grid { grid-template-columns: 1fr; gap: 4rem; }
  .quote-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .service-options { grid-template-columns: 1fr; }
  .quote-sidebar { grid-template-columns: 1fr; }
}
