/*
Theme Name: Intersoul Landing Page
Theme URI: https://www.intersoul.com.au/
Author: Intersoul Solutions
Description: Branded Intersoul landing page theme with hero contact form and customizer-controlled hero background.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
Text Domain: intersoul-landing
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;780&display=swap');
    :root {
      --intersoul-dark-blue: #253147;
      --intersoul-light-blue: #158DC9;
      --intersoul-light-green: #639E3D;
      --intersoul-white: #ffffff;
      --intersoul-text: #263238;
      --intersoul-muted: #6b7280;
      --intersoul-border: #e7ecf1;
      --intersoul-heading: #111827;
      --intersoul-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --hero-image: none;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: var(--intersoul-font);
      font-size: 20.8px;
      font-weight: 400;
      line-height: 32.24px;
      color: rgb(89, 101, 119);
      background: #ffffff;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .site-header {
      background: #ffffff;
      border-bottom: 1px solid #eef2f5;
    }

    .header-inner {
      max-width: 1396px;
      margin: 0 auto;
      padding: 22px 0;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 28px;
    }

    .brand {
      transform: translateX(-44px);
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 260px;
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      display: block;
      flex: 0 0 48px;
      background: transparent;
    }

    .brand-mark img {
      width: 48px;
      height: 48px;
      display: block;
      object-fit: contain;
    }

    .brand-text {
      display: flex;
      flex-direction: row;
      align-items: center;
      line-height: 1;
    }

    .brand-name {
      color: #111827;
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -0.035em;
    }

    .brand-tagline {
      display: none;
    }

    .header-contact-button {
      display: inline-block;
      background: var(--intersoul-light-blue);
      color: #ffffff;
      padding: 14px 22px;
      font-size: 14px;
      line-height: 1;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      white-space: nowrap;
    }

    .header-contact-button:hover {
      background: var(--intersoul-dark-blue);
      color: #ffffff;
    }

    .landing-hero {
      position: relative;
      min-height: calc(100vh - 82px);
      background:
        linear-gradient(90deg, rgba(37,49,71,0.90) 0%, rgba(37,49,71,0.78) 42%, rgba(37,49,71,0.54) 100%),
        var(--hero-image),
        linear-gradient(135deg, #253147 0%, #37445d 100%);
      background-size: cover;
      background-position: center;
      color: #ffffff;
    }

    .landing-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.12);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 1396px;
      min-height: calc(100vh - 82px);
      margin: 0 auto;
      padding: 108px 0 86px;
      display: grid;
      grid-template-columns: minmax(0, 760px) 345px;
      align-items: start;
      justify-content: space-between;
      gap: 88px;
      transform: translateX(-44px);
    }

    .hero-copy h1 {
      margin: 0 0 28px;
      max-width: 760px;
      font-family: var(--intersoul-font);
      font-size: 56px;
      font-weight: 700;
      line-height: 66px;
      letter-spacing: -0.015em;
      color: #ffffff;
    }

    .service-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 7px;
      font-family: var(--intersoul-font);
      font-size: 20.8px;
      font-weight: 400;
      line-height: 32.24px;
      letter-spacing: 0;
    }

    .service-list li {
      position: relative;
      padding-left: 28px;
      color: #ffffff;
    }

    .service-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: -1px;
      color: #ffffff;
      font-weight: 400;
    }

    .contact-panel {
      transform: translateX(88px);
      margin-top: 24px;
      background: var(--intersoul-light-blue);
      padding: 34px 30px 29px;
      color: #ffffff;
      width: 345px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.22);
    }

    .contact-panel h2 {
      margin: 0 0 7px;
      font-size: 30px;
      line-height: 1.05;
      font-weight: 400;
      letter-spacing: -0.015em;
      text-align: center;
      color: #ffffff;
    }

    .contact-panel p {
      margin: 0 0 24px;
      font-size: 14px;
      line-height: 1.45;
      font-weight: 400;
      text-align: center;
      color: #ffffff;
    }

    .landing-form {
      display: grid;
      gap: 17px;
    }

    .landing-form label {
      position: absolute;
      left: -9999px;
    }

    .landing-form input,
    .landing-form textarea {
      width: 100%;
      border: 0;
      border-radius: 4px;
      background: #ffffff;
      color: var(--intersoul-text);
      padding: 13px 13px;
      font-size: 15px;
      font-family: var(--intersoul-font);
      font-weight: 400;
      outline: none;
    }

    .landing-form textarea {
      min-height: 92px;
      resize: vertical;
    }

    .landing-form input:focus,
    .landing-form textarea:focus {
      box-shadow: 0 0 0 3px rgba(99,158,61,0.35);
    }

    .callback-btn {
      border: 0;
      border-radius: 4px;
      padding: 15px 18px;
      background: var(--intersoul-light-green);
      color: #ffffff;
      font-size: 14px;
      line-height: 1;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
    }

    .callback-btn:hover {
      background: var(--intersoul-dark-blue);
    }

    .privacy-note {
      margin: 18px 0 0;
      font-size: 13px;
      font-style: italic;
      text-align: center;
      color: #ffffff;
    }

    .content-section {
      padding: 70px 28px;
      background: #ffffff;
    }

    .content-section.alt {
      background: #f7f9fb;
    }

    .section-inner {
      max-width: 1110px;
      margin: 0 auto;
    }

    .section-heading {
      margin: 0 0 20px;
      text-align: left;
      color: var(--intersoul-heading);
      font-family: var(--intersoul-font);
      font-size: 37px;
      font-weight: 400;
      line-height: 46px;
      letter-spacing: -0.015em;
      text-transform: none;
      max-width: 640px;
    }

    .section-lede {
      max-width: 790px;
      margin: 0;
      color: rgb(89, 101, 119);
      text-align: left;
      font-size: 20.8px;
      line-height: 32.24px;
      font-weight: 400;
    }

    .three-columns {
      margin-top: 46px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 34px;
    }

    .simple-column h3 {
      margin: 0 0 10px;
      color: var(--intersoul-heading);
      font-size: 20.8px;
      line-height: 1.25;
      font-weight: 400;
      letter-spacing: -0.015em;
    }

    .simple-column p {
      margin: 0;
      color: rgb(89, 101, 119);
      font-size: 20.8px;
      line-height: 32.24px;
      font-weight: 400;
    }





    .transformation-section {
      background: #ffffff;
      padding: 126px 32px 112px;
    }

    .transformation-inner {
      max-width: 1396px;
      margin: 0 auto;
      transform: translateX(-44px);
    }

    .transformation-intro {
      display: grid;
      grid-template-columns: minmax(0, 560px) minmax(0, 690px);
      column-gap: 116px;
      align-items: start;
      margin-bottom: 78px;
    }

    .transformation-heading {
      margin: 0;
      max-width: 560px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 69.6px;
      font-weight: 780;
      line-height: 70.992px;
      color: rgb(17, 24, 39);
      letter-spacing: -0.055em;
    }

    .transformation-copy {
      margin: 0;
      max-width: 690px;
      padding-top: 36px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 20.8px;
      font-weight: 400;
      line-height: 32.24px;
      color: rgb(89, 101, 119);
    }

    .transformation-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border: 1px solid #d9dee7;
      background: #ffffff;
      width: calc(100% + 96px);
    }

    .transformation-card {
      min-height: 305px;
      padding: 32px 28px 34px;
      border-right: 1px solid #d9dee7;
      background: #ffffff;
    }

    .transformation-card:last-child {
      border-right: 0;
    }

    .transformation-card h3 {
      margin: 0 0 18px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 48px;
      font-weight: 780;
      line-height: 48.96px;
      color: rgb(37, 49, 71);
      letter-spacing: -0.045em;
    }

    .transformation-card p {
      margin: 0;
      max-width: none;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 20.8px;
      font-weight: 400;
      line-height: 32.24px;
      color: rgb(89, 101, 119);
      letter-spacing: 0;
    }

    @media (max-width: 1100px) {
      .transformation-section {
        padding-left: 28px;
        padding-right: 28px;
      }

      .transformation-inner {
        transform: none;
      }

      .transformation-intro {
        grid-template-columns: 1fr;
        row-gap: 28px;
        margin-bottom: 56px;
      }

      .transformation-copy {
        max-width: 760px;
      }

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

      .transformation-card:nth-child(2) {
        border-right: 0;
      }

      .transformation-card:nth-child(1),
      .transformation-card:nth-child(2) {
        border-bottom: 1px solid #d9dee7;
      }
    }

    @media (max-width: 640px) {
      .transformation-section {
        padding: 72px 24px 82px;
      }

      .transformation-heading {
        font-size: 52px;
        line-height: 53.04px;
      }

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

      .transformation-card {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid #d9dee7;
      }

      .transformation-card:last-child {
        border-bottom: 0;
      }

      .transformation-card h3 {
        font-size: 40px;
        line-height: 40.8px;
      }
    }







    .cta-band {
      background: var(--intersoul-dark-blue);
      color: #ffffff;
      padding: 55px 28px;
      text-align: center;
    }

    .cta-band h2 {
      margin: 0 0 13px;
      font-size: clamp(38px, 4vw, 64px);
      line-height: 1;
      font-weight: 400;
      letter-spacing: -0.015em;
    }

    .cta-band p {
      max-width: 740px;
      margin: 0 auto 24px;
      color: rgba(255,255,255,0.82);
    }

    .cta-link {
      display: inline-block;
      background: var(--intersoul-light-blue);
      color: #ffffff;
      padding: 13px 28px;
      border-radius: 3px;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-size: 13px;
    }

    .cta-link:hover {
      background: var(--intersoul-light-green);
    }

    @media (max-width: 980px) {
      .header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px 28px;
      }

      .brand {
        transform: none;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 72px 28px 72px;
        justify-content: stretch;
      }


      .contact-panel {
        width: 100%;
        max-width: 430px;
        transform: none;
        margin-top: 0;
      }


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

    @media (max-width: 640px) {
      .hero-copy h1 {
        font-size: 40px;
        line-height: 48px;
      }

      .service-list {
        font-size: 15px;
      }

      .section-heading {
        font-size: 34px;
        line-height: 42px;
      }
    }


/* Mobile and tablet layout fixes */
@media (max-width: 1100px) {
    .header-inner {
        max-width: none;
        padding: 18px 22px;
        justify-content: flex-start;
    }

    .brand {
        transform: none;
        min-width: 0;
        gap: 10px;
    }

    .brand-mark,
    .brand-mark img {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .brand-name {
        font-size: 22px;
        line-height: 1.05;
    }

    .landing-hero {
        min-height: auto;
    }

    .hero-inner {
        max-width: none;
        min-height: auto;
        padding: 54px 22px 62px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 34px;
        transform: none;
    }

    .hero-copy h1 {
        max-width: 760px;
        font-size: 46px;
        line-height: 54px;
        margin: 0 0 22px;
    }

    .service-list {
        font-size: 18px;
        line-height: 28px;
        gap: 6px;
    }

    .contact-panel {
        width: 100%;
        max-width: 520px;
        margin-top: 0;
        transform: none;
        padding: 30px 24px 28px;
    }

    .contact-panel h2 {
        font-size: 30px;
        line-height: 1.12;
    }

    .transformation-section {
        padding: 78px 22px 86px;
    }

    .transformation-inner {
        max-width: none;
        margin: 0;
        transform: none;
    }

    .transformation-intro {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 24px;
        margin-bottom: 48px;
    }

    .transformation-heading {
        max-width: 680px;
        font-size: 52px;
        line-height: 54px;
    }

    .transformation-copy {
        max-width: 760px;
        padding-top: 0;
    }

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

    .transformation-card {
        min-height: auto;
    }

    .transformation-card:nth-child(2) {
        border-right: 0;
    }

    .transformation-card:nth-child(1),
    .transformation-card:nth-child(2) {
        border-bottom: 1px solid #d9dee7;
    }

    .cta-band {
        padding: 54px 22px;
    }

    .cta-band h2 {
        font-size: 38px;
        line-height: 44px;
    }
}

@media (max-width: 640px) {
    .header-inner {
        padding: 16px 18px;
    }

    .brand-mark,
    .brand-mark img {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .brand-name {
        font-size: 20px;
        letter-spacing: -0.03em;
    }

    .hero-inner {
        padding: 42px 18px 52px;
        gap: 30px;
    }

    .hero-copy h1 {
        font-size: 36px;
        line-height: 43px;
        letter-spacing: -0.035em;
    }

    .service-list {
        font-size: 16px;
        line-height: 25px;
        gap: 5px;
    }

    .service-list li {
        padding-left: 23px;
    }

    .contact-panel {
        max-width: none;
        padding: 28px 20px 26px;
    }

    .contact-panel h2 {
        font-size: 28px;
    }

    .contact-panel p {
        font-size: 14px;
    }

    .landing-form {
        gap: 14px;
    }

    .landing-form input,
    .landing-form textarea {
        font-size: 15px;
        padding: 12px;
    }

    .landing-form textarea {
        min-height: 96px;
    }

    .transformation-section {
        padding: 64px 18px 72px;
    }

    .transformation-heading {
        font-size: 42px;
        line-height: 44px;
        letter-spacing: -0.05em;
    }

    .transformation-copy {
        font-size: 18px;
        line-height: 29px;
    }

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

    .transformation-card {
        padding: 28px 24px 30px;
        border-right: 0;
        border-bottom: 1px solid #d9dee7;
    }

    .transformation-card:last-child {
        border-bottom: 0;
    }

    .transformation-card h3 {
        font-size: 38px;
        line-height: 40px;
    }

    .transformation-card p {
        font-size: 18px;
        line-height: 29px;
    }

    .cta-band h2 {
        font-size: 32px;
        line-height: 38px;
    }

    .cta-band p {
        font-size: 17px;
        line-height: 28px;
    }
}
