/* ============================================================
   Apturo – Global Stylesheet
   Font: Lato (Google Fonts)
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --cream:        #F8F6F3;
  --blue:         #0732EF;
  --blue-mid:     #4363F0;
  --blue-light:   #8094F1;
  --lavender:     #BCC5F2;
  --lavender-dark:#8094F1;
  --blue-dark:    #003A96;
  --blue-navy:    #001D4B;
  --lime:         #D9FB99;
  --lime-dark:    #517A06;
  --orange:       #ED5829;
  --white:        #ffffff;
  --text-dark:    #001D4B;
  --text-blue:    #0732EF;

  --radius:       12px;
  --radius-lg:    24px;
  --max-width:    1200px;
  --nav-height:   72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { font-size: 1rem; line-height: 1.7; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.text-blue  { color: var(--blue); }
.text-white { color: var(--white); }
.bg-blue    { background: var(--blue); }
.bg-cream   { background: var(--cream); }
.bg-lavender{ background: var(--lavender); }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
  text-align: center;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-lime  { background: var(--lime); color: var(--lime-dark); }
.btn-white { background: var(--white); color: var(--blue); }
.btn-blue  { background: var(--blue); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }

/* ---------- Language Switcher ---------- */
.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
}
.lang-switcher a {
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--blue);
  transition: background 0.15s;
}
.lang-switcher a:hover,
.lang-switcher a.active { background: var(--lavender); }
.lang-switcher span { color: var(--blue-light); }

/* ---------- Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--cream);
  border-bottom: 1px solid rgba(188,197,242,0.4);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.2s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 20px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue);
  color: var(--white);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo img { height: 40px; margin-bottom: 16px; }
.footer-address { font-size: 0.9rem; line-height: 1.8; opacity: 0.9; }
.footer-links h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.6; margin-bottom: 12px; }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.95rem; opacity: 0.85; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.7;
}
.footer-legal { display: flex; gap: 20px; }

/* ---------- Hero (Home) ---------- */
.hero {
  background: var(--cream);
  padding: 80px 0 60px;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-text { position: relative; z-index: 2; }
.hero-title {
  color: var(--blue);
  margin-bottom: 28px;
}
.hero-desc {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  font-size: 1.05rem;
  color: var(--blue-dark);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-visual {
  position: relative;
  height: 440px;
  /* Allow shapes to overflow right edge */
  margin-right: -60px;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
}
/* Large lavender circle – center of visual */
.hero-circle-1 {
  width: 280px; height: 280px;
  background: var(--lavender);
  top: 30px; left: 50%;
  transform: translateX(-55%);
  opacity: 1;
}
/* Lime blob – top right corner */
.hero-circle-2 {
  width: 140px; height: 140px;
  background: var(--lime);
  top: -10px; right: 40px;
  border-radius: 50% 50% 0 50%;
}
/* Dark blue rectangle – right side */
.hero-rect {
  position: absolute;
  width: 130px; height: 180px;
  background: var(--blue);
  bottom: 40px; right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
}
/* Small lavender accent – bottom left */
.hero-accent-sm {
  position: absolute;
  width: 100px; height: 100px;
  background: var(--lavender);
  bottom: 80px; left: 10px;
  border-radius: 50%;
  opacity: 0.55;
}
/* Small lime square – mid right */
.hero-accent-lime {
  position: absolute;
  width: 64px; height: 80px;
  background: var(--lime);
  bottom: 230px; right: 148px;
  border-radius: var(--radius);
}

/* ---------- Logo Bar ---------- */
.logo-bar {
  background: var(--cream);
  padding: 32px 0 48px;
  border-bottom: 1px solid var(--lavender);
}
.logo-bar-label {
  font-size: 0.9rem;
  color: var(--blue-dark);
  margin-bottom: 20px;
  font-weight: 400;
}
.logo-bar-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.logo-bar-logos img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: opacity 0.2s, filter 0.2s;
}
.logo-bar-logos img:hover { filter: grayscale(0); opacity: 1; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--cream);
  padding: 20px 0;
  border-bottom: 1px solid var(--lavender);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.trust-item svg { width: 28px; height: 28px; flex-shrink: 0; }
.trust-item img { height: 32px; }

/* ---------- Problem Section ---------- */
.problem-section {
  background: var(--blue);
  color: var(--white);
  padding: 80px 0;
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.problem-title {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}
.problem-list { margin-top: 12px; }
.problem-item { margin-bottom: 28px; }
.problem-item-title {
  font-style: italic;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 4px;
  font-size: 1rem;
}
.problem-item-text { font-size: 0.95rem; opacity: 0.9; }
.problem-conclusion {
  margin-top: 8px;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ---------- Solutions Section ---------- */
.solutions-section {
  background: var(--lavender);
  padding: 80px 0;
  text-align: center;
}
.solutions-title { color: var(--blue); margin-bottom: 12px; }
.solutions-subtitle { color: var(--blue-dark); margin-bottom: 48px; max-width: 700px; margin-left: auto; margin-right: auto; }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.solution-card {
  background: transparent;
  text-align: center;
}
.solution-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.solution-icon svg { width: 100%; height: 100%; stroke: var(--blue); fill: none; stroke-width: 1.5; }
.solution-card h3 { color: var(--blue); margin-bottom: 8px; font-size: 1.1rem; }
.solution-card p  { color: var(--blue-dark); font-size: 0.9rem; }

/* ---------- Service Packages ---------- */
.packages-section { padding: 80px 0; background: var(--cream); }
.packages-section h2 { text-align: center; color: var(--blue); margin-bottom: 48px; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--lavender);
}
.package-card h3 { color: var(--blue); font-size: 1.1rem; }
.package-features {
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.package-feature {
  display: flex; gap: 8px;
  font-size: 0.9rem;
  color: var(--text-dark);
  align-items: flex-start;
}
.package-feature::before {
  content: '✔';
  color: var(--blue);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.package-duration {
  font-size: 0.9rem;
  color: var(--blue-dark);
  border-top: 1px solid var(--lavender);
  padding-top: 12px;
}
.package-cta { margin-top: auto; }

/* ---------- Why Apturo ---------- */
.why-section {
  background: var(--blue);
  color: var(--white);
  padding: 80px 0;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-title { color: var(--white); }
.why-list { margin-top: 8px; display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 1rem;
}
.why-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: var(--lime);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-check::before { content: '✓'; color: var(--lime-dark); font-weight: 900; font-size: 0.85rem; }

/* ---------- CTA Section ---------- */
.cta-section { background: var(--cream); padding: 80px 0; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #B5D5E0 0%, #F5C9A8 100%);
}
.cta-text h2 { color: var(--blue); margin-bottom: 8px; }
.cta-divider {
  width: 48px; height: 3px;
  background: var(--blue);
  margin: 16px 0 20px;
  border-radius: 2px;
}
.cta-text p { color: var(--blue-dark); margin-bottom: 28px; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--cream);
  padding: 60px 0 40px;
  border-bottom: 4px solid var(--blue);
}
.page-hero h1 { color: var(--blue); margin-bottom: 16px; }
.page-hero p  { color: var(--blue-dark); max-width: 700px; font-size: 1.1rem; }

/* ---------- Tabs ---------- */
.tabs-wrapper { margin-top: 40px; }
.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--lavender);
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 24px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--blue-dark);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn.active,
.tab-btn:hover { color: var(--blue); border-bottom-color: var(--blue); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-content {
  background: var(--lime);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  padding: 32px;
  margin-top: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}
.tab-content-image {
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.tab-content-image img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.tab-entry { margin-bottom: 20px; }
.tab-entry h4 { color: var(--lime-dark); margin-bottom: 4px; font-size: 1rem; }
.tab-entry p  { font-size: 0.9rem; color: var(--text-dark); }

/* ---------- Use Case ---------- */
.usecase-section { padding: 80px 0; background: var(--cream); }
.usecase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.usecase-text h2 { color: var(--blue); margin-bottom: 16px; }
.usecase-text .lead { font-weight: 700; color: var(--blue); margin-bottom: 16px; font-size: 1rem; }
.usecase-text ul { margin: 16px 0; display: flex; flex-direction: column; gap: 8px; padding-left: 20px; list-style: disc; color: var(--text-dark); font-size: 0.95rem; }
.usecase-text p { font-size: 0.9rem; color: var(--text-dark); margin-bottom: 12px; }
.usecase-flow { display: flex; flex-direction: column; gap: 0; }
.flow-node {
  background: var(--lime);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lime-dark);
  position: relative;
}
.flow-node.optional {
  background: var(--white);
  border: 1.5px solid var(--lavender);
  color: var(--blue-dark);
}
.flow-arrow {
  text-align: center;
  font-size: 1.2rem;
  color: var(--blue-mid);
  padding: 4px 0;
  line-height: 1;
}

/* ---------- Process Steps ---------- */
.process-section { padding: 80px 0; background: var(--lavender); }
.process-section h2 { color: var(--blue); text-align: center; margin-bottom: 48px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.process-number {
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--lime-dark);
  background: var(--lime);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.process-card h3 { color: var(--blue); font-size: 1rem; margin-bottom: 8px; }
.process-card p  { font-size: 0.85rem; color: var(--text-dark); }

/* ---------- Contact Form ---------- */
.contact-section { padding: 80px 0; background: var(--cream); min-height: calc(100vh - var(--nav-height)); }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 4px 40px rgba(7,50,239,0.08);
}
.contact-card h2 { color: var(--blue-navy); margin-bottom: 32px; font-size: 1.8rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d9d9d9;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { margin-top: 8px; }
.form-hint { font-size: 0.8rem; color: #888; margin-top: 4px; }

/* ---------- About / Team ---------- */
.team-section { padding: 80px 0; }
.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.team-intro h1 { color: var(--blue); margin-bottom: 16px; }
.team-intro p  { color: var(--blue-dark); font-size: 1.05rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.team-card {
  background: var(--lavender);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.team-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card-info {
  background: var(--white);
  padding: 16px 20px;
}
.team-card-info h3 { color: var(--blue); font-size: 1rem; }
.team-card-info .vita-link { color: var(--blue); text-decoration: underline; font-size: 0.9rem; }
.team-card-info .role { color: var(--blue-dark); font-size: 0.9rem; margin-bottom: 8px; }
.team-card-linkedin {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--white);
  border-top: 1px solid var(--lavender);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue);
  transition: background 0.2s;
}
.team-card-linkedin:hover { background: var(--lavender); }

/* ---------- Profile Page ---------- */
.profile-section {
  background: var(--lavender);
  padding: 60px 0;
}
.profile-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 400px 1fr;
  max-width: 960px;
  margin: 0 auto;
}
.profile-photo { overflow: hidden; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.profile-info { padding: 48px 40px; }
.profile-info h1 { color: var(--blue); font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 20px; }
.profile-info p  { color: var(--blue-dark); font-size: 0.95rem; margin-bottom: 12px; line-height: 1.7; }
.profile-contact { font-weight: 700; color: var(--blue); margin-top: 8px; }
.profile-story { padding: 60px 0; background: var(--cream); }
.profile-story .container { max-width: 760px; }
.profile-story h2 { color: var(--blue); margin-bottom: 24px; }
.profile-story p  { color: var(--text-dark); margin-bottom: 16px; font-size: 0.95rem; }
.profile-cta {
  background: var(--lavender);
  padding: 48px 0;
  text-align: center;
}
.profile-cta h3 { color: var(--blue); margin-bottom: 8px; }
.profile-cta a  { color: var(--blue); font-weight: 700; font-size: 1.1rem; }

/* ---------- Voicebot page decorative ---------- */
.voicebot-badge {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  background: var(--lime);
  color: var(--lime-dark);
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1.2;
  padding: 12px 16px;
  border-radius: var(--radius);
  text-align: center;
  display: none;
}
.page-has-badge { position: relative; }

/* ---------- Voicebot Page ---------- */
.vc-caps {
  background: var(--blue);
  padding: 48px 0;
}
.vc-caps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.vc-cap-item {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  color: var(--white);
}
.vc-cap-item h4 {
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--lime);
  margin-bottom: 6px;
}
.vc-cap-item p {
  font-size: 0.8rem;
  opacity: 0.82;
  line-height: 1.5;
}

.vc-usecases { padding: 80px 0; background: var(--cream); }
.vc-usecases-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 48px;
}
.vc-usecases-header h2 { color: var(--blue); margin-bottom: 12px; }
.vc-usecases-header p { color: var(--blue-dark); font-size: 1rem; line-height: 1.7; }
.vc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.vc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--lavender);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vc-card-num {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--lime-dark);
  background: var(--lime);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  align-self: flex-start;
}
.vc-card h3 { color: var(--blue); font-size: 1.15rem; margin: 0; }
.vc-card-tag {
  display: inline-block;
  background: var(--lavender);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  align-self: flex-start;
}
.vc-card p {
  color: var(--text-dark);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}
.vc-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--lavender);
  padding-top: 14px;
}
.vc-card-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.87rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.vc-card-list li::before {
  content: '→';
  color: var(--blue);
  font-weight: 900;
  flex-shrink: 0;
}

.vc-partner {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--lavender);
  border-bottom: 1px solid var(--lavender);
}
.vc-partner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.vc-partner-text {
  font-size: 0.95rem;
  color: var(--blue-dark);
  font-weight: 700;
}
.vc-partner-logo { height: 36px; width: auto; }

.vc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vc-tools {
  background: var(--blue-navy);
  padding: 32px 0;
}
.vc-tools-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.vc-tools-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lavender);
  white-space: nowrap;
}
.vc-tools-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.vc-tool-chip {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .solutions-grid,
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 2px solid var(--lavender);
    padding: 16px 24px;
    gap: 0;
  }
  .nav-links.open a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(188,197,242,0.4);
    display: block;
  }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }

  .hero-inner,
  .problem-inner,
  .why-inner,
  .cta-inner,
  .usecase-inner,
  .profile-card { grid-template-columns: 1fr; }

  .hero-visual { height: 220px; }
  .hero-circle-1 { width: 140px; height: 140px; }
  .hero-circle-2 { width: 90px; height: 90px; }
  .hero-rect { width: 80px; height: 110px; }

  .packages-grid { grid-template-columns: 1fr; }
  .solutions-grid,
  .process-grid { grid-template-columns: 1fr; }
  .vc-caps-grid { grid-template-columns: repeat(2, 1fr); }
  .vc-grid { grid-template-columns: 1fr; }
  .vc-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .tab-content { grid-template-columns: 1fr; }
  .tab-content-image { width: 100%; }

  .profile-photo { max-height: 340px; }
  .profile-info { padding: 32px 24px; }

  .contact-card { padding: 28px 20px; }

  .nav-links a::after { display: none; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .logo-bar-logos { gap: 24px; }
  .trust-bar-inner { gap: 24px; }
  .tabs-nav { gap: 0; }
  .tab-btn { padding: 10px 14px; font-size: 0.85rem; }
  .vc-grid-3 { grid-template-columns: 1fr; }
}

/* ---------- [lang] hidden helper ---------- */
[data-lang] { display: none; }
[data-lang].lang-active { display: block; }
span[data-lang].lang-active { display: inline; }
