/* ============================================================
   P-BON CONSULTING — MAIN STYLESHEET
   Theme: Warm & Trustworthy | Blue + Orange Authority
   ============================================================ */

:root {
  --navy:       #0D2B4E;
  --navy-mid:   #1A3D6B;
  --navy-light: #2E5F94;
  --orange:     #E8620A;
  --orange-light: #FF7A24;
  --orange-pale: #FFF0E6;
  --white:      #FFFFFF;
  --off-white:  #F7F9FC;
  --gray-100:   #F0F4F8;
  --gray-200:   #E2E8F0;
  --gray-600:   #4A5568;
  --gray-800:   #1A202C;
  --text:       #1A202C;
  --text-light: #4A5568;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  --radius:   12px;
  --radius-lg: 20px;
  --shadow:   0 4px 24px rgba(13,43,78,0.10);
  --shadow-lg: 0 12px 48px rgba(13,43,78,0.16);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* UTILITY */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-pad { padding: 90px 0; }
.bg-light { background: var(--off-white); }
.bg-dark { background: var(--navy); color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 1rem;
}
.section-label.light {
  background: rgba(232,98,10,0.15);
  color: var(--orange-light);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.2rem;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  margin-bottom: 3rem;
}
.section-cta { text-align: center; margin-top: 3rem; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,98,10,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,98,10,0.4);
}
.btn-lg { padding: 16px 34px; font-size: 1.02rem; }
.btn-xl { padding: 18px 40px; font-size: 1.08rem; border-radius: 14px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(13,43,78,0.12);
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}
.logo-link { flex-shrink: 0; }
.logo-img { height: 52px; width: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--orange);
  background: var(--orange-pale);
}
.nav-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 210px;
  z-index: 100;
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: 8px;
  transition: all var(--transition);
}
.dropdown-menu a:hover {
  background: var(--orange-pale);
  color: var(--orange);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.nav-cta { margin-left: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e4d7b 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--orange);
  top: -100px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--orange);
  bottom: -100px; left: 10%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,98,10,0.2);
  border: 1px solid rgba(232,98,10,0.4);
  color: #FFB07A;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline .accent { color: var(--orange-light); }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-ctas .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.hero-ctas .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.hero-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* Hero Card */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}
.status-dot {
  width: 10px; height: 10px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(74,222,128,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.industry-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.2s forwards;
}
.animate-in {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeIn 0.8s 0.5s forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--orange);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-icon { font-size: 1.2rem; }
.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.35);
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}
.pain-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(232,98,10,0.12);
  transform: translateY(-4px);
}
.pain-icon { font-size: 2rem; margin-bottom: 1rem; }
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.pain-card p { font-size: 0.92rem; color: var(--text-light); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  display: block;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.2rem; }
.card-link { font-size: 0.88rem; font-weight: 600; color: var(--orange); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.industry-card {
  display: block;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.industry-card.legal { background: linear-gradient(135deg, #0D2B4E 0%, #1A3D6B 100%); color: var(--white); }
.industry-card.medical { background: linear-gradient(135deg, #0B4D3B 0%, #1a7a5c 100%); color: var(--white); }
.industry-card.financial { background: linear-gradient(135deg, #4A1D96 0%, #6D28D9 100%); color: var(--white); }
.industry-card.smb { background: linear-gradient(135deg, #7C2D12 0%, #C2410C 100%); color: var(--white); }
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.industry-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.industry-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.industry-card p { font-size: 0.88rem; opacity: 0.85; margin-bottom: 1.5rem; }
.industry-card .card-link { color: rgba(255,255,255,0.9); font-weight: 600; font-size: 0.88rem; }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}
.founder-image-wrap {
  position: relative;
}
.founder-img {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.founder-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--orange);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.founder-title {
  font-size: 0.95rem;
  color: var(--orange-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.founder-bio {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.founder-bio strong { color: var(--white); }
.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.5rem 0 2rem;
}
.cred-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--orange-pale) 0%, #FFF5EE 100%);
  border-top: 1px solid #FFD5B5;
  border-bottom: 1px solid #FFD5B5;
}
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1.2rem;
}
.cta-sub {
  font-size: 1.02rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.cta-alt { margin-top: 1.5rem; font-size: 0.9rem; color: var(--text-light); }
.cta-alt a { color: var(--orange); font-weight: 600; }
.cta-alt a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin: 1rem 0 1.5rem; }
.footer-logo { height: 44px; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--orange-light); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 80px;
  color: var(--white);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--white);
}
.page-hero p { font-size: 1.08rem; color: rgba(255,255,255,0.75); max-width: 600px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.about-img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.about-content p { color: var(--text-light); margin-bottom: 1.2rem; line-height: 1.8; }
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.credential-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.credential-card .cred-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.credential-card h4 { font-family: var(--font-display); font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.credential-card p { font-size: 0.85rem; color: var(--text-light); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.services-detail:last-child { border-bottom: none; }
.services-detail.reverse { direction: rtl; }
.services-detail.reverse > * { direction: ltr; }
.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.service-detail-content p { color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.8; }
.service-detail-img {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  font-size: 5rem;
}
.feature-list { list-style: none; }
.feature-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ============================================================
   VERTICAL LANDING PAGES
   ============================================================ */
.vertical-hero {
  padding: 140px 0 80px;
  color: var(--white);
}
.vertical-hero.legal-bg { background: linear-gradient(135deg, #0D2B4E 0%, #1e4a7d 100%); }
.vertical-hero.medical-bg { background: linear-gradient(135deg, #064E3B 0%, #0f7a5e 100%); }
.vertical-hero.financial-bg { background: linear-gradient(135deg, #3B0764 0%, #6D28D9 100%); }
.vertical-hero.smb-bg { background: linear-gradient(135deg, #7C2D12 0%, #ea580c 100%); }
.vertical-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.vertical-hero .hero-accent { color: var(--orange-light); }
.vertical-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 620px; margin-bottom: 2rem; }
.vertical-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.problems-section { padding: 80px 0; }
.problems-header { max-width: 600px; margin-bottom: 3rem; }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.problem-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.problem-icon { font-size: 1.5rem; flex-shrink: 0; }
.problem-item h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.problem-item p { font-size: 0.88rem; color: var(--text-light); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.contact-method-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-method h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); font-weight: 600; margin-bottom: 4px; }
.contact-method a, .contact-method span { font-size: 1rem; font-weight: 600; color: var(--navy); }
.contact-method a:hover { color: var(--orange); }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}
input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,98,10,0.1);
}
textarea { resize: vertical; min-height: 140px; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note { font-size: 0.82rem; color: var(--text-light); text-align: center; margin-top: 1rem; }
.form-success {
  display: none;
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: #065F46;
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }

  /* Nav */
  .main-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 2rem;
    gap: 0.5rem;
    overflow-y: auto;
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding: 0 0 0 1rem; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 60px 0 40px; text-align: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-ctas { justify-content: center; }
  .hero-note { text-align: center; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }

  /* Grids */
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .founder-inner { grid-template-columns: 1fr; gap: 2rem; }
  .founder-image-wrap::after { display: none; }
  .founder-img { max-width: 280px; margin: 0 auto; }
  .trust-bar-inner { gap: 1rem; }
  .trust-divider { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-detail { grid-template-columns: 1fr; }
  .services-detail.reverse { direction: ltr; }
  .problems-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* CTA */
  .cta-features { flex-direction: column; align-items: center; }
}
