:root {
      --ink: #0f1c2e;
      --ink-soft: #2d3f55;
      --slate: #4a6080;
      --slate-light: #7a95b0;
      --mist: #edf2f7;
      --mist-dark: #d8e3ee;
      --amber: #178ece;
      --amber-pale: #eff9ff;
      --amber-dark: #178ece;
      --indigo: #4361c2;
      --indigo-light: #6b84d8;
      --teal-accent: #6adcb1;
      --bg-page: #f4f7fb;
      --footer-bg: #080f18;
      --t: 0.26s cubic-bezier(0.4, 0, 0.2, 1);
      /* Aliases for existing utility classes */
      --color-navy: var(--ink);
      --color-navy-mid: #132337;
      --color-blue: #156fa3;
      --color-blue-accent: var(--amber);
      --color-blue-soft: #3b9fd4;
      --color-text: var(--ink);
      --color-text-muted: var(--slate);
      --color-border: var(--mist-dark);
      --color-bg: #ffffff;
      --color-bg-soft: var(--bg-page);
      --color-bg-muted: var(--mist);
      --shadow-sm: 0 2px 12px rgba(15, 28, 46, 0.07);
      --shadow-md: 0 6px 24px rgba(15, 28, 46, 0.11);
      --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.18);
      --radius: 10px;
      --radius-lg: 18px;
      --header-h: 56px;
      --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
      --max-width: 1100px;
      --section-pad: clamp(2rem, 4vw, 3.25rem);
      --section-pad-compact: clamp(1.35rem, 2.8vw, 2.35rem);
    }
    body{
     font-family: var(--font-sans) !important;
     line-height: 1.55 !important;
    }
    /* Layout */
    /* main {
      padding-top: var(--header-h);
    } */
    .enterprise_container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
    }
    .section {
      padding: var(--section-pad) 0;
      background: #fff;
      border-bottom: 1px solid var(--mist-dark);
    }
    .section--soft { background: var(--bg-page); }
    .section--muted { background: var(--bg-page); }
    .section--dark {
      background: linear-gradient(135deg, var(--ink) 0%, #1a3050 100%);
      color: rgba(255, 255, 255, 0.88);
      position: relative;
      overflow: hidden;
      border-bottom: none;
    }
    .section--dark::before {
      content: "";
      position: absolute;
      top: -60px;
      right: -60px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(23, 142, 206, 0.14) 0%, transparent 70%);
      pointer-events: none;
    }
    .section--dark::after {
      content: "";
      position: absolute;
      bottom: -40px;
      left: 5%;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(67, 97, 194, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .section--dark .enterprise_container {
      position: relative;
      z-index: 1;
    }
    .section--dark h2,
    .section--dark h3 { color: #fff; }
    .section--dark p { color: rgba(255, 255, 255, 0.62); }
    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-border), transparent);
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Typography (section tags like PowerBuilder) */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.67rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--amber-dark);
      background: var(--amber-pale);
      border: 1px solid #aed5ec;
      padding: 3px 11px;
      border-radius: 99px;
      margin: 0 0 0.55rem;
    }
    .section h2 {
      font-size: clamp(1.3rem, 2.5vw, 1.85rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.25;
      color: var(--ink);
      margin: 0 0 0.4rem;
    }
    .section.section--dark h2,
    .section.section--dark h3 {
      color: #fff;
    }
    .section.section--dark .section-intro,
    .section.section--dark .eyebrow {
      color: rgba(255, 255, 255, 0.75);
    }
    .section.section--dark .eyebrow {
      background: rgb(28 42 62);
      color: var(--teal-accent);
      border-color: rgb(60 72 94);
    }
    .section-intro {
      font-size: 1rem;
      color: var(--slate);
      max-width: 42rem;
      margin: 0.35rem 0 1.1rem;
    }
    .lead {
      font-size: 1.125rem;
      color: var(--color-text-muted);
      max-width: 38rem;
    }

    /* enterprise_hero: animated bg layer + scrim (readability) + card motion */
    .enterprise_hero {
      padding: clamp(1.65rem, 5vw, 2.75rem) 0 clamp(2rem, 6vw, 3.25rem);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      position: relative;
      overflow: hidden;
      background: transparent;
    }
    .enterprise_hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: url("/wp-content/themes/unicon/assets/image/team-colorful-collaboration.jpg") center / cover no-repeat;
      transform: scale(1.08);
      transform-origin: center center;
    }
    .enterprise_hero-scrim {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(135deg, rgba(15, 28, 46, 0.91) 0%, rgba(15, 28, 46, 0.76) 45%, rgba(15, 28, 46, 0.89) 100%);
    }
    @media (prefers-reduced-motion: no-preference) {
      .enterprise_hero-bg {
        animation: hero-ken-burns 28s ease-in-out infinite alternate;
      }
    }
    @keyframes hero-ken-burns {
      0% { transform: scale(1.06) translate(0, 0); }
      100% { transform: scale(1.14) translate(-1.2%, 0.6%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .enterprise_hero-bg { transform: scale(1.08); }
    }
    .enterprise_hero::before {
      content: "";
      position: absolute;
      top: -60px;
      right: -60px;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(23, 142, 206, 0.22) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
      filter: blur(1px);
      z-index: 2;
    }
    .enterprise_hero::after {
      content: "";
      position: absolute;
      bottom: -40px;
      left: 20%;
      width: 260px;
      height: 260px;
      background: radial-gradient(circle, rgba(67, 97, 194, 0.25) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      filter: blur(1px);
      z-index: 2;
    }
    .enterprise_hero .enterprise_container {
      position: relative;
      z-index: 3;
    }
    .enterprise_hero-grid {
      display: grid;
      grid-template-columns: 1fr minmax(260px, 320px);
      gap: clamp(1.25rem, 3vw, 1.85rem);
      align-items: center;
    }
    @media (max-width: 900px) {
      .enterprise_hero-grid { grid-template-columns: 1fr; }
    }
    .enterprise_hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgb(28 42 62);
      color: var(--teal-accent);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 99px;
      margin-bottom: 12px;
      border: 1px solid rgb(60 72 94);
    }
    .enterprise_hero-eyebrow-dot {
      width: 6px;
      height: 6px;
      background: var(--teal-accent);
      border-radius: 50%;
    }
    @media (prefers-reduced-motion: no-preference) {
      .enterprise_hero-eyebrow-dot { animation: hero-pulse 2s ease-in-out infinite; }
    }
    @keyframes enterprise_hero-pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.55; transform: scale(1.15); }
    }
    .enterprise_hero h1 {
      font-size: clamp(2.25rem, 6vw, 3.75rem);
      font-weight: 700;
      letter-spacing: -0.05em;
      line-height: 1.1;
      color: #fff;
      margin: 0 0 12px;
    }
    .enterprise_hero h1 .accent {
      color: var(--amber);
    }
    .enterprise_hero-tagline {
      font-size: clamp(1rem, 2vw, 1.15rem);
      font-weight: 500;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.65;
      margin: 0 0 1rem;
      max-width: 36rem;
    }
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 0.75rem;
      margin-top: 0.35rem;
    }
    .pain-item {
      background: var(--bg-page);
      border: 1px solid var(--mist-dark);
      border-radius: var(--radius);
      padding: 0.95rem 1rem;
      box-shadow: var(--shadow-sm);
      transition: border-color var(--t), box-shadow var(--t);
    }
    .pain-item:hover {
      border-color: #c5d8e8;
      box-shadow: var(--shadow-md);
    }
    .pain-item strong {
      display: block;
      font-size: 0.95rem;
      color: var(--ink);
      margin-bottom: 0.35rem;
      letter-spacing: -0.02em;
    }
    .pain-item p {
      margin: 0;
      font-size: 0.88rem;
      color: var(--slate);
      line-height: 1.5;
    }
    .section-bridge {
      margin-top: 1rem;
      font-size: 1rem;
      color: var(--slate);
      max-width: 40rem;
      line-height: 1.6;
    }
    .section-bridge strong {
      color: var(--ink);
      font-weight: 600;
    }
    .enterprise_hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }
    .enterprise_hero-visual {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(23, 142, 206, 0.18);
      border-radius: var(--radius-lg);
      padding: 0;
      box-shadow: 0 0 0 1px rgba(23, 142, 206, 0.06), 0 24px 56px rgba(0, 0, 0, 0.35);
      backdrop-filter: blur(14px);
      min-height: 260px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }
    @media (prefers-reduced-motion: no-preference) {
      .enterprise_hero-visual {
        animation: hero-card-float 8s ease-in-out infinite;
      }
    }
    @keyframes hero-card-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-7px); }
    }

    .enterprise_hero-visual::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--amber), var(--amber-dark), var(--indigo-light), var(--amber));
      background-size: 200% 100%;
      z-index: 2;
    }
    @media (prefers-reduced-motion: no-preference) {
      .enterprise_hero-visual::before {
        animation: hero-stripe-flow 5s linear infinite;
      }
    }
    @keyframes hero-stripe-flow {
      0% { background-position: 0% 0; }
      100% { background-position: 200% 0; }
    }
    .enterprise_hero-visual-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem 1.25rem 0;
    }
    .enterprise_hero-stat {
      padding: 0;
      flex: 1;
    }
    .enterprise_hero-stat strong {
      display: block;
      font-size: 0.95rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.02em;
      margin-bottom: 4px;
    }
    .enterprise_hero-stat span {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.45;
    }
    .enterprise_hero-ai-graphic {
      margin: 0.75rem 1rem 0;
      padding: 0.5rem 0;
    }
    .enterprise_hero-ai-svg {
      width: 100%;
      height: auto;
      display: block;
      max-height: 190px;
    }
    .enterprise_hero-visual-foot {
      margin: 1rem 1.25rem 1.25rem;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.55);
      text-align: center;
      line-height: 1.5;
    }

    /* Buttons (pill + cyan gradient) */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 9px 22px;
      font-size: 0.95rem;
      font-weight: 500;
      font-family: inherit;
      border-radius: 99px;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t);
    }
    .btn:focus-visible {
      outline: 2px solid var(--amber);
      outline-offset: 3px;
    }
    .btn--primary {
      background: linear-gradient(135deg, var(--amber), var(--amber-dark));
      color: #fff;
      box-shadow: 0 4px 16px rgba(23, 142, 206, 0.35);
    }
    .btn--primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(23, 142, 206, 0.45);
      color: #fff;
    }
    .btn--secondary {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .btn--secondary:hover {
      background: rgba(255, 255, 255, 0.14);
      transform: translateY(-1px);
    }
    .enterprise_hero .btn--secondary {
      color: #fff;
    }
    .card .btn--secondary,
    .section:not(.enterprise_hero) .btn--secondary {
      background: var(--bg-page);
      color: var(--ink);
      border: 1px solid var(--mist-dark);
    }
    .card .btn--secondary:hover,
    .section:not(.enterprise_hero) .btn--secondary:hover {
      background: var(--amber-pale);
      border-color: var(--amber);
      transform: translateY(-2px);
    }
    .btn--light {
      background: #fff;
      color: var(--ink);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    }
    .btn--light:hover {
      background: var(--mist);
      transform: translateY(-2px);
    }
    .btn--outline-light {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.35);
    }
    .btn--outline-light:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.55);
    }

    /* Cards */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }
    .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
    @media (max-width: 768px) {
      .card-grid--2 { grid-template-columns: 1fr; }
    }
    .card {
      background: var(--bg-page);
      border: 1px solid var(--mist-dark);
      border-radius: var(--radius);
      padding: 1.35rem 1.3rem;
      box-shadow: var(--shadow-sm);
      transition: transform var(--t), box-shadow var(--t), border-color var(--t), background var(--t);
      position: relative;
      overflow: hidden;
    }
    .card::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--amber), var(--amber-dark));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--t);
    }
    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: #c5d8e8;
      background: var(--amber-pale);
    }
    .card:hover::after {
      transform: scaleX(1);
    }
    .section--soft .card,
    .section--muted .card {
      background: var(--bg-page);
    }
    .section--soft .card:hover,
    .section--muted .card:hover {
      background: var(--amber-pale);
    }
    .card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--color-navy);
      margin: 0 0 0.75rem;
      letter-spacing: -0.02em;
          
    }
    .card p { margin: 0 0 1rem; color: var(--color-text-muted); font-size: 0.95rem;}
    .solution_section .card p{
      min-height: 130px;
    }
    .solution_section .card h3{
      min-height: 40px;
    }
    .card ul {
      margin: 0 0 1rem;
      padding-left: 1.2rem;
      color: var(--color-text-muted);
      font-size: 0.92rem;
    }
    .card li { margin-bottom: 0.4rem; }
    .card-outcome {
      margin-top: 0.75rem;
      padding-top: 0.75rem;
      border-top: 1px solid var(--color-border);
      font-size: 0.9rem;
      color: var(--color-text);
      font-weight: 500;
    }
    .card-icon {
      width: 40px;
      height: 40px;
      border-radius: 9px;
      background: var(--amber-pale);
      display: grid;
      place-items: center;
      margin-bottom: 0.75rem;
      color: var(--amber-dark);
      transition: filter var(--t);
    }
    .card:hover .card-icon {
      filter: saturate(1.2) brightness(1.05);
    }
    .card-icon svg { width: 22px; height: 22px; }

    /* Domain cards */
    .domain-card .btn { 
      margin: 0px auto;
      display: flex;
     }

    /* Value propositions: two-column bullets */
    .value-props-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.35rem 2.75rem;
      max-width: 52rem;
      margin-top: 0.25rem;
    }
    .value-props-list {
      margin: 0;
      padding-left: 1.2rem;
      color: var(--slate);
      font-size: 0.92rem;
      line-height: 1.55;
    }
    .value-props-list li {
      margin-bottom: 0.4rem;
    }
    .value-props-list strong {
      color: var(--ink);
      font-weight: 600;
    }
    @media (max-width: 640px) {
      .value-props-cols {
        grid-template-columns: 1fr;
      }
    }

    /* Lead magnets */
    .lead-magnet-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.95rem;
    }
    @media (max-width: 960px) {
      .lead-magnet-grid {
        grid-template-columns: 1fr;
      }
    }
    .lead-magnet-card {
      background: #fff;
      border: 1px solid var(--mist-dark);
      border-radius: var(--radius-lg);
      padding: 1.25rem 1.25rem 1.2rem;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      /* min-height: 100%; */
      transition: box-shadow var(--t), border-color var(--t), transform var(--t);
      position: relative;
      /* overflow: hidden; */
    }
    .lead-magnet-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--amber), var(--indigo-light));
      opacity: 0.9;
    }
    .lead-magnet-card:hover {
      box-shadow: var(--shadow-md);
      border-color: #c5d8e8;
      transform: translateY(-3px);
    }
    .lead-magnet-card-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0.75rem;
      margin-bottom: 0.65rem;
      flex-wrap: wrap;
    }
    .lead-magnet-type {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--amber);
      margin: 0;
    }
    .lead-magnet-offer-badge {
      display: inline-block;
      background: #e3f2ec;
      color: #1a5d4a;
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-transform: none;
      padding: 0.4rem 0.65rem;
      border-radius: 6px;
      line-height: 1.25;
      border: 1px solid #b8d4c8;
      box-shadow: none;
    }
    .lead-magnet-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--ink);
      margin: 0 0 0.5rem;
      letter-spacing: -0.02em;
      line-height: 1.3;
    }
    .lead-magnet-card p {
      margin: 0 0 0.95rem;
      font-size: 0.88rem;
      color: var(--slate);
      line-height: 1.5;
      flex: 1;
    }
    .lead-magnet-card .btn {
      align-self: flex-start;
      margin-top: auto;
    }
    .lead-magnet-note {
      margin: 1.1rem 0 0;
      font-size: 0.8rem;
      color: var(--slate-light);
      max-width: 48rem;
      line-height: 1.5;
    }

    /* CTA band */
    .cta-band {
      text-align: center;
      max-width: 40rem;
      margin: 0 auto;
    }
    .cta-band h2 { margin-bottom: 0.65rem; }
    .cta-band .lead { margin: 0 auto 1.1rem; }
    .cta-band ul {
      text-align: left;
      display: inline-block;
      margin: 0 0 2rem;
      color: var(--color-text-muted);
    }
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
    }

    /* Contact CTA: Landing Page.html template (amber #E08C2A, 1fr + 300px) */
    .section.lp-contact {
      padding: 56px 0;
      background: linear-gradient(135deg, var(--ink) 0%, #1a3050 100%);
      border-bottom: none;
    }
    .lp-contact {
      --lp-accent: #178ece;
      --lp-accent-dark: #156fa3;
      position: relative;
      overflow: hidden;
    }
    .lp-contact::before {
      content: "";
      position: absolute;
      top: -60px;
      right: -60px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(23, 142, 206, 0.16) 0%, transparent 70%);
      pointer-events: none;
    }
    .lp-contact::after {
      content: "";
      position: absolute;
      bottom: -40px;
      left: 5%;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(67, 97, 194, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .lp-contact-intro {
      position: relative;
      z-index: 1;
      margin-bottom: 1.5rem;
    }
    .lp-contact-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.67rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--lp-accent);
      background: rgba(23, 142, 206, 0.12);
      border: 1px solid rgba(23, 142, 206, 0.22);
      padding: 3px 11px;
      border-radius: 99px;
      margin-bottom: 8px;
    }
    .lp-contact-title {
      font-size: clamp(1.3rem, 2.5vw, 1.85rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: #fff !important;
      margin: 0 0 6px;
      line-height: 1.2;
    }
    .lp-contact-subtitle {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.56);
      max-width: 480px;
      margin: 0;
      line-height: 1.55;
    }
    .lp-contact-layout {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 24px;
      align-items: start;
      position: relative;
      z-index: 1;
    }
    @media (max-width: 960px) {
      .lp-contact-layout {
        grid-template-columns: 1fr;
      }
    }
    .lp-contact-form-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-lg);
      padding: 28px 26px;
      backdrop-filter: blur(8px);
    }
    .lp-contact-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .lp-contact-form .full {
      grid-column: 1 / -1;
    }
    .lp-contact-form label {
      font-size: 0.75rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.6);
      display: block;
      margin-bottom: 4px;
    }
    .lp-contact-form input,
    .lp-contact-form textarea {
      width: 100%;
      padding: 9px 13px;
      border: 1.5px solid rgba(255, 255, 255, 0.12);
      border-radius: 8px;
      font-size: 0.83rem;
      font-family: inherit;
      background: rgba(255, 255, 255, 0.07);
      color: #fff;
      transition: border-color var(--t), box-shadow var(--t), background var(--t);
      outline: none;
      resize: vertical;
    }
    .lp-contact-form input::placeholder,
    .lp-contact-form textarea::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }
    .lp-contact-form input:focus,
    .lp-contact-form textarea:focus {
      border-color: var(--lp-accent);
      box-shadow: 0 0 0 3px rgba(23, 142, 206, 0.22);
      background: rgba(255, 255, 255, 0.1);
    }
    .lp-contact-form textarea {
      min-height: 72px;
    }
    .lp-btn-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: 100%;
      padding: 9px 22px;
      border-radius: 99px;
      font-size: 0.83rem;
      font-weight: 600;
      font-family: inherit;
      letter-spacing: -0.1px;
      cursor: pointer;
      border: none;
      background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-dark));
      color: #fff;
      box-shadow: 0 4px 16px rgba(23, 142, 206, 0.35);
      transition: transform var(--t), box-shadow var(--t);
    }
    .lp-btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(23, 142, 206, 0.45);
    }
    .lp-contact-note {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.38);
      margin-top: 10px;
      line-height: 1.45;
    }
    .lp-contact-sidebar {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .lp-contact-info-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: var(--radius-lg);
      padding: 22px 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
    }
    .lp-contact-info-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--lp-accent), var(--lp-accent-dark));
    }
    .lp-contact-sidebar-title {
      font-size: 0.88rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.92);
      margin: 0 0 14px;
    }
    .lp-contact-info {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
      margin: 0;
      padding: 0;
    }
    .lp-contact-info li {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.56);
      line-height: 1.45;
    }
    .lp-contact-info li strong {
      display: block;
      color: rgba(255, 255, 255, 0.4);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 1px;
    }
    .lp-contact-info a {
      color: var(--lp-accent);
      text-decoration: none;
      font-weight: 500;
    }
    .lp-contact-info a:hover {
      text-decoration: underline;
    }
    .lp-contact-quick-points {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      background: rgba(255, 255, 255, 0.04);
      border-radius: var(--radius);
      padding: 16px 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      margin: 0;
    }
    .lp-contact-quick-points li {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 0.8rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.62);
    }
    .lp-contact-quick-points li::before {
      content: "";
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-dark));
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
    }
    @media (max-width: 560px) {
      .lp-contact-form {
        grid-template-columns: 1fr;
      }
    }