/*
Theme Name: Outbound Digitals
Theme URI: https://outbounddigitals.com/
Author: OpenAI
Author URI: https://openai.com/
Description: Custom SEO focused WordPress theme for Outbound Digitals.
Version: 1.6
License: GPLv2 or later
Text Domain: outbound-digitals
*/

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap");

:root {
  --bg: #f3f5f8;
  --surface: #ffffff;
  --text: #081a32;
  --muted: #5c6c82;
  --primary: #0b2f63;
  --primary-soft: #edf3ff;
  --accent: #d7b25f;
  --border: #dde5f0;
  --shadow: 0 22px 60px rgba(8, 26, 50, 0.08);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6, .brand-text strong, .brand-text span, .header-cta, .button, .eyebrow {
  font-family: "Space Grotesk", Manrope, Arial, sans-serif;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { opacity: 0.9; }
.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(221, 229, 240, 0.9);
  box-shadow: 0 10px 30px rgba(8, 26, 50, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 18px;
}
.brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.brand span { color: var(--primary); }
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
}
.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.primary-nav a {
  color: var(--text);
  font-weight: 600;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0b2f63, #143f80);
  color: #fff;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(11, 47, 99, 0.18);
}
.hero {
  padding: 110px 0 86px;
  background:
    radial-gradient(circle at top left, rgba(15, 61, 143, 0.12), transparent 35%),
    radial-gradient(circle at top right, rgba(200, 168, 93, 0.18), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f3f5f8 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(11,47,99,0.08), rgba(215,178,95,0.16));
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin: 0 0 18px;
}
.hero p,
.page-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 58ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.button,
.wp-block-button__link,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}
.button-primary,
input[type="submit"] {
  background: linear-gradient(135deg, #0b2f63, #143f80);
  color: #fff;
  box-shadow: 0 14px 30px rgba(11, 47, 99, 0.18);
}
.button-secondary {
  background: rgba(255,255,255,0.88);
  color: var(--text);
  border: 1px solid rgba(13, 34, 68, 0.08);
  box-shadow: 0 12px 28px rgba(8, 26, 50, 0.06);
}
.button:hover,
.header-cta:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
  opacity: 1;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94));
  border: 1px solid rgba(13, 34, 68, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(215,178,95,0.22), transparent 65%);
  pointer-events: none;
}
.metric {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.metric-box {
  padding: 18px;
  background: linear-gradient(180deg, #f9fbff, #f4f7fb);
  border-radius: 14px;
  border: 1px solid var(--border);
}
.metric-box strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 8px;
}
.section {
  padding: 86px 0;
}
.section-title {
  max-width: 720px;
  margin-bottom: 30px;
}
.section-title h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}
.section-title p {
  margin: 0;
  color: var(--muted);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card,
.post-card,
.value-card {
  padding: 28px;
}
.service-card h3,
.value-card h3,
.post-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.post-card .meta,
.entry-meta {
  color: var(--muted);
  font-size: 0.94rem;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.page-hero,
.archive-hero,
.single-hero {
  padding: 94px 0 52px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f5f8 100%);
}
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  align-items: start;
}
.content-main,
.sidebar-widget,
.article-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94));
  border: 1px solid rgba(13, 34, 68, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-main,
.article-card {
  padding: 32px;
}
.sidebar {
  display: grid;
  gap: 22px;
}
.sidebar-widget {
  padding: 28px;
}
.sidebar-widget h3 {
  margin-top: 0;
}
.entry-content p,
.entry-content li,
.entry-content blockquote {
  color: #26384c;
}
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  line-height: 1.18;
  letter-spacing: -0.03em;
}
.entry-content blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: #fff9ef;
  border-radius: 10px;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}
.cta-band {
  padding: 34px;
  background: linear-gradient(135deg, #091f41, #12386f 65%, #d7b25f 180%);
  color: #fff;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.cta-band h3,
.cta-band p { color: #fff; margin: 0; }
.site-footer {
  background: #091426;
  color: rgba(255,255,255,0.86);
  padding: 32px 0;
  margin-top: 60px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
}
.footer-nav a { color: rgba(255,255,255,0.86); }
.screen-reader-text {
  position: absolute;
  left: -9999px;
}
.primary-nav a {
  position: relative;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after {
  transform: scaleX(1);
}
.post-card, .service-card, .value-card, .faq-card, .sidebar-widget, .article-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post-card:hover, .service-card:hover, .value-card:hover, .sidebar-widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(8, 26, 50, 0.10);
}
.hero-proof span:first-child, .hero-proof span:last-child {
  background: rgba(255,255,255,0.75);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(13, 34, 68, 0.06);
}
.hero-proof span:nth-child(2) {
  align-self: center;
}
@media (max-width: 960px) {
  .hero-grid,
  .content-grid,
  .value-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .primary-nav {
    display: none;
    width: 100%;
  }
  .primary-nav.active {
    display: block;
  }
  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0 6px;
  }
  .header-inner {
    flex-wrap: wrap;
    padding: 10px 0;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .header-cta {
    display: none;
  }
}
@media (max-width: 640px) {
  .hero,
  .page-hero,
  .archive-hero,
  .single-hero { padding-top: 70px; }
  .metric { grid-template-columns: 1fr; }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}


.section-dark {
  background: linear-gradient(180deg, #081a32 0%, #0f2b53 100%);
}
.section-title-light h2,
.section-title-light p,
.dark-card h3,
.dark-card p {
  color: #f5f7fb;
}
.dark-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.faq-card {
  padding: 28px;
}
.faq-item + .faq-item {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 18px;
}
.faq-item h3 {
  margin: 0 0 8px;
}
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}


.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo img,
.brand-logo .custom-logo {
  width: auto;
  max-width: 42px;
  height: 42px;
  object-fit: contain;
}
.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.brand-text strong {
  color: var(--text);
  font-size: 0.98rem;
}
.brand-text span {
  color: var(--primary);
  font-size: 0.98rem;
  font-weight: 700;
}
.hero-mini-note {
  margin: -2px 0 20px;
  color: var(--muted);
  font-weight: 600;
}
.post-cta-box {
  margin-top: 28px;
  padding: 30px;
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(11,47,99,0.06), rgba(215,178,95,0.16));
  border-radius: 0 0 var(--radius) var(--radius);
}
.post-cta-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
}
.post-cta-box p {
  margin-top: 0;
  margin-bottom: 18px;
}
@media (max-width: 960px) {
  .brand-text {
    display: none;
  }
  .brand-logo img,
  .brand-logo .custom-logo {
    max-width: 36px;
    height: 36px;
  }
}


:root {
  --bg: #fbf7ef;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --text: #0b1422;
  --muted: #6e6d6a;
  --primary: #0d2340;
  --primary-2: #12345c;
  --accent: #c8a05c;
  --accent-2: #f0ddb0;
  --dark: #081425;
  --border: rgba(18, 31, 52, 0.1);
  --shadow: 0 24px 70px rgba(8, 20, 37, 0.09);
}
body {
  background:
    radial-gradient(circle at top right, rgba(200,160,92,0.16), transparent 24%),
    linear-gradient(180deg, #fffcf5 0%, #f7f1e7 100%);
  color: var(--text);
  font-family: "Plus Jakarta Sans", Manrope, Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6, .brand-main, .header-cta, .button {
  font-family: "Cormorant Garamond", Georgia, serif;
}
a { color: var(--primary); }
.site-header {
  background: rgba(255, 251, 243, 0.8);
  border-bottom: 1px solid rgba(200,160,92,0.14);
  box-shadow: 0 10px 30px rgba(8, 20, 37, 0.05);
}
.header-inner { min-height: 92px; gap: 24px; }
.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  color: var(--text);
  text-decoration: none;
}
.brand-kicker {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.brand-main {
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.primary-nav a {
  color: rgba(11,20,34,0.88);
  font-weight: 600;
}
.header-cta,
.button-primary,
input[type="submit"] {
  background: linear-gradient(135deg, #b4853d 0%, #d8b05a 45%, #f0ddb0 100%);
  color: #1f1405;
  box-shadow: 0 16px 36px rgba(180, 133, 61, 0.24);
}
.button-secondary {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(200,160,92,0.24);
}
.hero {
  background:
    radial-gradient(circle at top left, rgba(11, 35, 64, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(200, 160, 92, 0.20), transparent 24%),
    linear-gradient(180deg, #fffcf5 0%, #f7f1e7 100%);
}
.hero h1,
.page-hero h1 { font-size: clamp(3.2rem, 5vw, 5.6rem); max-width: 12ch; }
.section-title h2 { font-size: clamp(2.4rem, 3.2vw, 4rem); }
.eyebrow {
  background: linear-gradient(135deg, rgba(200,160,92,0.18), rgba(13,35,64,0.08));
  color: #7f5a1c;
  border: 1px solid rgba(200,160,92,0.22);
}
.luxury-proof span {
  background: rgba(255,255,255,0.54);
  border: 1px solid rgba(200,160,92,0.18);
  border-radius: 999px;
  padding: 8px 12px;
}
.hero-visual-wrap { position: relative; }
.hero-visual {
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,248,236,0.94));
}
.hero-visual img,
.image-card img,
.showcase-panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.floating-stat {
  position: absolute;
  background: rgba(255,253,248,0.95);
  border: 1px solid rgba(200,160,92,0.24);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px 16px;
  max-width: 180px;
}
.floating-stat strong { display: block; font-size: 1.05rem; margin-bottom: 4px; }
.floating-stat span { color: var(--muted); font-size: 0.92rem; }
.floating-stat-one { left: -18px; bottom: 28px; }
.floating-stat-two { right: -18px; top: 24px; }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,250,242,0.94));
  border: 1px solid rgba(200,160,92,0.14);
  box-shadow: var(--shadow);
}
.section-premium { background: rgba(255, 251, 245, 0.72); }
.feature-grid .image-card { overflow: hidden; }
.image-card { padding: 0 0 28px; }
.image-card img { border-radius: 22px 22px 0 0; margin-bottom: 22px; }
.image-card h3, .image-card p { padding-left: 26px; padding-right: 26px; }
.section-dark {
  background: linear-gradient(180deg, #0a1322 0%, #0d1d33 100%);
}
.dark-card {
  background: linear-gradient(180deg, rgba(20,32,53,0.95), rgba(13,23,40,0.94));
  border: 1px solid rgba(240,221,176,0.12);
}
.split-showcase {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
}
.showcase-panel { padding: 16px; }
.luxury-list li { margin-bottom: 14px; }
.section-soft-gold {
  background: linear-gradient(180deg, rgba(255,251,243,0.82), rgba(246,237,219,0.86));
}
.premium-post-card { min-height: 100%; }
.faq-section { background: rgba(255, 251, 243, 0.76); }
.faq-luxury-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.luxury-faq-card { padding: 18px 28px; }
.faq-item { padding: 18px 0; border-bottom: 1px solid rgba(200,160,92,0.16); }
.faq-item:last-child { border-bottom: 0; }
.faq-item h3 { font-size: 1.45rem; margin-bottom: 8px; }
.cta-band.luxury-band {
  background: linear-gradient(135deg, #0d1d33 0%, #162d4d 55%, #203d67 100%);
  border: 1px solid rgba(240,221,176,0.16);
}
.cta-band.luxury-band h3,
.cta-band.luxury-band p { color: #fff7e8; }
.post-cta-box,
.sidebar-widget {
  background: linear-gradient(180deg, rgba(255,252,246,0.98), rgba(247,239,223,0.94));
  border: 1px solid rgba(200,160,92,0.18);
}
.meta, .entry-meta { color: #8a6a2e; }
@media (max-width: 980px) {
  .hero-grid,
  .split-showcase,
  .faq-luxury-wrap,
  .content-grid { grid-template-columns: 1fr; }
  .floating-stat { position: static; max-width: none; margin-top: 12px; }
  .hero h1, .page-hero h1 { max-width: none; }
}
@media (max-width: 720px) {
  .brand-main { font-size: 1.6rem; }
  .brand-kicker { font-size: 0.64rem; }
  .image-card h3, .image-card p { padding-left: 20px; padding-right: 20px; }
}


.case-study-grid { margin-top: 12px; }
.case-study-card { padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.case-study-type { display: inline-flex; width: fit-content; padding: 7px 12px; border-radius: 999px; background: rgba(215,178,95,0.16); color: var(--primary); font-weight: 700; font-size: 0.9rem; }
.case-study-card h3 { margin: 0; font-size: 1.35rem; line-height: 1.2; }
.case-study-card p { margin: 0 0 8px; color: var(--muted); }
.case-study-card a { margin-top: auto; font-weight: 700; }
.case-study-card-highlight { background: linear-gradient(180deg, rgba(11,47,99,0.98), rgba(17,33,63,0.98)); color: #fff; }
.case-study-card-highlight .case-study-type { background: rgba(215,178,95,0.25); color: #fff; }
.case-study-card-highlight p, .case-study-card-highlight a, .case-study-card-highlight h3 { color: #fff; }
.case-study-list { display: grid; gap: 24px; }
.case-study-list .case-study-card { padding: 34px; }
.case-study-list .case-study-meta { display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); font-weight: 600; }
.case-study-single { max-width: 900px; margin: 0 auto; }
.case-study-single .case-study-intro { font-size: 1.12rem; color: var(--muted); }
.case-study-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0 34px; }
.case-study-stat { padding: 22px; border-radius: 18px; border: 1px solid var(--border); background: linear-gradient(180deg, #fff, #f8fbff); box-shadow: 0 14px 34px rgba(8,26,50,0.06); }
.case-study-stat strong { display: block; font-size: 1.8rem; line-height: 1; margin-bottom: 8px; }
.case-study-section { margin: 30px 0; }
.case-study-section h2 { margin-bottom: 12px; }
.case-study-quote { padding: 24px 26px; border-left: 4px solid var(--accent); background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,247,239,0.98)); border-radius: 0 18px 18px 0; font-size: 1.08rem; color: var(--text); }
.case-study-pdf-box, .case-study-cta-box { padding: 28px; margin-top: 28px; }
.case-study-pdf-box p, .case-study-cta-box p { color: var(--muted); }
@media (max-width: 900px) { .case-study-stats { grid-template-columns: 1fr; } }
