﻿/* =========================================
   ENTERPRISE CSS DESIGN SYSTEM
   ContextWorks Digital Systems
   Microsoft-Aligned Consulting Firm
========================================= */

/* =========================
   CSS VARIABLES
========================= */
:root {
  /* Primary Colors - Azure Aligned */
  --color-primary: #0078d4;           /* Microsoft Azure Blue */
  --color-primary-dark: #005a9e;      
  --color-primary-light: #50a0d8;     
  --color-primary-hover: #106ebe;
  
  /* Neutral Palette */
  --color-text: #1a1a1a;              
  --color-text-secondary: #4a4a4a;    
  --color-text-muted: #6e6e6e;        
  --color-border: #e0e0e0;
  --color-border-light: #f0f0f0;
  
  /* Background Colors */
  --color-bg-white: #ffffff;
  --color-bg-light: #fafbfc;          
  --color-bg-muted: #f5f6f8;          
  --color-bg-dark: #1e293b;           
  
  /* Accents */
  --color-success: #107c10;
  --color-warning: #d83b01;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 8px 20px rgba(0, 120, 212, 0.15);
  
  /* Spacing Scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  
  /* Typography */
  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-size-xs: 14px;
  --font-size-sm: 15px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 32px;
  --font-size-4xl: 40px;
  --font-size-5xl: 48px;
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  --line-height-tight: 1.3;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* =========================
   LAYOUT CONTAINERS
========================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-white {
  background: #ffffff;
}

.section-light {
  background: #f9fafb;
}

.section-muted {
  background: #f5f6f8;
}

.section-dark {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #ffffff;
}

.section-dark h3 {
  color: #ffffff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.9);
}

.section-dark .btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: #ffffff;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.section-dark .btn-primary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.02em;
}

h2 {
  font-size: 34px;
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.text-large {
  font-size: var(--font-size-lg);
}

.text-muted {
  color: var(--color-text-muted);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 720px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

/* =========================
   HEADER & NAVIGATION
========================= */
.header {
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  max-height: 150px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Logo Styling */
.logo-link {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  background: #ffffff;
  border-radius: 6px;
  transition: all var(--transition-base);
}

.logo-link:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.logo {
  display: block;
  height: 116px;
  width: auto;
  filter: none;
  transition: all var(--transition-base);
}

.logo:hover {
  transform: scale(1.02);
}

.footer-logo {
  display: block;
  height: 48px;
  width: auto;
  opacity: 1;
  filter: brightness(1.1);
  margin-bottom: var(--space-sm);
}

nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

nav a:hover {
  color: var(--color-primary);
  background: var(--color-bg-light);
}

nav a.active {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

.btn-nav {
  background: var(--color-primary) !important;
  color: #ffffff !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-semibold);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.btn-nav:hover {
  background: var(--color-primary-hover) !important;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* =========================
   HERO SECTION
========================= */
.hero {
  background: linear-gradient(135deg, var(--color-bg-light) 0%, #e8f4fd 100%);
  padding: var(--space-2xl) 0;
  min-height: 560px;
  display: flex;
  align-items: center;
}

/* Hero Image Styling */
.hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 2.5rem auto 0;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-slow);
}

.hero-image:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Service Visual Styling */
.service-visual {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.service-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: block;
}

.service-visual img:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-visual figcaption {
  margin-top: 1rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-style: italic;
  line-height: var(--line-height-normal);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-text h1 {
  font-size: 46px;
  margin-bottom: var(--space-md);
  color: var(--color-text);
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
}

.hero-value-prop {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* =========================
   BUTTONS & CTAS
========================= */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 250ms ease;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-primary-large {
  padding: 18px 40px;
  font-size: var(--font-size-lg);
}

/* =========================
   CARDS & GRID LAYOUTS
========================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.card h4 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
}

.card-icon img {
  width: 32px;
  height: 32px;
}

/* Who We Help Section */
.who-we-help-section {
  padding: 80px 0;
  background: white;
}

.section-title-center {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.who-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.who-card {
  background: #f9fafb;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.who-card:hover {
  background: white;
  border-color: #0078d4;
  box-shadow: 0 4px 12px rgba(0, 120, 212, 0.15);
  transform: translateY(-4px);
}

.who-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.who-card-icon svg {
  stroke: white;
}

.who-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.who-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* ========== Featured Use Cases Section ========== */
.use-case-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.use-case-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 40px;
  transition: all 0.3s ease;
}

.use-case-card:hover {
  border-color: #0078d4;
  box-shadow: 0 8px 24px rgba(0, 120, 212, 0.12);
  transform: translateY(-4px);
}

.use-case-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.use-case-icon svg {
  stroke: #ffffff;
}

.use-case-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.use-case-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 20px 0;
}

.use-case-outcome {
  font-size: 15px;
  line-height: 1.5;
  color: #0078d4;
  padding: 16px;
  background: #f0f8ff;
  border-left: 3px solid #0078d4;
  border-radius: 4px;
  margin-top: 20px;
}

.use-case-outcome strong {
  font-weight: 600;
  color: #005a9e;
}

.section-intro-center {
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: #555;
  margin: -30px auto 50px auto;
  max-width: 700px;
}

@media (max-width: 1024px) {
  .use-case-cards {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 700px;
  }
  
  .use-case-card {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .use-case-card {
    padding: 28px 24px;
  }
  
  .use-case-icon {
    width: 64px;
    height: 64px;
  }
  
  .use-case-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .use-case-card h3 {
    font-size: 20px;
  }
  
  .section-intro-center {
    font-size: 16px;
    margin: -20px auto 40px auto;
  }
}

/* ========== Trusted By Industries Section ========== */
.trusted-by-title {
  margin-bottom: 60px;
}

.trusted-industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.trusted-industry {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trusted-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.trusted-icon svg {
  stroke: #2563eb;
  stroke-width: 2;
}

.trusted-industry:hover .trusted-icon {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.trusted-industry:hover .trusted-icon svg {
  stroke: #ffffff;
}

.trusted-industry h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.trusted-industry p {
  font-size: 15px;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
}

@media (max-width: 1024px) {
  .trusted-industries {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .trusted-by-title {
    margin-bottom: 40px;
  }
  
  .trusted-icon {
    width: 72px;
    height: 72px;
  }
  
  .trusted-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .trusted-industry h4 {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .who-cards {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .who-we-help-section {
    padding: 60px 0;
  }
  
  .section-title-center {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .who-card {
    padding: 32px 24px;
  }
}


/* =========================
   ICONS
========================= */
.icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  stroke: var(--color-primary);
}

.service-icon,
.stage-icon {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  stroke: var(--color-primary);
  flex-shrink: 0;
}

/* =========================
   SERVICE & PROCESS LAYOUTS
========================= */
.service-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.service-number,
.stage-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}

.stage-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.stage-duration {
  margin-left: auto;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
  background: var(--color-bg-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

/* =========================
   LISTS
========================= */
ul, ol {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
}

li {
  margin-bottom: var(--space-xs);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.problem-list,
.capability-list,
.use-case-list {
  list-style: none;
  margin-left: 0;
}

.problem-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
}

.check {
  color: var(--color-success);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xl);
  flex-shrink: 0;
}

/* =========================
   FORMS
========================= */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-md);
}

label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  font-size: var(--font-size-base);
  font-family: var(--font-primary);
  color: var(--color-text);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
}

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

button[type="submit"],
.contact-form button {
  width: 100%;
  padding: 14px 32px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

button[type="submit"]:hover,
.contact-form button:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.form-card {
  background: var(--color-bg-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
}

/* =========================
   CONTACT PAGE SPECIFIC
========================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-intro {
  padding: var(--space-lg);
}

.contact-info-box {
  background: var(--color-bg-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  margin-top: var(--space-lg);
}

.contact-info-box h4 {
  margin-bottom: var(--space-sm);
}

.contact-info-box p {
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-base);
}

.contact-info-box a {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
}

.contact-info-box a:hover {
  text-decoration: underline;
}

/* =========================
   PAGE HEADER
========================= */
.page-header,
.page-hero {
  background: linear-gradient(135deg, var(--color-bg-light) 0%, #e8f4fd 100%);
  padding: var(--space-xl) 0;
  text-align: center;
  border-bottom: 1px solid var(--color-border-light);
}

.page-header h2,
.page-hero h2 {
  margin-bottom: var(--space-sm);
}

.page-header p,
.page-hero p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 720px;
  margin: 0 auto;
}

/* =========================
   PRODUCTS PAGE
========================= */
.product-header {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.product-visual {
  flex-shrink: 0;
  width: 100%;
  max-width: 400px;
}

.product-image {
  width: 100%;
  height: auto;
}

.product-label {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.product-tagline {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.product-positioning {
  background: var(--color-bg-light);
  padding: var(--space-md);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

/* Enhanced Products Page Components */

/* Products Hero Enhancement */
.products-hero {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-white) 100%);
  border-bottom: 1px solid var(--color-border-light);
}

.products-hero .hero-subtitle {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin: 0 auto var(--space-md);
}

.products-hero .hero-context {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  background: rgba(0, 120, 212, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 120, 212, 0.1);
}

/* Enhanced Product Header */
.product-header-enhanced {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-md);
}

.product-title-group {
  flex: 1;
}

.product-name {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-tight);
}

.product-header-enhanced .product-tagline {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
}

.product-divider {
  height: 2px;
  background: linear-gradient(to right, var(--color-primary), transparent);
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-sm);
}

/* Product Description Enhancement */
.product-description {
  max-width: 900px;
  margin: 0 auto var(--space-xl);
}

.product-description p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.product-description p:last-child {
  margin-bottom: 0;
}

/* Product Cards (Capabilities & Use Cases) */
.product-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  height: 100%;
  transition: all var(--transition-base);
}

.product-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-card h4 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-primary);
}

.product-card .capability-list,
.product-card .use-case-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-card .capability-list li,
.product-card .use-case-list li {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
  padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
  position: relative;
  margin-bottom: var(--space-xs);
}

.product-card .capability-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}

.product-card .use-case-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

/* Compliance Callout Box */
.compliance-callout {
  background: linear-gradient(to right, rgba(0, 120, 212, 0.05), rgba(0, 120, 212, 0.02));
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-sm);
}

.compliance-callout p {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
  margin: 0;
}

.compliance-callout strong {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

/* Product CTA Enhancement */
.product-cta {
  text-align: center;
  margin-top: var(--space-xl);
  padding: var(--space-lg) 0;
}

.cta-context {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Platform Usage Section */
.platform-usage-section {
  border-top: 2px solid var(--color-border-light);
  border-bottom: 2px solid var(--color-border-light);
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.usage-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.usage-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.usage-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-lg);
  color: white;
}

.usage-card h4 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.usage-card p {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0;
}

/* Technology Icons - Professional SVG Style */
.tech-icon-pro {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 120, 212, 0.1), rgba(0, 120, 212, 0.05));
  border-radius: var(--radius-md);
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.tech-item:hover .tech-icon-pro {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
}

/* =========================
   INDUSTRIES PAGE
========================= */

/* Industries Hero */
.industries-hero {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-white) 100%);
  border-bottom: 1px solid var(--color-border-light);
}

.industries-hero .hero-subtitle {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-text-secondary);
}

/* Industry Context Section */
.industry-context-section {
  border-bottom: 2px solid var(--color-border-light);
}

.industry-context {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.industry-context p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.industry-context p:last-child {
  margin-bottom: 0;
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
}

/* Industry Sections */
.industry-section {
  padding: var(--space-2xl) 0;
}

.industry-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.industry-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Industry Card Header */
.industry-card-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(0, 120, 212, 0.03), rgba(0, 120, 212, 0.01));
  border-bottom: 2px solid var(--color-border-light);
}

.industry-icon-pro {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-lg);
  color: white;
  box-shadow: var(--shadow-md);
}

.industry-title-group {
  flex: 1;
}

.industry-title-group h3 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-tight);
}

.industry-challenge {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  font-style: italic;
  margin: 0;
}

/* Industry Card Body */
.industry-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl);
}

.industry-column h4 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-primary);
}

.industry-help-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.industry-help-list li {
  padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
  margin-bottom: var(--space-sm);
  position: relative;
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
}

.industry-help-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}

.why-matters-content p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.why-matters-content p:last-child {
  margin-bottom: 0;
  color: var(--color-text);
}

/* Cross-Industry Principles Section */
.section-principles {
  background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg-white) 100%);
  border-top: 2px solid var(--color-border-light);
  border-bottom: 2px solid var(--color-border-light);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.principle-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.principle-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.principle-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  color: white;
}

.principle-card h4 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.principle-card p {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0;
}

/* Industries CTA */
.industries-cta {
  text-align: center;
}

.industries-cta h3 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
  color: #ffffff;
}

.industries-cta p {
  font-size: var(--font-size-lg);
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================
   FOOTER
========================= */
/* ============================================
   SITE FOOTER - STANDARDIZED & SCOPED
   ============================================ */

.site-footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
}

.site-footer__logo {
  display: block;
  margin-bottom: 16px;
}

.footer-wordmark {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.footer-wordmark .context {
  color: #1FA6A0;   /* Muted Teal */
}

.footer-wordmark .works {
  color: #0B4F8A;   /* Deep Professional Blue */
}

.footer-tagline {
  font-size: 11px;
  font-weight: 500;
  color: #9AA0A6;   /* Soft Grey */
  letter-spacing: 2px;
}

.site-footer__description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 8px 0;
  font-weight: 400;
}

.site-footer__heading {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.site-footer__link {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease;
  display: block;
}

.site-footer__link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.site-footer__copyright {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 8px 0;
  font-weight: 400;
}

.site-footer__disclaimer {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-style: italic;
  font-weight: 400;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .site-footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 50px 0 25px;
  }
  
  .site-footer__content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 35px;
  }
  
  .site-footer__col {
    text-align: center;
    align-items: center;
  }
  
  .site-footer__logo {
    height: 32px;
  }
  
  .site-footer__bottom {
    padding-top: 20px;
  }
}

/* ========================= */

/* =========================
   TECHNOLOGY & STACK
========================= */
.tech-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.tech-category {
  background: var(--color-bg-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.tech-category h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.tech-category ul {
  list-style: none;
  margin: 0;
}

.tech-category li {
  padding: var(--space-xs) 0;
  color: var(--color-text-secondary);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--color-bg-light);
  color: var(--color-text-secondary);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

/* =========================
   CTA SECTIONS
========================= */
.section-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #ffffff;
  text-align: center;
  padding: var(--space-2xl) 0;
}

.section-cta h3 {
  color: #ffffff;
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
}

.section-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-lg);
}

.section-cta .btn-primary-large {
  background: #ffffff;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

.section-cta .btn-primary-large:hover {
  background: var(--color-bg-light);
  transform: translateY(-2px);
}

/* =========================
   SERVICES PAGE - ENTERPRISE DESIGN
========================= */

/* Value Proposition Grid */
.value-prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.value-prop-item h3 {
  font-size: var(--font-size-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.value-prop-item p {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

/* Service Block Layout */
.service-block {
  padding: var(--space-2xl) 0;
}

.service-header-main {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--color-border);
}

.service-icon-large {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.service-header-text {
  flex: 1;
}

.service-label {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.service-header-text h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.service-tagline {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin: 0;
}

/* Service Body - Two Column Layout */
.service-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Outcome Sections */
.outcome-heading,
.capability-heading {
  font-size: var(--font-size-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  margin-top: var(--space-xl);
}

.outcome-heading:first-child {
  margin-top: 0;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.outcome-item {
  padding: var(--space-md);
  background: var(--color-bg-white);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.outcome-item strong {
  display: block;
  color: var(--color-text);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 4px;
}

/* Capability Checklist */
.capability-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.capability-checklist li {
  padding-left: 32px;
  margin-bottom: var(--space-md);
  position: relative;
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.capability-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}

/* Info Boxes (Sidebar) */
.info-box {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.info-box h4 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.info-box p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.tech-stack {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.8;
}

.ideal-client-box {
  background: var(--color-bg-light);
  border-color: var(--color-primary);
}

/* Service CTA */
.service-cta {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

/* Benefit Cards */
.section-title-centered {
  text-align: center;
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  text-align: center;
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.benefit-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.benefit-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.benefit-number {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  background: rgba(0, 120, 212, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.benefit-card h4 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.process-step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 120, 212, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.process-step-icon .icon {
  width: 32px;
  height: 32px;
}

.process-step-content {
  flex: 1;
}

.process-step-number {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.process-step-content h4 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.process-step-content p {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.process-duration {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  background: var(--color-bg-light);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* Final CTA Section */
.section-cta-final {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #ffffff;
  padding: var(--space-2xl) 0;
}

.cta-final-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-final-content h2 {
  color: #ffffff;
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
}

.cta-final-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  line-height: var(--line-height-relaxed);
}

.cta-final-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.btn-secondary-large {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: #ffffff;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.btn-secondary-large:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.cta-final-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
  font-style: italic;
  margin: 0;
}

/* =========================
   HOW WE WORK PAGE
========================= */

/* Consulting Introduction */
.consulting-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-text {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.intro-emphasis {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  margin: 0;
}

/* Consulting Steps */
.consulting-step {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border-light);
}

.consulting-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.step-icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.step-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: var(--font-size-3xl);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.step-tagline {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.step-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.step-detail-block h4 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-sm);
}

.step-detail-block p {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* Step Checklist */
.step-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-checklist li {
  padding-left: 28px;
  margin-bottom: var(--space-sm);
  position: relative;
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.step-checklist li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

/* Deliverable Cards */
.deliverable-card {
  background: var(--color-bg-white);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin-top: var(--space-sm);
}

.deliverable-card strong {
  display: block;
  font-size: var(--font-size-base);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.deliverable-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.deliverable-grid-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.compact-deliverable {
  background: var(--color-bg-light);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.compact-deliverable strong {
  display: block;
  color: var(--color-text);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 2px;
}

/* Step Meta Info */
.step-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.meta-item {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.meta-item strong {
  color: var(--color-text);
  font-weight: var(--font-weight-semibold);
}

/* Principle Cards */
.principle-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.principle-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.principle-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.principle-number {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  background: rgba(0, 120, 212, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.principle-card h4 {
  font-size: var(--font-size-xl);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.principle-card p {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* Timeline Visual */
.timeline-intro {
  text-align: center;
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.timeline-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.timeline-block {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
}

.timeline-marker {
  display: inline-block;
  background: var(--color-primary);
  color: #ffffff;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.timeline-content strong {
  display: block;
  font-size: var(--font-size-base);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.timeline-content p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
  margin: 0;
}

.timeline-note {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 0;
}

.timeline-note strong {
  color: var(--color-text);
  font-weight: var(--font-weight-semibold);
}

/* =========================
   UTILITIES
========================= */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

.link-arrow {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--space-sm);
}

.link-arrow:hover {
  text-decoration: underline;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-image {
    order: -1;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .product-header {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-5xl: 36px;
    --font-size-4xl: 28px;
    --font-size-3xl: 24px;
    --space-2xl: 64px;
    --space-xl: 48px;
  }
  
  nav {
    flex-wrap: wrap;
    gap: var(--space-xs);
  }
  
  nav a {
    font-size: var(--font-size-xs);
    padding: 6px 10px;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
  
  .tech-stack {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .hero {
    min-height: auto;
    padding: var(--space-xl) 0;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-group .btn,
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Services Page Responsive */
  .service-body {
    grid-template-columns: 1fr;
  }
  
  .service-header-main {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .outcome-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .cta-final-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-secondary-large,
  .btn-primary-large {
    width: 100%;
  }
  
  /* How We Work Page Responsive */
  .consulting-step {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .step-visual {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .deliverable-grid-compact {
    grid-template-columns: 1fr;
  }
  
  .principle-cards {
    grid-template-columns: 1fr;
  }
  
  .timeline-visual {
    grid-template-columns: 1fr;
  }
  
  /* Products Page Responsive */
  .product-header-enhanced {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }
  
  .product-visual {
    max-width: 300px;
  }
  
  .product-name {
    font-size: var(--font-size-3xl);
  }
  
  .product-description {
    max-width: 100%;
  }
  
  .product-description p {
    font-size: var(--font-size-base);
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .usage-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  
  /* Industries Page Responsive */
  .industry-card-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .industry-icon-pro {
    width: 64px;
    height: 64px;
  }
  
  .industry-title-group h3 {
    font-size: var(--font-size-2xl);
  }
  
  .industry-card-body {
    grid-template-columns: 1fr;
  }
  
  .principles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
  
  .header .container {
    flex-direction: column;
    gap: var(--space-sm);
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
  }
  
  .header {
    max-height: none;
  }
  
  nav {
    width: 100%;
    justify-content: center;
  }
  
  .logo {
    height: 44px;
  }
  
  .footer-logo {
    height: 36px;
  }
}

/* =========================
   ACCESSIBILITY
========================= */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   ABOUT PAGE - CONSULTING-GRADE STYLING
   ============================================ */

/* About Hero */
.about-hero {
  background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.about-hero h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.about-hero .hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.95);
}

/* Company Overview Section */
.company-overview-section {
  padding: 80px 0;
  background: #ffffff;
}

.about-content-enhanced {
  max-width: 900px;
  margin: 0 auto;
}

.about-section-title {
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: center;
}

.overview-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.overview-text p:last-child {
  margin-bottom: 0;
}

/* Founder & Leadership Section */
.founder-section {
  padding: 80px 0;
  background: #f9fafb;
}

.founder-card {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.founder-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.founder-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.founder-icon svg {
  width: 48px;
  height: 48px;
  stroke: white;
}

.founder-info h3 {
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.founder-info .founder-title {
  font-size: 18px;
  color: #666;
  font-weight: 500;
}

.founder-bio {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

.experience-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.experience-item {
  padding: 20px;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 3px solid #0078d4;
}

.experience-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.experience-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.founder-philosophy {
  padding: 25px;
  background: #f0f7ff;
  border-radius: 8px;
  border-left: 4px solid #0078d4;
}

.founder-philosophy p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin: 0;
  font-style: italic;
}

/* Why We Exist Section */
.why-exist-section {
  padding: 80px 0;
  background: white;
}

.why-exist-section .about-content-enhanced {
  max-width: 900px;
}

.why-exist-section .overview-text {
  margin-top: 30px;
}

/* Microsoft Ecosystem Section (already exists, enhanced) */
.expertise-card-enhanced {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card-enhanced:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.expertise-icon-pro {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.expertise-icon-pro svg {
  width: 36px;
  height: 36px;
  stroke: white;
}

.expertise-card-enhanced h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.expertise-card-enhanced p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Consulting Philosophy Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.philosophy-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.philosophy-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(0, 120, 212, 0.1);
  line-height: 1;
}

.philosophy-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  padding-right: 60px;
}

.philosophy-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Responsible AI Principles Grid */
.principles-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.principle-card-enhanced {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card-enhanced:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.principle-icon-pro {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.principle-icon-pro svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.principle-card-enhanced h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.principle-card-enhanced p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Global Delivery Section */
.global-delivery-section {
  padding: 80px 0;
}

.global-delivery-section .section-intro {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 20px auto 50px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.delivery-card {
  background: white;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delivery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.delivery-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.delivery-icon svg {
  width: 48px;
  height: 48px;
  stroke: white;
}

.delivery-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.delivery-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: #f9fafb;
}

.values-section .section-intro {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 20px auto 50px;
}

.values-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-item-enhanced {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item-enhanced:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.value-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 56px;
  font-weight: 700;
  color: rgba(0, 120, 212, 0.08);
  line-height: 1;
}

.value-item-enhanced h4 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  padding-right: 80px;
}

.value-item-enhanced p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* About CTA */
.about-cta {
  padding: 80px 0;
}

.about-cta p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 700px;
  margin: 20px auto 30px;
}

/* ============================================
   RESPONSIVE DESIGN - ABOUT PAGE
   ============================================ */

@media (max-width: 1024px) {
  .delivery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .principles-grid-enhanced {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0;
  }
  
  .about-hero h2 {
    font-size: 32px;
  }
  
  .about-hero .hero-subtitle {
    font-size: 18px;
  }
  
  .about-section-title {
    font-size: 28px;
  }
  
  .company-overview-section,
  .founder-section,
  .why-exist-section,
  .global-delivery-section,
  .values-section,
  .about-cta {
    padding: 60px 0;
  }
  
  .founder-card {
    padding: 35px 25px;
  }
  
  .founder-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .founder-info h3 {
    font-size: 26px;
  }
  
  .experience-highlights {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .principles-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .values-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .philosophy-number,
  .value-number {
    font-size: 42px;
    top: 20px;
    right: 20px;
  }
  
  .value-item-enhanced h4,
  .philosophy-card h4 {
    padding-right: 50px;
  }
}

@media (max-width: 480px) {
  .about-hero h2 {
    font-size: 28px;
  }
  
  .about-hero .hero-subtitle {
    font-size: 16px;
  }
  
  .founder-icon,
  .delivery-icon {
    width: 64px;
    height: 64px;
  }
  
  .founder-icon svg,
  .delivery-icon svg {
    width: 36px;
    height: 36px;
  }
}

/* ============================================
   CONTACT PAGE - CONSULTING-GRADE STYLING
   ============================================ */

/* Contact Hero */
.contact-hero {
  background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.contact-hero h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.contact-hero__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.95);
}

/* Expectation Setting Section */
.contact-intro-section {
  padding: 60px 0;
  background: #f9fafb;
}

.contact-expectation {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.expectation-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

/* Contact Main Section - Two Column Layout */
.contact-main-section {
  padding: 80px 0;
  background: white;
}

.contact-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Column - Contact Form */
.contact-form-wrapper {
  padding: 0;
}

.contact-section-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.contact-section-intro {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 35px;
}

.contact-form-pro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group-pro {
  display: flex;
  flex-direction: column;
}

.form-label-pro {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.form-input-pro,
.form-textarea-pro {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.form-input-pro:focus,
.form-textarea-pro:focus {
  outline: none;
  border-color: #0078d4;
  box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
}

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

.form-checkbox-pro {
  margin-top: 8px;
}

.checkbox-label-pro {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #555;
}

.checkbox-label-pro input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.btn-contact-primary {
  background: #0078d4;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  margin-top: 12px;
}

.btn-contact-primary:hover {
  background: #005a9e;
  transform: translateY(-1px);
}

.form-response-note {
  font-size: 14px;
  color: #666;
  margin: 8px 0 0 0;
  font-style: italic;
}

/* Right Column - Contact Details */
.contact-details-wrapper {
  padding: 0;
}

.contact-details-card {
  background: #f9fafb;
  padding: 35px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  stroke: white;
}

.contact-info-content {
  flex: 1;
}

.contact-label {
  font-size: 13px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 6px 0;
}

.contact-value {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  line-height: 1.4;
  display: block;
  text-decoration: none;
}

a.contact-value:hover {
  color: #0078d4;
  text-decoration: underline;
}

.contact-role,
.contact-note {
  font-size: 14px;
  color: #666;
  margin: 4px 0 0 0;
  line-height: 1.5;
}

/* Trust Reassurance */
.contact-reassurance {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.reassurance-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

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

.reassurance-list li {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  padding-left: 24px;
  margin-bottom: 12px;
  position: relative;
}

.reassurance-list li:last-child {
  margin-bottom: 0;
}

.reassurance-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0078d4;
  font-weight: 700;
  font-size: 16px;
}

/* Bottom CTA Section */
.contact-cta-section {
  padding: 60px 0;
  background: #f9fafb;
}

.contact-soft-cta {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 28px;
}

.btn-secondary-contact {
  display: inline-block;
  background: white;
  color: #0078d4;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 28px;
  border: 2px solid #0078d4;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-secondary-contact:hover {
  background: #0078d4;
  color: white;
}

.cta-footnote {
  font-size: 13px;
  color: #888;
  margin-top: 12px;
  font-style: italic;
}

/* ============================================
   RESPONSIVE DESIGN - CONTACT PAGE
   ============================================ */

@media (max-width: 1024px) {
  .contact-two-column {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 0;
  }
  
  .contact-hero h2 {
    font-size: 32px;
  }
  
  .contact-hero__subtitle {
    font-size: 18px;
  }
  
  .contact-intro-section {
    padding: 50px 0;
  }
  
  .expectation-text {
    font-size: 16px;
  }
  
  .contact-main-section {
    padding: 60px 0;
  }
  
  .contact-two-column {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-section-title {
    font-size: 24px;
  }
  
  .contact-details-card {
    padding: 28px;
  }
  
  .contact-cta-section {
    padding: 50px 0;
  }
  
  .cta-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .contact-hero h2 {
    font-size: 28px;
  }
  
  .contact-hero__subtitle {
    font-size: 16px;
  }
  
  .contact-icon {
    width: 38px;
    height: 38px;
  }
  
  .contact-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .form-input-pro,
  .form-textarea-pro {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}
