/*
Theme Name: Titove WaaS
Theme URI: https://waas.titove.com
Author: Titove Team
Author URI: https://titove.com
Description: Production-ready Website as a Service (WaaS) WordPress Theme for Titove with monochrome editorial aesthetic, oversized typography, floating pill header, and custom lead management.
Version: 1.0.0
Text Domain: titove-waas
*/

/* ==========================================================================
   1. DESIGN SYSTEM & CSS VARIABLES
   ========================================================================== */
:root {
  --color-bg-light: #dbe6f0;
  --color-bg-alt: #d0dde9;
  --color-card-bg: #ffffff;
  --color-text-main: #0c0e12;
  --color-text-sub: #485363;
  --color-text-muted: #738094;
  --color-border: #cbd7e3;
  --color-border-light: rgba(12, 14, 18, 0.08);
  --color-pill-nav: rgba(240, 245, 250, 0.85);
  --color-accent-black: #0c0e12;
  --color-accent-hover: #232730;
  
  --font-family-primary: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-serif: 'Playfair Display', Georgia, serif;
  
  --radius-pill: 9999px;
  --radius-card: 20px;
  --radius-polaroid: 24px;
  --radius-sm: 12px;
  
  --shadow-subtle: 0 10px 30px rgba(12, 14, 18, 0.04);
  --shadow-card: 0 18px 40px rgba(12, 14, 18, 0.08);
  --shadow-pill: 0 8px 24px rgba(12, 14, 18, 0.06);
  
  --container-width: 1240px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family-primary);
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Abstract Line Patterns */
.bg-abstract-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-abstract-lines svg {
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 0.4;
}

.site-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ==========================================================================
   3. HEADER - FLOATING PILL NAVIGATION
   ========================================================================== */
.site-header-wrapper {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
  transition: transform var(--transition-smooth);
}

.site-header {
  pointer-events: auto;
  background: var(--color-pill-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-pill);
  border-radius: var(--radius-pill);
  padding: 8px 12px 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
}

.logo-badge {
  background: #ffffff;
  border-radius: 999px;
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(12, 14, 18, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.logo-badge img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-badge span.logo-text {
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #0d2137;
  text-transform: uppercase;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-navigation ul {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.site-navigation a {
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-main);
  opacity: 0.85;
  transition: all var(--transition-fast);
}

.site-navigation a:hover,
.site-navigation .current-menu-item a {
  opacity: 1;
  color: #000;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition-fast);
}

.search-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.btn-pill-black {
  background: var(--color-accent-black);
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(12, 14, 18, 0.2);
  border: 1px solid transparent;
}

.btn-pill-black:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(12, 14, 18, 0.3);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
}

/* ==========================================================================
   4. HERO SECTION - MATCHING REFERENCE IMAGE
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 90px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Tilted Polaroid / Card Style Illustrations */
.hero-illustration-card {
  background: #ffffff;
  padding: 16px 16px 28px 16px;
  border-radius: var(--radius-polaroid);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform var(--transition-smooth);
}

.hero-illustration-card.card-left {
  transform: rotate(-6deg) translateY(20px);
}

.hero-illustration-card.card-right {
  transform: rotate(6deg) translateY(20px);
}

.hero-illustration-card:hover {
  transform: rotate(0deg) translateY(0) scale(1.03);
}

.illustration-wrapper {
  background: #f8fafc;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #edf2f7;
  overflow: hidden;
}

/* Hero Content Center */
.hero-center-content {
  text-align: center;
  padding: 0 10px;
}

.hero-headline {
  font-size: clamp(2.5rem, 5.2vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text-main);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: var(--color-text-sub);
  max-width: 580px;
  margin: 0 auto 16px auto;
  font-weight: 400;
  line-height: 1.5;
}

.hero-pricing-badge {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-main);
  background: rgba(255, 255, 255, 0.6);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  margin-bottom: 6px;
}

.hero-price-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

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

.btn-secondary-outline {
  border: 1.5px solid var(--color-text-main);
  color: var(--color-text-main);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-fast);
  background: transparent;
}

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

/* Background Curve Pattern Overlay */
.hero-curve-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  height: auto;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

/* ==========================================================================
   5. SECTIONS GENERAL STYLING
   ========================================================================== */
.section-padding {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.text-center {
  text-align: center;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  display: block;
}

.section-headline {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-text-main);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-sub);
  max-width: 640px;
  margin-top: 16px;
}

/* ==========================================================================
   6. WAAS CONCEPT SECTION
   ========================================================================== */
.concept-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  padding: 60px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--color-border-light);
}

.lifecycle-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 16px;
}

.lifecycle-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--color-text-main);
}

.lifecycle-arrow {
  color: var(--color-text-muted);
  font-size: 1.2rem;
}

/* ==========================================================================
   7. HOW IT WORKS
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  padding: 40px 28px;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-subtle);
  position: relative;
  transition: transform var(--transition-fast);
  grid-column: span 2;
}

/* Row 1: Items 01, 02, 03 (3 across)
   Row 2: Items 04, 05 (2 centered) */
.step-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.step-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-text-main);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.925rem;
  color: var(--color-text-sub);
}

/* ==========================================================================
   8. PRICING SECTION
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 44px 32px;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform var(--transition-fast);
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card.popular {
  border: 2px solid var(--color-text-main);
  box-shadow: 0 20px 50px rgba(12, 14, 18, 0.12);
}

.popular-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--color-text-main);
  color: #ffffff;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.plan-tagline {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  margin-bottom: 24px;
  min-height: 42px;
}

.plan-price-wrap {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #edf2f7;
}

.plan-price-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--color-text-main);
  line-height: 1.1;
  margin: 4px 0;
}

.plan-features {
  list-style: none;
  margin-bottom: 36px;
  flex-grow: 1;
}

.plan-features li {
  font-size: 0.9rem;
  color: var(--color-text-sub);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li::before {
  content: "✓";
  font-weight: 900;
  color: var(--color-text-main);
}

.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   9. WHY TITOVE WAAS (ASYMMETRIC GRID)
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.why-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 36px;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-subtle);
}

.why-card.col-6 { grid-column: span 6; }
.why-card.col-4 { grid-column: span 4; }

.why-card-title {
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.why-card-desc {
  font-size: 0.95rem;
  color: var(--color-text-sub);
}

/* ==========================================================================
   10. EVERYTHING UNDER ONE SERVICE (SCOPES)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-item {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-item-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-text-main);
}

/* ==========================================================================
   11. INDUSTRIES & PORTFOLIO
   ========================================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.industry-chip {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-subtle);
}

.industry-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-text-main);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.portfolio-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast);
}

.portfolio-card:hover {
  transform: translateY(-4px);
}

.portfolio-img-box {
  width: 100%;
  height: 240px;
  background: #e2e8f0;
  overflow: hidden;
  position: relative;
}

.portfolio-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-smooth);
}

.portfolio-card:hover .portfolio-img-box img {
  transform: scale(1.04);
}

.portfolio-info {
  padding: 28px;
}

.portfolio-title {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-text-main);
  margin-bottom: 6px;
}

.portfolio-url-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-sub);
  text-decoration: underline;
  margin-top: 12px;
}

/* ==========================================================================
   12. MANUAL PROCESS & TRANSPARENCY
   ========================================================================== */
.manual-process-card {
  background: var(--color-accent-black);
  color: #ffffff;
  border-radius: var(--radius-card);
  padding: 60px;
  box-shadow: var(--shadow-card);
}

.manual-process-card .section-headline {
  color: #ffffff;
}

.workflow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 12px;
}

.workflow-pill {
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.workflow-arrow {
  opacity: 0.4;
}

.manual-notes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.manual-note-item {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ==========================================================================
   13. FAQ ACCORDION
   ========================================================================== */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 28px 24px 28px;
  display: none;
  font-size: 0.95rem;
  color: var(--color-text-sub);
  line-height: 1.6;
}

.faq-item.active .faq-content {
  display: block;
}

/* ==========================================================================
   14. FINAL CTA
   ========================================================================== */
.final-cta-box {
  background: var(--color-bg-alt);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

/* ==========================================================================
   15. ENQUIRY PAGE (/get-started/)
   ========================================================================== */
.enquiry-page-wrapper {
  padding-top: 140px;
  padding-bottom: 100px;
}

.enquiry-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 60px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  max-width: 900px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-main);
}

.form-control {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--color-border);
  background: #f8fafc;
  font-size: 0.95rem;
  color: var(--color-text-main);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-text-main);
  background: #ffffff;
}

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

.form-section-title {
  grid-column: span 2;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  padding-top: 16px;
  margin-top: 12px;
  border-top: 1px solid #edf2f7;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text-sub);
  cursor: pointer;
}

.success-message-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 60px;
  text-align: center;
  box-shadow: var(--shadow-card);
  max-width: 680px;
  margin: 0 auto;
}

.success-message-card h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-accent-black);
  color: #ffffff;
  padding: 60px 0 30px 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  opacity: 0.6;
}

/* ==========================================================================
   17. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-illustration-card.card-left,
  .hero-illustration-card.card-right {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-card,
  .step-card:nth-child(4),
  .step-card:nth-child(5) {
    grid-column: span 1;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .why-card.col-6,
  .why-card.col-4 {
    grid-column: span 12;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-navigation {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-headline {
    font-size: 2.4rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width,
  .form-section-title {
    grid-column: span 1;
  }

  .lifecycle-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .workflow-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .manual-notes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid, .industries-grid {
    grid-template-columns: 1fr;
  }
}
