/* ==========================================================================
   HARTECH SOFTWARE - MODERN INSTITUTIONAL STYLES (2026 EDITION)
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #090D16;
  --bg-card: rgba(17, 24, 39, 0.75);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --bg-glass: rgba(15, 23, 42, 0.65);

  --salesforce-blue: #00A1E0;
  --salesforce-dark: #0070D2;
  --accent-cyan: #06B6D4;
  --accent-teal: #14B8A6;
  --accent-purple: #8B5CF6;
  --accent-indigo: #6366F1;
  --accent-emerald: #10B981;
  --accent-gold: #F59E0B;

  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(6, 182, 212, 0.3);
  --border-salesforce: rgba(0, 161, 224, 0.3);

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.5), 0 0 20px rgba(6, 182, 212, 0.15);
  --shadow-glow: 0 0 35px rgba(0, 161, 224, 0.25);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 161, 224, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(99, 102, 241, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1E293B;
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--salesforce-blue);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Reusable Components */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--salesforce-blue) 50%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-purple {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-purple) 50%, var(--accent-indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(0, 161, 224, 0.12);
  color: var(--salesforce-blue);
  border: 1px solid rgba(0, 161, 224, 0.3);
  backdrop-filter: blur(8px);
}

.badge-purple {
  background: rgba(139, 92, 246, 0.12);
  color: #C084FC;
  border-color: rgba(139, 92, 246, 0.3);
}

.badge-green {
  background: rgba(16, 185, 129, 0.12);
  color: #34D399;
  border-color: rgba(16, 185, 129, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  outline: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--salesforce-blue) 0%, var(--salesforce-dark) 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 161, 224, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 161, 224, 0.5);
  background: linear-gradient(135deg, #18b3f2 0%, var(--salesforce-blue) 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: #FFFFFF;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--salesforce-blue);
  background: rgba(0, 161, 224, 0.1);
  transform: translateY(-2px);
  color: var(--salesforce-blue);
}

.btn-appexchange {
  background: linear-gradient(135deg, #1589EE 0%, #005FB2 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(21, 137, 238, 0.3);
}

.btn-appexchange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(21, 137, 238, 0.5);
}

/* Language Toggle Button */
.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  padding: 0.5rem 0.9rem;
  border-radius: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.lang-toggle-btn:hover {
  border-color: var(--salesforce-blue);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 161, 224, 0.25);
}

.flag-svg {
  width: 18px;
  height: 13px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  display: inline-block;
  vertical-align: middle;
}

.lang-option {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition-fast);
}

.lang-option.active {
  color: var(--salesforce-blue);
  font-weight: 800;
}

.lang-divider {
  color: var(--border-light);
  opacity: 0.6;
}

/* Card glass style */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  transition: all var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-lg);
}

/* Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(9, 13, 22, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.6rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* White Circular Wrapper for Header Logo for high contrast */
.logo-img-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.logo-text span {
  color: var(--salesforce-blue);
}

.logo-subtext {
  font-size: 0.75rem;
  font-weight: 500;
  color: #94A3B8;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.2rem 0;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--salesforce-blue);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 7.5rem 0 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-ai-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-cyan);
  background: linear-gradient(135deg, rgba(0, 161, 224, 0.15), rgba(99, 102, 241, 0.18));
  border: 1px solid rgba(0, 161, 224, 0.35);
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  box-shadow: 0 4px 20px rgba(0, 161, 224, 0.2);
  backdrop-filter: blur(10px);
}

.hero-ai-tagline i {
  color: #F59E0B;
  font-size: 1.15rem;
  animation: rocketPulse 2s ease-in-out infinite alternate;
}

@keyframes rocketPulse {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-3px) scale(1.1); }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  font-weight: 400;
  line-height: 1.55;
}

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

.trust-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-item i {
  color: var(--salesforce-blue);
  font-size: 1.2rem;
}

/* Hero Visual / Card Showcase */
.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-card {
  width: 100%;
  padding: 1.8rem;
  background: radial-gradient(circle at top left, rgba(0, 161, 224, 0.15), rgba(17, 24, 39, 0.9));
  border: 1px solid rgba(0, 161, 224, 0.3);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 161, 224, 0.2);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(12px);
}

.sf-hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.sf-logo-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--salesforce-blue);
  font-size: 1.1rem;
}

.sf-logo-badge i {
  font-size: 1.8rem;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.stat-mini-box {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-light);
  padding: 1rem;
  border-radius: 16px;
  text-align: left;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.1rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.floating-pill {
  position: absolute;
  padding: 0.65rem 1.1rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border-glow);
  border-radius: 9999px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 3;
  animation: float 4s ease-in-out infinite alternate;
}

.floating-pill-1 {
  top: -15px;
  right: -15px;
}

.floating-pill-2 {
  bottom: -15px;
  left: -15px;
  animation-delay: -2s;
}

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

/* Section Header styling */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 2.2rem auto;
}

.section-title {
  font-size: 2.3rem;
  margin: 0.6rem 0 0.8rem 0;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Salesforce Consulting Section */
.salesforce-section {
  padding: 2.8rem 0;
  position: relative;
}

.sf-architect-banner {
  background: linear-gradient(135deg, rgba(0, 161, 224, 0.12) 0%, rgba(99, 102, 241, 0.12) 100%);
  border: 1px solid var(--border-salesforce);
  border-radius: 24px;
  padding: 2.2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.2rem;
  position: relative;
  overflow: hidden;
}

.sf-architect-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 161, 224, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.sf-banner-info h3 {
  font-size: 1.8rem;
  margin: 0.6rem 0 0.8rem 0;
}

.sf-banner-info p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.sf-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.sf-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-main);
}

.sf-feature-item i {
  color: var(--salesforce-blue);
  font-size: 1.1rem;
}

.appexchange-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(21, 137, 238, 0.4);
  border-radius: 20px;
  padding: 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Clients / Testimonials Section (Third Dimension, Capstone, goLance, Sifted) */
.clients-section {
  padding: 2.8rem 0;
  position: relative;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.client-card {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  transition: all var(--transition-normal);
}

.client-card:hover {
  border-color: var(--salesforce-blue);
  box-shadow: 0 15px 35px rgba(0, 161, 224, 0.2);
  transform: translateY(-3px);
}

.client-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.2rem;
}

.client-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--salesforce-blue);
  background: rgba(0, 161, 224, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 161, 224, 0.25);
}

.client-stars {
  color: #F59E0B;
  font-size: 0.8rem;
  display: flex;
  gap: 0.15rem;
}

.client-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-logo-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 0.35rem 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  max-width: 150px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.client-logo-img {
  max-height: 34px;
  max-width: 100%;
  object-fit: contain;
}

.client-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 161, 224, 0.2), rgba(99, 102, 241, 0.2));
  color: var(--salesforce-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid rgba(0, 161, 224, 0.3);
  flex-shrink: 0;
}

.client-name {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.client-url {
  font-size: 0.78rem;
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition-fast);
  margin-top: 0.15rem;
}

.client-url:hover {
  color: var(--salesforce-blue);
}

.client-role {
  font-size: 0.82rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

.client-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.client-card-footer {
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.client-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #10B981;
  background: rgba(16, 185, 129, 0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  width: fit-content;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 161, 224, 0.12);
  color: var(--salesforce-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 1px solid rgba(0, 161, 224, 0.25);
}

.service-card h4 {
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.8rem;
}

.tech-tag {
  font-size: 0.78rem;
  padding: 0.22rem 0.6rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Products Showcase Section */
.products-section {
  padding: 2.8rem 0;
  position: relative;
}

.products-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--salesforce-blue);
  color: #FFFFFF;
  border-color: var(--salesforce-blue);
  box-shadow: 0 4px 15px rgba(0, 161, 224, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.8rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.product-thumb-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #0F172A;
  border-bottom: 1px solid var(--border-light);
}

.product-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.product-card:hover .product-thumb {
  transform: scale(1.05);
}

.product-badge-overlay {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.8rem;
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-title {
  font-size: 1.3rem;
}

.product-url {
  font-size: 0.82rem;
  color: var(--accent-cyan);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.product-footer {
  margin-top: auto;
  padding-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.visit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--salesforce-blue);
  transition: gap var(--transition-fast);
}

.visit-link:hover {
  gap: 0.65rem;
  color: var(--accent-cyan);
}

/* Quiénes Somos / Tomás Harte Card */
.about-section {
  padding: 2.8rem 0;
  position: relative;
}

.tomas-harte-card {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid var(--border-glow);
  border-radius: 24px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.tomas-profile-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--salesforce-blue), var(--accent-purple));
  padding: 4px;
  box-shadow: 0 0 30px rgba(0, 161, 224, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.tomas-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--salesforce-blue);
  font-size: 4rem;
  overflow: hidden;
}

.tomas-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.tomas-info h3 {
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.tomas-subtitle {
  color: var(--accent-cyan);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tomas-bio {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.tomas-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.tomas-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.tomas-highlight-item i {
  color: var(--accent-emerald);
}

/* Why Hartech Section */
.why-section {
  padding: 2.8rem 0;
  position: relative;
}

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

.why-card {
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.why-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(99, 102, 241, 0.15));
  color: var(--accent-cyan);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.why-card h4 {
  font-size: 1.2rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Web To Lead Contact Form Section */
.contact-section {
  padding: 2.8rem 0 4rem 0;
  position: relative;
}

.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.8rem 2.5rem;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid var(--border-glow);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--salesforce-blue), var(--accent-cyan), var(--accent-purple));
}

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-header h2 {
  font-size: 2.1rem;
  margin-bottom: 0.6rem;
}

.contact-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.web-to-lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-light);
  color: #FFFFFF;
  font-family: var(--font-main);
  font-size: 0.92rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--salesforce-blue);
  box-shadow: 0 0 15px rgba(0, 161, 224, 0.25);
  background: rgba(15, 23, 42, 0.95);
}

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

.recaptcha-container {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  margin: 0.8rem 0;
}

.form-submit-wrap {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.btn-submit {
  width: 100%;
  max-width: 380px;
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Floating Actions (WhatsApp & LinkedIn) */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-fast);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.btn-wa {
  background: #25D366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-li {
  background: #0A66C2;
  box-shadow: 0 8px 25px rgba(10, 102, 194, 0.4);
}

/* Footer */
.footer {
  background: #050811;
  border-top: 1px solid var(--border-light);
  padding: 3rem 0 1.8rem 0;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--salesforce-blue);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-grid, .sf-architect-banner, .tomas-harte-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(9, 13, 22, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-menu.open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .web-to-lead-form {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .recaptcha-container, .form-submit-wrap {
    grid-column: span 1;
  }
  .contact-wrapper {
    padding: 2rem 1.2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .tomas-harte-card {
    text-align: center;
  }
  .tomas-highlights {
    grid-template-columns: 1fr;
  }
}
