/* ========================================
   Tealslabs Custom Styles - Professional Edition
   Clean, Minimal, Corporate Design
   ======================================== */

/* Google Fonts - Inter for Professional Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Primary Colors - TealsClub Palette */
  --teal-primary: #2d9a8f;
  --teal-dark: #1a7a70;
  --teal-darker: #0f5c55;
  --teal-light: #4eb8ad;
  --white: #ffffff;
  
  /* Navy/Dark Colors - From TealsClub Header */
  --navy-900: #1a2332;
  --navy-800: #232f42;
  --navy-700: #2c3a52;
  --navy-600: #3d4f6a;
  
  /* Accent Color - Orange from TealsClub */
  --accent-orange: #f97316;
  --accent-orange-dark: #ea580c;
  --accent-orange-light: #fb923c;
  
  /* Supporting Colors - Teal Tints */
  --teal-50: #e8f7f6;
  --teal-100: #d1efed;
  --teal-200: #a3dfdb;
  
  /* Neutral Palette - Refined Grays */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  
  /* Borders */
  --border-light: #e5e7eb;
  --border-medium: #d1d5db;
  
  /* Shadows - Subtle */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
  
  /* Border Radius - Sharper */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  
  /* Spacing Scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
}

/* ========================================
   Global Typography - Inter Font
   ======================================== */

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--slate-700);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

p {
  color: var(--slate-600);
  line-height: 1.7;
}

/* ========================================
   Header - Cleaner, More Minimal
   ======================================== */

.ud-header {
  background: var(--navy-900);
  box-shadow: none;
}

.ud-header.sticky {
  background: var(--navy-900);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Submenu dropdown - show on click */
.navbar-nav .nav-item .ud-submenu.show {
  opacity: 1 !important;
  visibility: visible !important;
  top: 100% !important;
  display: block !important;
}

/* Submenu styling */
.navbar-nav .nav-item .ud-submenu {
  z-index: 1000;
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link {
  color: var(--slate-700) !important;
  display: block;
  padding: 8px 0;
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link:hover {
  color: var(--teal-primary) !important;
}

/* Keep nav links white on dark header - both normal and sticky */
.navbar-nav .nav-item a,
.navbar-nav .nav-item > a,
.sticky .navbar-nav .nav-item a,
.sticky .navbar-nav .nav-item > a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--white) !important;
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item > a:hover,
.sticky .navbar-nav .nav-item a:hover,
.sticky .navbar-nav .nav-item > a:hover,
.navbar-nav .nav-item:hover > a,
.sticky .navbar-nav .nav-item:hover > a {
  color: rgba(255, 255, 255, 0.7) !important;
  opacity: 1;
}

.navbar-nav .nav-item a.active,
.sticky .navbar-nav .nav-item a.active {
  color: var(--accent-orange) !important;
}

/* Keep button and logo consistent on sticky header */
.sticky .navbar-btn .ud-white-btn {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--white);
}

.sticky .navbar-btn .ud-white-btn:hover {
  background: var(--accent-orange-dark);
  border-color: var(--accent-orange-dark);
}

.sticky .tealslabs-logo,
.sticky .tealslabs-logo:hover {
  color: var(--white) !important;
}

.sticky .tealslabs-logo span {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ========================================
   Buttons - Refined, Sharp Corners
   ======================================== */

.ud-main-btn {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  transition: all 0.2s ease;
}

.ud-main-btn:hover {
  background: var(--accent-orange-dark);
  border-color: var(--accent-orange-dark);
  transform: translateY(-1px);
}

.ud-white-btn {
  background: var(--white);
  color: var(--teal-primary);
  border-color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.ud-white-btn:hover {
  background: var(--slate-50);
  color: var(--teal-dark);
}

.ud-border-btn {
  background: transparent;
  color: var(--teal-primary);
  border: 1.5px solid var(--teal-primary);
  border-radius: var(--radius-md);
}

.ud-border-btn:hover {
  background: var(--teal-primary);
  color: var(--white);
}

.ud-link-btn {
  color: var(--white);
  font-weight: 500;
}

.ud-link-btn:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   Hero Section - More Breathing Room
   ======================================== */

.ud-hero {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--teal-primary) 100%);
  padding-top: 200px;
  padding-bottom: 140px;
  position: relative;
}

.ud-hero::before {
  display: none;
}

/* Home page hero with background image */
.ud-hero-home {
  background: url('../images/tealslabs/background-home-2.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}

.ud-hero-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    rgba(26, 35, 50, 0.85) 0%, 
    rgba(45, 154, 143, 0.7) 100%);
  display: block;
  z-index: 0;
}

.ud-hero-home .container {
  position: relative;
  z-index: 1;
}

.ud-hero-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.ud-hero-desc {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 600px;
}

/* ========================================
   Section Titles - Cleaner Tags
   ======================================== */

.ud-section-title {
  margin-bottom: var(--space-xl);
}

.ud-section-title span {
  color: var(--teal-primary);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.ud-section-title h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.ud-section-title p {
  font-size: 17px;
  color: var(--slate-500);
  max-width: 600px;
}

.ud-section-title .ud-section-subheadline {
  font-size: 20px;
  font-weight: 500;
  color: var(--slate-700);
  font-style: italic;
  margin-bottom: var(--space-xs);
}

.ud-section-title.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   About Section Tags
   ======================================== */

.ud-about-content .tag {
  color: var(--teal-primary);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.ud-about-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.ud-about-content p {
  font-size: 16px;
  color: var(--slate-600);
  margin-bottom: var(--space-md);
}

.ud-about-content .ud-main-btn {
  margin-top: var(--space-md);
}

/* ========================================
   Problem Section - Higher Contrast
   ======================================== */

.ud-problem {
  background: var(--slate-50);
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.ud-problem-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all 0.2s ease;
}

.ud-problem-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.ud-problem-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1.5px solid var(--teal-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.ud-problem-icon i {
  font-size: 24px;
  color: var(--teal-primary);
}

.ud-problem-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

.ud-problem-desc {
  color: var(--slate-500);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* ========================================
   Stack Section - Cleaner Diagram
   ======================================== */

.ud-stack {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.ud-stack-diagram {
  background: var(--slate-50);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.ud-stack-layer {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-sm);
  transition: all 0.2s ease;
}

.ud-stack-layer:hover {
  border-color: var(--teal-primary);
}

.ud-stack-layer.active {
  background: var(--teal-primary);
  border-color: var(--teal-primary);
}

.ud-stack-layer.active .ud-stack-name,
.ud-stack-layer.active .ud-stack-desc {
  color: var(--white);
}

.ud-stack-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.ud-stack-desc {
  font-size: 13px;
  color: var(--slate-500);
  margin: 0;
}

.ud-stack-arrow {
  color: var(--slate-400);
  font-size: 18px;
  margin: var(--space-xs) 0;
}

/* ========================================
   Products Grid - Clean Cards
   ======================================== */

.ud-products-grid {
  padding: var(--space-3xl) 0;
  background: var(--slate-50);
  border-top: 1px solid var(--border-light);
}

.ud-product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  height: 100%;
  transition: all 0.2s ease;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.ud-product-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.ud-product-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 1.5px solid var(--teal-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.ud-product-icon i {
  font-size: 28px;
  color: var(--teal-primary);
}

.ud-product-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.ud-product-tagline {
  font-size: 13px;
  color: var(--teal-primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.02em;
}

.ud-product-desc {
  color: var(--slate-500);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.ud-product-link {
  color: var(--teal-primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.ud-product-link:hover {
  color: var(--teal-dark);
  gap: 10px;
}

/* ========================================
   Audience Section - Clean Layout
   ======================================== */

.ud-audience {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.ud-audience-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--slate-50);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  transition: all 0.2s ease;
}

.ud-audience-item:hover {
  border-color: var(--teal-primary);
  background: var(--white);
}

.ud-audience-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ud-audience-icon i {
  font-size: 20px;
  color: var(--white);
}

.ud-audience-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.ud-audience-text p {
  color: var(--slate-500);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* ========================================
   CTA Section - Clean Gradient
   ======================================== */

.ud-cta {
  background: linear-gradient(180deg, var(--teal-primary) 0%, var(--navy-900) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.ud-cta-title {
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.ud-cta-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  margin-bottom: var(--space-lg);
}

.ud-cta .ud-white-btn {
  padding: 14px 36px;
  font-size: 15px;
}

/* ========================================
   Philosophy Section - Dark Contrast
   ======================================== */

.ud-philosophy {
  padding: var(--space-3xl) 0;
  background: var(--slate-900);
}

.ud-philosophy .ud-section-title span {
  background: transparent;
  color: var(--teal-light);
}

.ud-philosophy .ud-section-title h2 {
  color: var(--white);
}

.ud-philosophy .ud-section-title p {
  color: var(--slate-400);
}

.ud-philosophy-quote {
  font-size: 24px;
  font-weight: 400;
  color: var(--slate-300);
  font-style: normal;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

/* Philosophy Cards - Dark Theme */
.ud-philosophy .ud-problem-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ud-philosophy .ud-problem-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.ud-philosophy .ud-problem-icon {
  background: transparent;
  border-color: var(--teal-light);
}

.ud-philosophy .ud-problem-icon i {
  color: var(--teal-light);
}

.ud-philosophy .ud-problem-title {
  color: var(--white);
}

.ud-philosophy .ud-problem-desc {
  color: var(--slate-400);
}

/* Quote Highlight - Teal */
.ud-quote-highlight {
  font-size: 22px;
  font-weight: 500;
  color: var(--teal-primary);
  margin: 0;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* Lead Text - Large Body Copy */
.ud-lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--slate-600);
  margin-bottom: var(--space-md);
}

.ud-lead strong {
  color: var(--slate-900);
  font-weight: 600;
}

.ud-lead-lg {
  font-size: 20px;
}

/* ========================================
   Insight Section - Emphasis Block
   ======================================== */

.ud-insight {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.ud-insight-content {
  padding: var(--space-xl);
}

.ud-insight-lead {
  font-size: 18px;
  color: var(--slate-500);
  margin-bottom: var(--space-sm);
  font-weight: 400;
}

.ud-insight-highlight {
  font-size: 32px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.ud-insight-text {
  font-size: 18px;
  color: var(--slate-600);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto var(--space-md);
}

.ud-insight-conclusion {
  font-size: 17px;
  font-weight: 500;
  color: var(--slate-700);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   Why This Matters Section
   ======================================== */

.ud-why-matters {
  padding: var(--space-3xl) 0;
  background: var(--slate-50);
  border-top: 1px solid var(--border-light);
}

.ud-why-matters-content {
  padding: var(--space-lg);
}

.ud-why-matters-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-primary);
  margin-bottom: var(--space-md);
}

.ud-why-matters-lead {
  font-size: 28px;
  font-weight: 600;
  color: var(--slate-900);
  line-height: 1.4;
  margin-bottom: var(--space-md);
}

.ud-why-matters-text {
  font-size: 18px;
  color: var(--slate-600);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.ud-why-matters-text strong {
  color: var(--teal-primary);
  font-weight: 600;
}

/* ========================================
   Blog Sidebar Styles
   ======================================== */

.ud-sidebar-cta {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--teal-primary) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.ud-sidebar-cta h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.ud-sidebar-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: var(--space-sm);
}

.ud-sidebar-cta .ud-main-btn {
  width: 100%;
  text-align: center;
}

.ud-sidebar-related {
  background: var(--slate-50);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.ud-sidebar-related h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: var(--space-md);
}

.ud-sidebar-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ud-sidebar-related li {
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-light);
}

.ud-sidebar-related li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.ud-sidebar-related li a {
  color: var(--slate-800);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

.ud-sidebar-related li a:hover {
  color: var(--teal-primary);
}

.ud-sidebar-related li span {
  color: var(--slate-500);
  font-size: 13px;
}

/* ========================================
   Contact Page Styles
   ======================================== */

.ud-contact-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.ud-contact-intro {
  color: var(--slate-600);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.ud-contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  padding: var(--space-lg);
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.ud-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.ud-contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ud-contact-item-icon i {
  font-size: 20px;
  color: var(--white);
}

.ud-contact-item-content {
  flex: 1;
}

.ud-contact-item-content span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-500);
  margin-bottom: 4px;
}

.ud-contact-item-content a {
  font-size: 16px;
  font-weight: 500;
  color: var(--teal-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ud-contact-item-content a:hover {
  color: var(--teal-darker);
}

.ud-contact-item-content p {
  font-size: 15px;
  color: var(--slate-700);
  margin: 0;
  line-height: 1.5;
}

.ud-contact-audience {
  margin-bottom: var(--space-2xl);
}

.ud-contact-audience h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-primary);
  margin-bottom: var(--space-md);
}

.ud-contact-audience-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.ud-contact-audience-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.ud-contact-audience-item i {
  font-size: 18px;
  color: var(--teal-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.ud-contact-audience-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 2px;
}

.ud-contact-audience-item p {
  font-size: 14px;
  color: var(--slate-600);
  margin: 0;
  line-height: 1.5;
}

.ud-contact-next-steps h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-primary);
  margin-bottom: var(--space-md);
}

.ud-contact-next-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.ud-contact-next-steps li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 15px;
  color: var(--slate-700);
}

.ud-contact-next-steps li i {
  font-size: 16px;
  color: var(--teal-primary);
}

/* ========================================
   Feature List - Clean Checks
   ======================================== */

.ud-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ud-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: var(--space-sm);
  color: var(--slate-600);
  font-size: 15px;
  line-height: 1.5;
}

.ud-feature-list li i {
  color: var(--teal-primary);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ========================================
   Developer Cards - Minimal
   ======================================== */

.ud-dev-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  height: 100%;
  transition: all 0.2s ease;
}

.ud-dev-card:hover {
  border-color: var(--teal-primary);
  box-shadow: var(--shadow-md);
}

.ud-dev-card h4,
.ud-dev-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: var(--space-xs);
}

.ud-dev-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1.5px solid var(--teal-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.ud-dev-icon i {
  font-size: 24px;
  color: var(--teal-primary);
}

/* ========================================
   Page Banner - Clean
   ======================================== */

.ud-page-banner {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--teal-primary) 100%);
  padding: 140px 0 80px;
}

.ud-page-banner h1 {
  color: var(--white);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ========================================
   Contact Form - Refined
   ======================================== */

.ud-contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.ud-contact-form-title {
  color: var(--navy-900) !important;
  margin-bottom: 24px;
}

.ud-google-form-container {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.ud-google-form-container iframe {
  display: block;
  min-height: 600px;
}

.ud-info-icon {
  background: var(--white);
  border: 1.5px solid var(--teal-primary);
  color: var(--teal-primary);
  border-radius: var(--radius-md);
}

.ud-contact-title span {
  color: var(--teal-primary);
}

/* ========================================
   Footer - Clean Dark
   ======================================== */

.ud-footer {
  background: var(--navy-900);
}

.ud-widget-socials li a {
  background: var(--accent-orange);
  border-radius: 50%;
  transition: all 0.2s ease;
}

.ud-widget-socials li a:hover {
  background: var(--teal-primary);
}

.ud-widget-links li a {
  font-size: 14px;
  color: var(--slate-400);
}

.ud-widget-links li a:hover {
  color: var(--white);
}

.ud-widget-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ud-footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.ud-footer-bottom a:hover {
  color: var(--teal-light);
}

/* ========================================
   Blog - Clean Cards
   ======================================== */

.ud-blog-title a {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.ud-blog-title a:hover {
  color: var(--teal-primary);
}

.ud-blog-date {
  color: var(--teal-primary);
  font-size: 13px;
  font-weight: 500;
}

.ud-newsletter-box {
  background: var(--teal-primary);
  border-radius: var(--radius-lg);
}

.ud-blog-tags li a {
  background: var(--slate-100);
  color: var(--slate-600);
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.ud-blog-tags li a:hover {
  background: var(--teal-primary);
  color: var(--white);
}

/* ========================================
   Back to Top - Subtle
   ======================================== */

.back-to-top {
  background: var(--accent-orange);
  border-radius: var(--radius-md);
}

.back-to-top:hover {
  background: var(--accent-orange-dark);
}

/* ========================================
   Logo - Professional
   ======================================== */

/* Logo - Icon + Text */
.tealslabs-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.tealslabs-logo .logo-icon {
  height: 36px;
  width: 36px;
  object-fit: contain;
}

.tealslabs-logo .logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}

.tealslabs-logo .logo-text-light {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.tealslabs-logo:hover {
  text-decoration: none;
}

.tealslabs-logo:hover .logo-text {
  color: var(--white);
}

/* Footer logo */
.ud-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: var(--space-md);
  overflow: visible;
}

.ud-footer-logo .logo-icon {
  height: 56px;
  width: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.ud-footer-logo .logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.ud-footer-logo .logo-text-light {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer widget - ensure no clipping */
.ud-widget {
  overflow: visible;
}

/* ========================================
   Badge Styling
   ======================================== */

.badge {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}

/* ========================================
   Solution Cards - Clean
   ======================================== */

.ud-solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  height: 100%;
}

.ud-solution-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.ud-solution-header {
  background: var(--teal-primary);
  padding: var(--space-lg);
  color: var(--white);
}

.ud-solution-body {
  padding: var(--space-lg);
}

/* ========================================
   Responsive Adjustments
   ======================================== */

@media (max-width: 991px) {
  .ud-hero {
    padding-top: 160px;
    padding-bottom: 100px;
  }
  
  .ud-hero-title {
    font-size: 36px;
  }
  
  .ud-section-title h2 {
    font-size: 28px;
  }
  
  .ud-cta-title {
    font-size: 26px;
  }
  
  .ud-philosophy-quote {
    font-size: 20px;
  }
  
  .ud-insight-highlight {
    font-size: 28px;
  }
  
  .ud-why-matters-lead {
    font-size: 24px;
  }
  
  .ud-problem,
  .ud-stack,
  .ud-products-grid,
  .ud-audience,
  .ud-cta,
  .ud-philosophy {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 767px) {
  .ud-hero {
    padding-top: 130px;
    padding-bottom: 80px;
  }
  
  .ud-hero-title {
    font-size: 28px;
  }
  
  .ud-section-title h2 {
    font-size: 24px;
  }
  
  .ud-cta-title {
    font-size: 22px;
  }
  
  .ud-stack-diagram {
    padding: var(--space-md);
  }
  
  .ud-product-card,
  .ud-problem-card {
    padding: var(--space-md);
  }
}

/* ========================================
   Utility Classes
   ======================================== */

.text-teal {
  color: var(--teal-primary) !important;
}

.bg-slate-50 {
  background-color: var(--slate-50) !important;
}

.border-light {
  border-color: var(--border-light) !important;
}
