/*
Theme Name: BDS Business Development Services
Theme URI: https://bdswins.com
Author: BDS ApS
Author URI: https://bdswins.com
Description: Professional theme for BDS – Business Development Services. Lead generation focused, authority positioning.
Version: 1.0.0
License: Proprietary
Text Domain: bds-theme
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark:   #0059A9;
  --blue-mid:    #007CC2;
  --blue-light:  #6CB5E4;
  --navy:        #0A1E3D;
  --navy-light:  #122650;
  --text-dark:   #1A2535;
  --text-mid:    #3D5170;
  --text-light:  #64748B;
  --bg-light:    #F5F8FC;
  --bg-white:    #FFFFFF;
  --border:      #DDE6F0;
  --gold:        #E8A020;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow-sm:   0 2px 8px rgba(0,89,169,0.08);
  --shadow-md:   0 8px 32px rgba(0,89,169,0.12);
  --shadow-lg:   0 20px 60px rgba(0,89,169,0.16);
  --transition:  0.25s ease;
  --max-width:   1160px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--light { background: var(--bg-light); }
.section--navy { background: var(--navy); color: #fff; }
.section--blue { background: var(--blue-dark); color: #fff; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 12px;
}

.section-label--white { color: var(--blue-light); }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title--white { color: #fff; }

.section-lead {
  font-size: 18px;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
}

.section-lead--white { color: rgba(255,255,255,0.8); }

.text-center { text-align: center; }
.text-center .section-lead { margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-dark);
  color: #fff;
  border-color: var(--blue-dark);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}
.btn-outline:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline--white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline--white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

.btn-lg { padding: 18px 36px; font-size: 16px; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 30, 61, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.site-logo,
.site-logo .custom-logo-link { display: inline-flex; align-items: center; }
.site-logo img,
.site-logo .custom-logo,
.custom-logo-link img {
  height: 56px !important;
  width: auto !important;
  max-width: none !important;
}
@media (max-width: 768px) {
  .header-inner { height: 76px; }
  .site-logo img,
  .site-logo .custom-logo,
  .custom-logo-link img { height: 44px !important; }
}
.site-logo:hover { opacity: 0.9; }

.site-nav { display: flex; align-items: center; gap: 4px; position: relative; }

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-arrow { font-size: 10px; opacity: 0.7; margin-left: 2px; }

/* Invisible bridge fills the gap so hover isn't lost moving mouse down */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 200;
  overflow: hidden;
  padding: 6px 0;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }

.dropdown-link {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.dropdown-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-left-color: var(--blue-light);
}

/* MOBILE NAV GROUP */
.mobile-nav-group { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  padding: 12px 16px 4px;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  margin-left: 8px;
  background: var(--blue-dark);
  color: #fff !important;
  border-radius: 6px;
  padding: 9px 18px !important;
}
.nav-cta:hover {
  background: var(--blue-mid) !important;
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: 12px 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2B5E 60%, #103780 100%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(108,181,228,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,124,194,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { max-width: 760px; position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,181,228,0.15);
  border: 1px solid rgba(108,181,228,0.3);
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(90deg, var(--blue-light), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 620px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section { padding: 72px 0; background: var(--navy-light); }

.problem-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.problem-stat {
  flex-shrink: 0;
  text-align: center;
}

.problem-stat-number {
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-stat-unit {
  font-size: 32px;
  font-weight: 800;
}

.problem-text { color: rgba(255,255,255,0.9); }
.problem-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: #fff;
  margin-bottom: 16px;
}
.problem-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-light));
}

.service-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: rgba(0,124,194,0.08);
  border: 1px solid rgba(0,124,194,0.2);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg { width: 28px; height: 28px; fill: #fff; }

.service-card h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}

.service-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%230059A9' opacity='.12'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%230059A9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 2px;
}

/* ============================================================
   RESULTS / TRACK RECORD
   ============================================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.result-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

.result-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(108,181,228,0.4);
  transform: translateY(-3px);
}

.result-client {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 12px;
}

.result-number {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.result-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-light), var(--border));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
  border: 2px dashed var(--border);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue-dark);
  color: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge-number { font-size: 32px; font-weight: 800; line-height: 1; }
.about-badge-label { font-size: 12px; opacity: 0.8; margin-top: 4px; }

.about-content .section-label { margin-bottom: 8px; }
.about-content .section-title { margin-bottom: 20px; }

.about-content p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.credential-tag {
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ============================================================
   PENTIMENTI PARTNERSHIP STRIP
   ============================================================ */
.partnership-strip {
  background: linear-gradient(135deg, #0A1E3D 0%, #0D2B5E 100%);
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.partnership-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.partnership-text { flex: 1; }
.partnership-text h3 {
  font-size: clamp(22px, 3vw, 32px);
  color: #fff;
  margin-bottom: 12px;
}
.partnership-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.partnership-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 10px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  padding: 96px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-group {
  justify-content: center;
  margin-top: 0;
}

.btn-white {
  background: #fff;
  color: var(--blue-dark);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--bg-light);
  color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { height: 40px; margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }

.footer-contact a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2B5E 100%);
  padding: 140px 0 80px;
}

.page-hero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  line-height: 1.65;
}

/* ============================================================
   ADVISORY PAGE
   ============================================================ */
.advisory-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
}
.step-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.step-content h3 { font-size: 20px; margin-bottom: 8px; }
.step-content p { color: var(--text-light); line-height: 1.7; }

/* ============================================================
   RESULTS PAGE
   ============================================================ */
.case-studies { display: flex; flex-direction: column; gap: 40px; margin-top: 48px; }

.case-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  transition: all var(--transition);
}
.case-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
}

.case-client-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-dark);
}

.case-win {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin: 8px 0;
}

.case-win-label {
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.case-content h3 { font-size: 22px; margin-bottom: 12px; }
.case-content p { color: var(--text-light); line-height: 1.7; }

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.contact-item h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-mid);
  margin-bottom: 8px;
}

.contact-item a, .contact-item p {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-item a:hover { color: var(--blue-dark); }

.contact-form {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.contact-form h3 { font-size: 22px; margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(0,124,194,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

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

/* ============================================================
   PENTIMENTI PAGE
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,89,169,0.08), rgba(108,181,228,0.12));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

.pentimenti-cta-box {
  background: linear-gradient(135deg, var(--navy), #0D2B5E);
  border-radius: var(--radius-lg);
  padding: 56px;
  margin-top: 64px;
  text-align: center;
}

.pentimenti-cta-box h2 { font-size: clamp(24px, 3vw, 36px); color: #fff; margin-bottom: 16px; }
.pentimenti-cta-box p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.divider {
  height: 1px;
  background: var(--border);
  margin: 64px 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-strip { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { bottom: -10px; right: 10px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .case-card { grid-template-columns: 1fr; gap: 24px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .results-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 72px; }
  .problem-inner { flex-direction: column; gap: 32px; text-align: center; }
  .problem-stat-number { font-size: 72px; }
  .hero-stats { gap: 24px; }
  .partnership-inner { flex-direction: column; gap: 28px; }
  .feature-grid { grid-template-columns: 1fr; }
  .pentimenti-cta-box { padding: 36px 24px; }
  .step-card { flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; }
  .btn-group .btn { justify-content: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
}

/* ============================================================
   INSIGHTS — BLOG LISTING
   ============================================================ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.insight-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.insight-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.insight-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-light);
}

.insight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insight-card:hover .insight-card-image img {
  transform: scale(1.04);
}

.insight-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.insight-card-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.insight-cat-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: rgba(0,124,194,0.08);
  border: 1px solid rgba(0,124,194,0.2);
  padding: 3px 10px;
  border-radius: 100px;
}

.insight-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: rgba(0,89,169,0.07);
  border: 1px solid rgba(0,89,169,0.18);
  padding: 3px 10px;
  border-radius: 100px;
}

.insight-source-badge--hero {
  background: rgba(108,181,228,0.15);
  border-color: rgba(108,181,228,0.3);
  color: var(--blue-light);
}

.insight-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.insight-title a {
  color: inherit;
}

.insight-title a:hover {
  color: var(--blue-dark);
}

.insight-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.insight-author,
.insight-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.insight-author svg,
.insight-date svg {
  flex-shrink: 0;
  color: var(--blue-light);
}

.insight-read-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-dark);
}

.insight-read-link:hover {
  color: var(--blue-mid);
}

.insights-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.insights-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
}

.insights-pagination .page-numbers:hover,
.insights-pagination .page-numbers.current {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
}

/* ============================================================
   INSIGHTS — SINGLE POST
   ============================================================ */
.post-hero {
  padding-bottom: 56px;
}

.post-meta-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.post-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.post-meta-item svg {
  opacity: 0.7;
}

.post-content-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.post-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mid);
}

.post-content h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 48px 0 16px;
  letter-spacing: -0.02em;
}

.post-content h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 36px 0 12px;
}

.post-content p {
  margin-bottom: 24px;
}

.post-content ul,
.post-content ol {
  margin: 0 0 24px 24px;
}

.post-content li {
  margin-bottom: 10px;
}

.post-content blockquote {
  border-left: 4px solid var(--blue-dark);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--bg-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
}

.post-content a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-decoration-color: rgba(0,89,169,0.3);
}

.post-content img {
  border-radius: var(--radius);
  margin: 32px 0;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.post-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--text-mid);
}

.author-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.author-avatar {
  width: 72px !important;
  height: 72px !important;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   LATEST INSIGHTS TEASER (homepage)
   ============================================================ */
.insights-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .insights-teaser-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .insights-grid { grid-template-columns: 1fr; }
  .insights-teaser-grid { grid-template-columns: 1fr; }
  .post-meta-bar { gap: 14px; }
  .author-box { flex-direction: column; gap: 16px; }
}

/* ===== INSIGHTS HUB — 2 PILLARS ===== */
.insights-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.insights-pillar {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 40px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  min-height: 380px;
}
.insights-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,89,169,0.12);
  border-color: var(--blue-light);
}
.insights-pillar--featured {
  background: linear-gradient(135deg, var(--navy), #0D2B5E);
  border: none;
  color: #fff;
}
.insights-pillar--featured:hover {
  box-shadow: 0 18px 50px rgba(10,30,61,0.4);
}
.insights-pillar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 14px;
}
.insights-pillar--featured .insights-pillar-label { color: var(--blue-light); }
.insights-pillar h3 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text-dark);
}
.insights-pillar--featured h3 { color: #fff; }
.insights-pillar p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}
.insights-pillar--featured p { color: rgba(255,255,255,0.8); }
.insights-pillar-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.insights-pillar-list li {
  font-size: 14px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
}
.insights-pillar-list li::before {
  content: "→";
  color: var(--blue-light);
  font-weight: 700;
}
.insights-pillar-list--light li { color: var(--text-light); }
.insights-pillar-list--light li::before { color: var(--blue-mid); }
.insights-pillar-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-top: 24px;
  display: inline-block;
}
.insights-pillar--featured .insights-pillar-link { color: var(--blue-light); }

/* ===== METHODOLOGY PAGE ===== */
.meth-phases {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 32px;
  position: relative;
}
.meth-phase {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  position: relative;
}
.meth-phase-num {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: var(--blue-dark);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
}
.meth-phase h4 {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 700;
}
.meth-phase ul { list-style: none; padding: 0; margin: 0; }
.meth-phase ul li {
  font-size: 12px;
  color: var(--text-light);
  padding: 5px 0;
  border-top: 1px solid var(--border);
  line-height: 1.45;
}
.meth-phase ul li:first-child { border: 0; }

.meth-flex {
  background: linear-gradient(135deg, #fff, var(--bg-light));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 48px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
}
.meth-flex-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.1;
}
.meth-flex-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-top: 8px;
  margin-bottom: 8px;
}
.meth-flex-table { width: 100%; font-size: 14px; }
.meth-flex-table th, .meth-flex-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.meth-flex-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue-mid);
  font-weight: 700;
  background: var(--bg-light);
}
.meth-flex-table td { color: var(--text-mid); }

.meth-disc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.meth-disc {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.meth-disc-num {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: var(--blue-mid);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 12px;
}
.meth-disc h4 { font-size: 16px; margin-bottom: 8px; color: var(--text-dark); }
.meth-disc p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }

@media (max-width: 1024px) {
  .insights-pillars { grid-template-columns: 1fr; }
  .meth-phases { grid-template-columns: repeat(2, 1fr); }
  .meth-disc-grid { grid-template-columns: repeat(2, 1fr); }
  .meth-flex { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .meth-phases, .meth-disc-grid { grid-template-columns: 1fr; }
}
