/* Ottomized.com SEO Pages — Global Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --brand-orange: #ea7c2c;
  --brand-gold: #fbc23b;
  --brand-charcoal: #111827;
  --brand-sand: #f7f2ec;
  --brand-white: #ffffff;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border-light: #e2e8f0;
  --bg-mesh: #f8fafc;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
  --glow-orange: 0 10px 25px rgba(234,124,44,0.3);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-mesh);
  background-image:
    radial-gradient(at 0% 0%, rgba(234,124,44,0.04) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(251,194,59,0.04) 0px, transparent 50%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { color: var(--brand-charcoal); line-height: 1.2; }

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; margin-top: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 700; margin-top: 1.5rem; margin-bottom: 0.75rem; }

p { color: var(--text-secondary); margin-bottom: 1rem; max-width: 72ch; }

strong { color: var(--text-primary); }

/* ── Layout ─────────────────────────────────────────────────── */
article { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }

header { text-align: center; padding: 4rem 0 2rem; }
header .subtitle { font-size: 1.15rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

section { margin-bottom: 3rem; }

/* ── Navigation / Breadcrumb ──────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light); height: 72px;
}
.site-nav .nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.site-nav .logo { height: 48px; }
.site-nav a { color: var(--text-secondary); text-decoration: none; font-weight: 600; font-size: 0.875rem; }
.site-nav a:hover { color: var(--brand-orange); }
.site-nav .nav-cta {
  background: var(--brand-orange); color: white !important; padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm); font-weight: 700; box-shadow: var(--glow-orange);
  transition: background 0.2s;
}
.site-nav .nav-cta:hover { background: #d46820; }

.breadcrumb {
  padding: 1rem 0; font-size: 0.8rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--brand-orange); text-decoration: none; }
.breadcrumb span { margin: 0 0.4rem; }

/* ── Lists ──────────────────────────────────────────────────── */
ul, ol { padding-left: 1.5rem; margin-bottom: 1.5rem; color: var(--text-secondary); }
li { margin-bottom: 0.5rem; }

.industry-grid, .capability-links, .industry-list { list-style: none; padding: 0; }
.industry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.industry-grid li, .industry-list li {
  background: var(--brand-white); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 1.25rem; transition: all 0.2s;
}
.industry-grid li:hover, .industry-list li:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-md);
  border-color: var(--brand-orange);
}
.industry-grid a, .industry-list a, .capability-links a {
  color: var(--brand-orange); text-decoration: none; font-weight: 600;
}
.industry-grid a:hover, .industry-list a:hover { text-decoration: underline; }

/* ── Tables ─────────────────────────────────────────────────── */
table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; border-radius: var(--radius-md); overflow: hidden; }
thead { background: var(--brand-charcoal); color: white; }
th, td { padding: 1rem 1.25rem; text-align: left; font-size: 0.9rem; }
th { font-weight: 700; }
tbody tr { border-bottom: 1px solid var(--border-light); }
tbody tr:nth-child(even) { background: rgba(248,250,252,0.8); }
tbody tr:hover { background: rgba(234,124,44,0.03); }

/* ── FAQ Section ────────────────────────────────────────────── */
.faq-section { background: var(--brand-white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 2rem; }
.faq-section h2 { margin-top: 0; }
.faq-item { border-bottom: 1px solid var(--border-light); padding: 1.25rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { color: var(--brand-charcoal); font-size: 1.05rem; margin-top: 0; }
.faq-item p { font-size: 0.93rem; margin-bottom: 0; }

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  text-align: center; padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--brand-white), var(--brand-sand));
  border: 2px solid transparent;
  background-clip: padding-box;
  border-image: linear-gradient(90deg, var(--brand-orange), var(--brand-gold)) 1;
  border-radius: 0;
  margin-top: 3rem;
}
.cta-section h2 { margin-top: 0; }
.cta-section p { max-width: 600px; margin: 0.75rem auto 1.5rem; }

.cta-button {
  display: inline-block; padding: 1rem 3rem;
  background: var(--brand-orange); color: white; font-weight: 800;
  text-decoration: none; border-radius: var(--radius-sm); font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  box-shadow: var(--glow-orange); transition: all 0.2s;
}
.cta-button:hover { background: #d46820; transform: translateY(-2px); }

/* ── Related Links ──────────────────────────────────────────── */
.related-links { margin-top: 2rem; padding: 1.5rem; background: var(--brand-white); border: 1px solid var(--border-light); border-radius: var(--radius-md); }
.related-links h3 { margin-top: 0; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.related-links ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.related-links li a {
  display: inline-block; padding: 0.4rem 1rem; background: rgba(234,124,44,0.08);
  color: var(--brand-orange); border-radius: 20px; font-size: 0.85rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
}
.related-links li a:hover { background: var(--brand-orange); color: white; }

/* ── Images ─────────────────────────────────────────────────── */
.hero-image { width: 100%; border-radius: var(--radius-lg); margin: 2rem 0; box-shadow: var(--shadow-lg); }
article img { max-width: 100%; height: auto; border-radius: var(--radius-md); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border-light); padding: 3rem 1.5rem;
  text-align: center; font-size: 0.85rem; color: var(--text-muted);
}
.site-footer a { color: var(--brand-orange); text-decoration: none; margin: 0 0.75rem; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  article { padding: 1rem 1rem 3rem; }
  header { padding: 3rem 0 1.5rem; }
  .industry-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 2rem 1rem; }
  .cta-button { width: 100%; text-align: center; }
}

/* ── Print ──────────────────────────────────────────────────── */
@media print {
  .site-nav, .site-footer, .cta-section { display: none; }
  body { background: white; }
  article { max-width: 100%; padding: 0; }
}
