/* strategy.integratedwebworks.com — built from Figma "IWW Landing - Marketing 2026" (Final page) */

:root {
  --navy: #092952;
  --navy-deep: #061F3D;
  --navy-card: #0F3A6E;
  --light: #F2F8FF;
  --card-blue: #E1F4FF;
  --white: #ffffff;
  --cyan: #16AAC7;
  --cyan-hover: #1295AF;
  --sky: #8AD3FE;
  --sky-alt: #66C6FF;
  --badge-bg: #A9DFFF;
  --ink: #0F2238;
  --heading: #061F3D;
  --blue-head: #0F3A6E;
  --body: #364D66;
  --body-muted: #4F687E;
  --on-navy: #D1E2F5;
  --footer-muted: #6B8CAE;
  --border-soft: #E2ECF5;
  --radius-card: 20px;
  --radius-btn: 8px;
  --container: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  /* 1200px content + side padding, matching the 1440-wide design's 120px margins */
  max-width: calc(var(--container) + 48px);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Shared components ---------- */

.badge {
  display: inline-block;
  background: var(--badge-bg);
  color: var(--blue-head);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 9px 16px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}

.badge--navy {
  background: var(--navy-card);
  color: var(--sky);
}

.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-btn);
  padding: 17px 28px;
  border: 0;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.btn--primary {
  background: var(--cyan);
  color: var(--white);
}
.btn--primary:hover { background: var(--cyan-hover); }

.btn--ghost {
  background: transparent;
  color: var(--on-navy);
  font-weight: 700;
  border: 1px solid rgba(209, 226, 245, 0.35);
}
.btn--ghost:hover { border-color: rgba(209, 226, 245, 0.7); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.section-head .badge { margin-bottom: 20px; }

h1, h2, h3 { margin: 0; }

.h2 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--heading);
  letter-spacing: -0.01em;
}

.section-head p {
  margin: 18px auto 0;
  font-size: 16px;
  color: var(--body);
  max-width: 700px;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 24px;
}
.check-list li:last-child { margin-bottom: 0; }

.check-list .check-icon {
  position: absolute;
  left: 0;
  top: 21px;
  width: 20px;
  height: 20px;
}

.check-list h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-head);
}

.check-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--body);
}

/* ---------- Header ---------- */

.site-header {
  background: var(--navy);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.site-header .logo img { height: 56px; width: auto; }

.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-phone {
  text-align: left;
  text-decoration: none;
  color: var(--on-navy);
  line-height: 1.3;
}
.header-phone .label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--sky);
}
.header-phone .number {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: var(--on-navy);
  letter-spacing: 0.01em;
}

.site-header .btn { font-size: 17px; font-weight: 700; padding: 15px 24px; }

/* ---------- Hero ---------- */

.hero {
  background: var(--navy);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 72px;
}

.hero .badge--navy { margin-bottom: 24px; }

.hero h1 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--sky); }

.hero .lede {
  margin: 22px 0 34px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--on-navy);
  max-width: 560px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-art { justify-self: end; }
.hero-art img { width: 100%; max-width: 681px; }

/* ---------- Credibility strip (stats) ---------- */

.credibility {
  background: var(--light);
  padding: 44px 0 48px;
  text-align: center;
}

.credibility .strip-title {
  font-size: 21px;
  font-weight: 600;
  color: var(--heading);
  margin: 0 0 26px;
}

.stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat { text-align: center; }

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--badge-bg);
}

.stat .value {
  display: block;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--cyan);
}
.stat .label {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--body);
  white-space: nowrap;
}

/* ---------- AI discovery ---------- */

.ai-discovery {
  background: var(--white);
  padding: 96px 0;
}

.ai-discovery .container {
  display: grid;
  grid-template-columns: minmax(0, 506px) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.ai-discovery .badge { margin-bottom: 20px; }

.ai-discovery h2 { font-size: 40px; }

.ai-discovery .copy {
  margin: 24px 0 28px;
  font-size: 16px;
  color: var(--body);
  max-width: 480px;
}

.ai-discovery .punch {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--sky-alt);
  max-width: 420px;
}

.ai-visual {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: flex-end;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 128px);
  gap: 12px;
}

.platform-tile {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(9, 41, 82, 0.06);
  padding: 18px 10px 14px;
  text-align: center;
}

.platform-tile img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.platform-tile span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
}

.ai-figure img { width: 195px; }

/* ---------- Business outcomes ---------- */

.outcomes {
  background: var(--light);
  padding: 96px 0;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 605px);
  align-items: center;
  gap: 40px;
  margin-top: 64px;
}

.outcomes-art img { max-width: 571px; }

.outcomes-card {
  background: var(--card-blue);
  border-radius: var(--radius-card);
  padding: 48px 44px;
}

.outcomes-card h3 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--heading);
  letter-spacing: -0.01em;
}
.outcomes-card h3 .accent {
  display: block;
  color: var(--sky-alt);
}

.outcomes-card .check-list { margin-top: 32px; }

/* ---------- Integrated strategy ---------- */

.strategy {
  background: var(--navy);
  padding: 96px 0;
  color: var(--on-navy);
}

.strategy .h2 { color: var(--white); }

.strategy .section-head p { color: var(--on-navy); }

.strategy .goal-line {
  margin-top: 22px;
  font-size: 18px;
  font-weight: 700;
  color: var(--sky);
}

.strategy-grid {
  position: relative;
  margin: 56px auto 0;
  max-width: 926px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 320px;
  gap: 0;
}

.strategy-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 39px;
}

.strategy-card {
  position: relative;
  z-index: 1;
  background: var(--navy-card);
  border-radius: 16px;
  padding: 20px 24px;
}

.strategy-card .card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
}

.strategy-card .card-title img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.strategy-card p {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--on-navy);
}

.strategy-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0;
}

.strategy-center .growth-label {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  color: var(--sky);
  margin: 0 0 71px;
}

.strategy-center img { width: 222px; position: relative; top: 20px; z-index: 2; }

.strategy-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Why us ---------- */

.why-us {
  background: var(--light);
  padding: 96px 0;
}

.why-us .container {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 520px);
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.why-us .badge { margin-bottom: 20px; }

.why-us h2 { font-size: 40px; }

.why-us .copy {
  margin: 20px 0 30px;
  font-size: 16px;
  color: var(--body);
}

.why-us .question {
  margin: 34px 0 22px;
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-head);
}

/* ---------- Three step ---------- */

.three-step {
  background: var(--white);
  padding: 96px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.step-card {
  background: var(--card-blue);
  border-radius: var(--radius-card);
  padding: 32px 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-head);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.step-card p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 24px;
  color: var(--body);
}

/* ---------- Testimonials ---------- */

.testimonials {
  background: var(--navy-deep);
  padding: 96px 0;
}

.testimonials .h2 { color: var(--white); }
.testimonials .section-head p { color: var(--on-navy); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  display: block;
  margin: 0;
  background: var(--navy);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 382 / 214;
  object-fit: cover;
}

.tc-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px 22px;
}

.tc-play {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--white);
  transition: background-color .18s ease;
}
.tc-play svg { width: 22px; height: 22px; margin-left: 2px; }
.testimonial-card:hover .tc-play { background: var(--cyan-hover); }

.tc-text { min-width: 0; }

.testimonial-card .name {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--white);
}

.testimonial-card .role {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--sky);
}

/* ---------- Video overlay (lity-style) ---------- */

.video-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity .25s ease;
}
.video-overlay.is-open { opacity: 1; }

.video-overlay-inner {
  position: relative;
  width: min(90vw, 964px);
}

.video-overlay-inner iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.video-overlay-close {
  position: absolute;
  right: 0;
  top: -44px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.video-overlay-close:hover { color: var(--sky); }

/* ---------- FAQ ---------- */

.faq {
  background: var(--white);
  padding: 96px 0 110px;
}

.faq .h2 { color: var(--navy); }

.faq-list {
  margin-top: 40px;
  border-bottom: 1px solid var(--border-soft);
}

.faq-item {
  border-top: 1px solid var(--border-soft);
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-head);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .toggle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--cyan);
  transition: transform .2s ease;
}

.faq-item[open] summary .toggle { transform: rotate(45deg); }

.faq-item .answer {
  padding: 10px 44px 26px 4px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--body);
}
.faq-item .answer p { margin: 0; }

/* ---------- CTA band + booking ---------- */

.cta-booking {
  background: var(--navy);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.cta-head { text-align: center; position: relative; z-index: 1; }

.cta-head .badge--navy { margin-bottom: 22px; }

.cta-head h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.01em;
}

.cta-head p {
  margin: 18px auto 26px;
  font-size: 16px;
  color: var(--on-navy);
  max-width: 760px;
}

.cta-call {
  display: inline-block;
  background: var(--cyan);
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-btn);
  padding: 14px 26px;
  transition: background-color .18s ease;
}
.cta-call:hover { background: var(--cyan-hover); }
.cta-call strong { font-weight: 800; }

.booking-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}

.booking-figure {
  position: absolute;
  top: -155px;
  right: 83px;
  width: 223px;
  z-index: 2;
  pointer-events: none;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 40px 40px;
  position: relative;
  z-index: 1;
}

.booking-card > h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}

.booking-card .sub {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--body-muted);
}

.calendly-wrap {
  margin-top: 22px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--light);
  min-height: 580px;
}

.calendly-inline-widget { min-width: 0 !important; }

/* Form */

.message-form { margin-top: 24px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field { margin-bottom: 16px; }

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #D8E2EC;
  border-radius: 8px;
  padding: 12px 15px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--body-muted); }

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(22, 170, 199, 0.15);
}

.form-field textarea { resize: vertical; min-height: 108px; }

.message-form .btn { width: 100%; margin-top: 6px; font-size: 15px; }

.form-disclaimer {
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--body-muted);
}

.form-status {
  display: none;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
}
.form-status.success { display: block; background: #E3F7EC; color: #14724A; }
.form-status.error { display: block; background: #FDEBEB; color: #A33030; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Badge strip ---------- */

.badge-strip {
  background: var(--light);
  padding: 32px 0;
}

.badge-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.badge-strip img { height: 180px; width: auto; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-deep);
  padding: 52px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 51px;
}

/* the "iw" mark sits at the left of a mostly-empty 328x152 SVG canvas;
   size the box to the mark and let the transparent canvas overflow */
.footer-logo { width: 84px; height: 100px; margin-top: -8px; overflow: visible; }
.footer-logo img { width: 328px; max-width: none; height: auto; margin-top: -10px; }

.footer-tagline {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--sky);
  max-width: 680px;
}

.footer-contact {
  text-align: right;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
  font-style: normal;
}

.footer-contact a {
  display: inline-block;
  margin-top: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(209, 226, 245, 0.12);
  text-align: center;
  font-size: 12px;
  color: var(--footer-muted);
}

/* ---------- Responsive ---------- */

/* hide the peeking figure once the full-width page margins collapse
   (container hits its max-width at 1248px) */
@media (max-width: 1248px) {
  .booking-figure { display: none; }
}

@media (max-width: 1150px) {
  .strategy-lines { display: none; }
  .strategy-grid { grid-template-columns: 1fr 1fr; gap: 15px; max-width: none; }
  .strategy-col { padding-top: 0; }
  .strategy-center { grid-column: 1 / -1; order: -1; margin-bottom: 32px; }
  .strategy-center .growth-label { margin-bottom: 26px; }
  .ai-figure { display: none; }
}

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { justify-self: center; }
  .hero h1 { font-size: 42px; }

  .ai-discovery .container { grid-template-columns: 1fr; }
  .ai-visual { justify-content: flex-start; }

  .outcomes-grid { grid-template-columns: 1fr; }
  .outcomes-art { margin: 0 auto; }

  .why-us .container { grid-template-columns: 1fr; }

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

  .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

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

  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { margin: 0 auto; }
  .footer-tagline { max-width: none; }
  .footer-contact { text-align: center; }
}

@media (max-width: 640px) {
  .site-header .container { height: auto; padding-top: 14px; padding-bottom: 14px; flex-wrap: wrap; gap: 12px; justify-content: center; }
  .header-phone { text-align: center; }

  .hero h1 { font-size: 34px; }
  .hero .container { padding-top: 40px; padding-bottom: 48px; }

  .stats { flex-direction: column; gap: 28px; }
  .stat .label { white-space: normal; }
  .stat-divider { display: none; }

  .h2, .ai-discovery h2, .why-us h2 { font-size: 30px; }
  .cta-head h2 { font-size: 32px; }
  .outcomes-card h3 { font-size: 28px; }
  .outcomes-card { padding: 32px 24px; }

  .platform-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; }

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

  .booking-card { padding: 26px 20px 30px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .badge-strip img { height: 88px; }

  .ai-discovery, .outcomes, .strategy, .why-us, .three-step, .testimonials, .faq { padding: 64px 0; }
}
