/* ==========================================================================
   Convera Developments Custom Design Tokens & Customization Overrides
   ========================================================================== */

:root {
  /* Brand Primary Colors */
  --convera-primary: #0a0a0a;
  --convera-secondary: #f4f4f4;
  --convera-accent: #ff6b35;
  --convera-surface: #ffffff;
  --convera-border: #e2e2e2;
  --convera-text-main: #111111;
  --convera-text-muted: #666666;
  
  /* Typography */
  --font-primary: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  font-family: var(--font-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Complete removal of Webflow branding */
.w-webflow-badge,
.w-webflow-badge * {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* ==========================================================================
   Founder Showcase Section (Landing Page)
   ========================================================================== */

.founder-section {
  position: relative;
  background-color: var(--background-colors--bg-color-03, #111418);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.founder-wrapper {
  width: 100%;
}

.founder-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 56px;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.founder-image-col {
  position: relative;
}

.founder-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #181c22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.founder-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 56px -12px rgba(0, 0, 0, 0.7);
}

.founder-image-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-image-wrapper:hover .founder-photo {
  transform: scale(1.04);
}

.founder-floating-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(14, 17, 21, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.founder-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
  flex-shrink: 0;
}

.founder-badge-title {
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.2;
}

.founder-badge-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.2;
  margin-top: 2px;
}

.founder-content-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founder-heading-block h2 {
  margin: 0;
  font-size: var(--_typography---heading-h3--h3-font-size, 36px);
  line-height: var(--_typography---heading-h3--h3-line-height, 1.2);
  color: #ffffff;
}

.founder-quote-box {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid #ff6b35;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 4px 0;
}

.founder-quote-text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  font-size: 16px;
  margin: 0;
}

.founder-quote-author {
  margin-top: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.founder-quote-author span {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

.founder-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media screen and (max-width: 640px) {
  .founder-pillars-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.founder-pillar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.founder-pillar-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
}

.founder-pillar-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.founder-pillar-num {
  font-size: 11px;
  font-weight: 700;
  color: #ff6b35;
  letter-spacing: 0.05em;
}

.founder-pillar-title {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
}

.founder-pillar-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
  margin: 0;
}

.founder-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.founder-actions-row .button-primary:hover .button-primary-text-block .button-text-b1,
.founder-actions-row .button-tertiary:hover .button-tertiary-text-block .button-text-b1 {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.founder-actions-row .button-primary .button-primary-text-block .button-text-b1,
.founder-actions-row .button-tertiary .button-tertiary-text-block .button-text-b1 {
  transition: transform 0.3s ease;
}
.founder-actions-row .button-primary:hover .button-primary-icon-block img,
.founder-actions-row .button-tertiary:hover .button-tertiary-icon-block img {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.founder-actions-row .button-primary .button-primary-icon-block img,
.founder-actions-row .button-tertiary .button-tertiary-icon-block img {
  transition: transform 0.3s ease;
}



/* 4-Image Clean Gallery for About Page */
.team-cards-block {
  grid-template-columns: repeat(4, 1fr) !important;
  grid-template-rows: auto !important;
  gap: 20px !important;
}

@media screen and (max-width: 991px) {
  .team-cards-block {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.team-card {
  gap: 0 !important;
}

.team-card-image-block {
  width: 100% !important;
  height: 380px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: #14171a !important;
  transition: transform 0.4s ease, border-color 0.4s ease !important;
}

.team-card:hover .team-card-image-block {
  transform: translateY(-4px) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Footer Contact Layout: Phone number strictly UNDER Email address */
.footer-contact-block {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  width: 100% !important;
  margin-top: 24px !important;
}

.footer-contact-link-block {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

.footer-contact-link-block .paragraph-p1 {
  min-width: 52px !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.footer-contact-link-block .contact-link {
  margin: 0 !important;
  color: #ffffff !important;
}
