/* ============================================
   TENDRIA WEBSITE — Brand Stylesheet
   Colors: Dark Teal #0F2D3D, Amber #FFB000, White #FFFFFF
   ============================================ */

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

:root {
  --teal:        #0F2D3D;
  --teal-light:  #163A4F;
  --teal-dark:   #0A1F2B;
  --amber:       #FFB000;
  --amber-hover: #E69E00;
  --white:       #FFFFFF;
  --gray-50:     #F7F9FA;
  --gray-100:    #EDF1F3;
  --gray-200:    #D5DDE2;
  --gray-400:    #8A9BA7;
  --gray-600:    #4A5E6D;
  --gray-800:    #1E3344;
  --font-main:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width:   1180px;
  --section-py:  6rem;
}

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

body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1.05rem; }

.text-amber { color: var(--amber); }
.text-white { color: var(--white); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: var(--section-py) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--amber);
  color: var(--teal);
}
.btn-primary:hover {
  background: var(--amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255,176,0,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-arrow::after { content: ' \2192'; }

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,45,61,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo img { height: 36px; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s;
}
.navbar-links a:hover { color: var(--white); }
.navbar-links .btn { font-size: .9rem; padding: .6rem 1.4rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(170deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
  color: var(--white);
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,176,0,.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container { position: relative; z-index: 1; max-width: 800px; }

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 span { color: var(--amber); }

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  max-width: 640px;
}

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

/* ---------- Section headers ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header .label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--amber);
  margin-bottom: .75rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--gray-600); }

/* ---------- Problem section ---------- */
.problem {
  background: var(--gray-50);
}

.problem-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.problem-text p { color: var(--gray-600); margin-bottom: 1rem; }
.problem-text p:last-child { margin-bottom: 0; }

.problem-result {
  background: var(--white);
  border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0;
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,.05);
}

.problem-result h4 { color: var(--teal); margin-bottom: .75rem; }
.problem-result p { color: var(--gray-600); font-size: .95rem; }

/* ---------- Solution section ---------- */
.solution .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-text h2 { margin-bottom: 1.5rem; }
.solution-text p { color: var(--gray-600); margin-bottom: 1rem; }

.solution-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.solution-card {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
  transition: all .3s;
}
.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}

.solution-card .icon {
  width: 44px; height: 44px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: .75rem;
  color: var(--teal);
}

.solution-card h4 { margin-bottom: .4rem; color: var(--teal); }
.solution-card p { font-size: .85rem; color: var(--gray-600); }

/* ---------- Steps / werkwijze ---------- */
.steps {
  background: var(--teal);
  color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.step-card {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 2.5rem 2rem 2rem;
}

.step-number {
  position: absolute;
  top: -18px; left: 2rem;
  background: var(--amber);
  color: var(--teal);
  font-weight: 800;
  font-size: .85rem;
  padding: .35rem 1rem;
  border-radius: 20px;
}

.step-card h3 { margin-bottom: 1rem; }
.step-card p { color: rgba(255,255,255,.7); font-size: .95rem; }

/* ---------- For who / audience ---------- */
.audience {
  background: var(--gray-50);
}

.audience-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.audience-text { flex: 1; }
.audience-text p { color: var(--gray-600); margin-bottom: 1rem; }

.audience-tags {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

.audience-tag {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: .65rem 1.5rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--teal);
  transition: all .25s;
}
.audience-tag:hover {
  border-color: var(--amber);
  background: rgba(255,176,0,.06);
}

/* ---------- Offer / aanbod ---------- */
.offer-intro { text-align: center; color: var(--gray-600); margin-bottom: 3rem; max-width: 640px; margin-left: auto; margin-right: auto; }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.offer-card:hover {
  border-color: var(--amber);
  box-shadow: 0 8px 30px rgba(0,0,0,.07);
}

.offer-card.featured {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber);
}

.offer-card .badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--amber);
  color: var(--teal);
  font-size: .75rem;
  font-weight: 700;
  padding: .35rem .9rem;
  border-radius: 0 12px 0 8px;
}

.offer-card h3 { color: var(--teal); margin-bottom: .25rem; }
.offer-card .subtitle { font-size: .85rem; color: var(--amber); font-weight: 600; margin-bottom: 1rem; }
.offer-card p { color: var(--gray-600); font-size: .93rem; }

/* ---------- Results ---------- */
.results-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.result-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--gray-50);
  padding: 1.5rem;
  border-radius: 10px;
}

.result-item .check {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--amber);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
}

.result-item p { color: var(--gray-600); font-size: .95rem; }

/* ---------- Social proof ---------- */
.social-proof {
  background: var(--teal);
  color: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.proof-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 2rem;
}

.proof-card h4 {
  color: var(--amber);
  margin-bottom: .75rem;
  font-size: 1.05rem;
}

.proof-card p {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  font-style: italic;
}

/* ---------- CTA final ---------- */
.cta-final {
  background: linear-gradient(170deg, var(--teal-dark), var(--teal));
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}

.cta-final h2 { margin-bottom: 1rem; }
.cta-final p { color: rgba(255,255,255,.75); margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ---------- Team section ---------- */
.team {
  background: var(--gray-50);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  transition: all .3s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
}

.team-card .team-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
}

.team-card .team-info {
  padding: 1.5rem;
}

.team-card h3 {
  color: var(--teal);
  margin-bottom: .25rem;
  font-size: 1.2rem;
}

.team-card .team-role {
  color: var(--amber);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .75rem;
}

.team-card p {
  color: var(--gray-600);
  font-size: .9rem;
}

/* CTA with team photo strip */
.cta-team-strip {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-team-strip img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--amber);
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0 5rem;
}

.contact-info h3 {
  color: var(--teal);
  margin-bottom: 1rem;
}

.contact-expect {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-expect li {
  padding: .5rem 0 .5rem 1.5rem;
  position: relative;
  color: var(--gray-600);
  font-size: .95rem;
}

.contact-expect li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .9rem;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
}

.contact-details {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}

.contact-details p {
  font-size: .95rem;
  color: var(--gray-600);
  margin-bottom: .25rem;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: .95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(255,176,0,.15);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group select {
  appearance: none;
  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='%238A9BA7' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  background: var(--amber);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-success h3 {
  color: var(--teal);
  margin-bottom: .5rem;
}

.form-success p {
  color: var(--gray-600);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 2rem 0;
  font-size: .85rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer a { color: var(--amber); }
.footer a:hover { text-decoration: underline; }

/* ============================================
   WERKWIJZE PAGE — Extra styles
   ============================================ */

/* Route cards on werkwijze page */
.route-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.route-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  transition: all .3s;
}
.route-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.route-card .route-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--amber);
  margin-bottom: .5rem;
}

.route-card h3 { color: var(--teal); margin-bottom: .75rem; }

.route-card .for-who {
  font-size: .85rem;
  color: var(--gray-400);
  font-style: italic;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.route-card p { color: var(--gray-600); font-size: .93rem; margin-bottom: .75rem; }

.route-card .result-label {
  font-weight: 700;
  color: var(--teal);
  font-size: .9rem;
  margin-top: 1rem;
}

/* Differentiator blocks */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.diff-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 2rem;
}

.diff-card h4 {
  color: var(--amber);
  margin-bottom: .75rem;
}

.diff-card p {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}

/* Timeline visual */
.timeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 3px;
  background: var(--gray-200);
  z-index: 0;
}

.timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.timeline-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--teal);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: .85rem;
  box-shadow: 0 0 0 6px var(--white);
}

.timeline-item h4 { color: var(--teal); margin-bottom: .4rem; }
.timeline-item p { font-size: .85rem; color: var(--gray-600); }
.timeline-item .timeline-time {
  font-size: .75rem;
  color: var(--amber);
  font-weight: 700;
  margin-top: .5rem;
}

/* Stap detail sections */
.stap-section { border-bottom: 1px solid var(--gray-100); }
.stap-section:last-child { border-bottom: none; }

.stap-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.stap-badge {
  background: var(--amber);
  color: var(--teal);
  font-weight: 800;
  font-size: .8rem;
  padding: .4rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.stap-content p { color: var(--gray-600); margin-bottom: 1rem; }

.stap-result {
  background: var(--gray-50);
  border-left: 3px solid var(--amber);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}

.stap-result strong { color: var(--teal); }

.stap-list {
  list-style: none;
  margin: 1rem 0;
}

.stap-list li {
  padding: .4rem 0 .4rem 1.5rem;
  position: relative;
  color: var(--gray-600);
}

.stap-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .85rem;
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .problem-content,
  .solution .container { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .results-list { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .route-cards { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .audience-content { flex-direction: column; }
  .contact-layout { grid-template-columns: 1fr; }
  .timeline { flex-direction: column; gap: 2rem; }
  .timeline::before { display: none; }
  .timeline-dot { box-shadow: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 4rem; }
  .hero { padding: 8rem 0 4rem; }

  .navbar-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--teal);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .navbar-links.active { display: flex; }
  .hamburger { display: flex; }

  .solution-visual { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; }
}
