
    :root {
      --bg: #f5f7f8;
      --card: #ffffff;
      --dark: #0d161b;
      --text: #23323a;
      --muted: #66757d;
      --line: #dfe6e9;
      --point: #dca75b;
      --point-dark: #b67d31;
      --soft: #eef2f3;
      --max: 1180px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
      word-break: keep-all;
    }

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

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

    .container {
      width: min(calc(100% - 40px), var(--max));
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 16px;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.18em;
      color: var(--point-dark);
      text-transform: uppercase;
    }

    .section-title {
      font-size: clamp(30px, 4vw, 52px);
      line-height: 1.2;
      color: var(--dark);
      letter-spacing: -0.04em;
      margin-bottom: 22px;
    }

    .section-desc {
      max-width: 760px;
      color: var(--muted);
      font-size: 17px;
    }

    .section-head {
      margin-bottom: 52px;
	  border-radius:22px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: ;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
    }

    .nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-size: 19px;
      font-weight: 900;
      letter-spacing: -0.03em;
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      border: 2px solid var(--point);
      position: relative;
    }

    .logo-mark::before,
    .logo-mark::after {
      content: "";
      position: absolute;
      background: var(--point);
    }

    .logo-mark::before {
      width: 18px;
      height: 2px;
      left: 6px;
      top: 10px;
    }

    .logo-mark::after {
      width: 2px;
      height: 18px;
      left: 15px;
      top: 6px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      color: #d6dde0;
      font-size: 14px;
      font-weight: 700;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .nav-cta {
      padding: 4px 12px;
      background: var(--point);
      color: var(--dark);
      font-weight: 900;
      border: 1px solid var(--point);
	  border-radius:15px;
    }

    .hero {
      position: relative;
      overflow: hidden;
      background: var(--dark);
      color: #fff;
      padding: 40px 0 96px;
    }

    .heroxx::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.18;
      background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
      background-size: 54px 54px;
    }

    .heroxx::after {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      right: -220px;
      top: -190px;
      border: 1px solid rgba(220, 167, 91, 0.45);
      border-radius: 50%;
      box-shadow:
        0 0 0 60px rgba(220, 167, 91, 0.04),
        0 0 0 120px rgba(220, 167, 91, 0.025);
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      align-items: center;
      gap: 70px;
    }

    .hero h1 {
      max-width: 760px;
      font-size: clamp(44px, 7vw, 78px);
      line-height: 1.08;
      letter-spacing: -0.055em;
      margin-bottom: 28px;
    }

    .hero h1 strong {
      color: var(--point);
    }

    .hero-copy {
      max-width: 690px;
      color: #cbd4d8;
      font-size: 18px;
      margin-bottom: 38px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn {
      min-width: 170px;
      padding: 15px 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      border: 1px solid transparent;
      transition: 0.25s ease;
    }

    .btn-primary {
      background: var(--point);
      color: var(--dark);
      border-color: var(--point);
    }

    .btn-primary:hover {
      background: #efbd75;
    }

    .btn-line {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.28);
    }

    .btn-line:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, 0.06);
    }

    .hero-panel {
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.04);
      padding: 34px;
    }

    .panel-label {
      color: var(--point);
      font-weight: 900;
      margin-bottom: 24px;
    }

    .hero-list {
      display: grid;
      gap: 0;
    }

    .hero-list li {
      list-style: none;
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 16px;
      padding: 20px 0;
      border-top: 1px solid rgba(255,255,255,0.11);
    }

    .hero-list li:first-child {
      border-top: 0;
      padding-top: 0;
    }

    .hero-list .num {
      color: var(--point);
      font-weight: 900;
      font-size: 13px;
    }

    .hero-list h3 {
      font-size: 18px;
      margin-bottom: 6px;
    }

    .hero-list p {
      color: #aebbc1;
      font-size: 14px;
    }

    .summary {
      background: #fff;
      border-bottom: 1px solid var(--line);
    }

    .summary-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .summary-item {
      padding: 32px 26px;
      border-right: 1px solid var(--line);
    }

    .summary-item:last-child {
      border-right: 0;
    }

    .summary-item strong {
      display: block;
      color: var(--dark);
      font-size: 21px;
      margin-bottom: 6px;
    }

    .summary-item span {
      color: var(--muted);
      font-size: 14px;
    }

    section {
      padding: 110px 0;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 70px;
      align-items: start;
    }

    .intro-sticky {
      position: sticky;
      top: 118px;
    }

    .intro-content {
      display: grid;
      gap: 18px;
    }

    .text-card {
      background: var(--card);
      padding: 34px;
      border: 1px solid var(--line);
    }

    .text-card h3 {
      font-size: 22px;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .text-card p {
      color: var(--muted);
    }

    .services {
      background: var(--soft);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .service-card {
      min-height: 310px;
      background: #fff;
      border: 1px solid var(--line);
      padding: 32px;
      display: flex;
      flex-direction: column;
      transition: 0.25s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      border-color: #c9b18e;
    }

    .service-no {
      color: var(--point-dark);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.12em;
      margin-bottom: 42px;
    }

    .service-card h3 {
      color: var(--dark);
      font-size: 24px;
      margin-bottom: 14px;
    }

    .service-card p {
      color: var(--muted);
      margin-bottom: 26px;
    }

    .service-card ul {
      margin-top: auto;
      padding-left: 18px;
      color: #47575f;
      font-size: 14px;
    }

    .service-card li + li {
      margin-top: 7px;
    }


    .strategy {
      background: #fff;
    }

    .strategy-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .strategy-box {
      border-top: 4px solid var(--dark);
      background: var(--bg);
      padding: 34px;
    }

    .strategy-box span {
      color: var(--point-dark);
      font-size: 13px;
      font-weight: 900;
    }

    .strategy-box h3 {
      margin: 12px 0 14px;
      font-size: 24px;
      color: var(--dark);
    }

    .strategy-box p {
      color: var(--muted);
    }

    .process {
      background: var(--dark);
      color: #fff;
    }

    .process .section-title {
      color: #fff;
    }

    .process .section-desc {
      color: #b5c0c5;
    }

    .process-list {
      border-top: 1px solid rgba(255,255,255,0.15);
    }

    .process-item {
      display: grid;
      grid-template-columns: 100px 1fr 1.3fr;
      gap: 30px;
      padding: 34px 0;
      border-bottom: 1px solid rgba(255,255,255,0.15);
      align-items: start;
    }

    .process-item .step {
      color: var(--point);
      font-weight: 900;
    }

    .process-item h3 {
      font-size: 22px;
    }

    .process-item p {
      color: #adb9be;
    }

    .performance-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .metric-panel,
    .report-panel {
      background: #fff;
      border: 1px solid var(--line);
      padding: 38px;
    }

    .metric-list {
      display: grid;
      gap: 22px;
      margin-top: 26px;
    }

    .metric {
      padding-bottom: 20px;
      border-bottom: 1px solid var(--line);
    }

    .metric:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .metric strong {
      display: block;
      color: var(--dark);
      font-size: 20px;
      margin-bottom: 5px;
    }

    .metric span {
      color: var(--muted);
      font-size: 14px;
    }

    .report-list {
      display: grid;
      gap: 14px;
      margin-top: 26px;
    }

    .report-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: var(--bg);
      padding: 18px;
    }

    .check {
      flex: 0 0 25px;
      width: 25px;
      height: 25px;
      display: grid;
      place-items: center;
      background: var(--dark);
      color: #fff;
      font-size: 12px;
      font-weight: 900;
    }

    .report-item p {
      color: var(--muted);
      font-size: 14px;
    }

    .industries {
      background: var(--soft);
    }

    .industry-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .industry-card {
      background: #fff;
      min-height: 150px;
      border: 1px solid var(--line);
      padding: 24px;
    }

    .industry-card h3 {
      color: var(--dark);
      font-size: 18px;
      margin-bottom: 10px;
    }

    .industry-card p {
      color: var(--muted);
      font-size: 14px;
    }

    .difference-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .difference-card {
      padding: 32px;
      border-left: 3px solid var(--point);
      background: #fff;
      box-shadow: 0 12px 40px rgba(13, 22, 27, 0.06);
    }

    .difference-card h3 {
      color: var(--dark);
      font-size: 22px;
      margin-bottom: 12px;
    }

    .difference-card p {
      color: var(--muted);
    }

    .faq {
      background: #fff;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    details {
      border: 1px solid var(--line);
      background: var(--bg);
      padding: 22px 24px;
    }

    summary {
      cursor: pointer;
      color: var(--dark);
      font-weight: 900;
      list-style: none;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    details p {
      padding-top: 16px;
      color: var(--muted);
    }

    .cta-section {
      background: #000;
      padding: 88px 0;
    }

    .cta-wrap {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 36px;
    }

    .cta-wrap h2 {
      color: var(--dark);
      font-size: clamp(34px, 5vw, 56px);
      line-height: 1.15;
      letter-spacing: -0.04em;
      margin-bottom: 14px;
    }

    .cta-wrap p {
      max-width: 760px;
      color: #5f471f;
    }

    .cta-wrap .btn {
      background: var(--dark);
      color: #fff;
      border-color: var(--dark);
    }

    .contact {
      background: var(--dark);
      color: #fff;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 60px;
    }

    .contact .section-title {
      color: #fff;
    }

    .contact .section-desc {
      color: #aebbc1;
    }

    .contact-info {
      margin-top: 30px;
      display: grid;
      gap: 14px;
    }

    .contact-info div {
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .contact-info span {
      display: block;
      color: #87979f;
      font-size: 13px;
      margin-bottom: 4px;
    }

    .contact-info strong {
      font-size: 18px;
    }

    .contact-form {
      background: #fff;
      padding: 36px;
      color: var(--text);
    }

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

    .field {
      display: grid;
      gap: 8px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      font-size: 13px;
      font-weight: 800;
      color: #3e4d54;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid var(--line);
      background: #fafcfc;
      padding: 14px 15px;
      font: inherit;
      color: var(--text);
      outline: none;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--point-dark);
    }

    textarea {
      min-height: 150px;
      resize: vertical;
    }

    .privacy {
      margin: 18px 0;
      color: var(--muted);
      font-size: 13px;
    }

    .submit-btn {
      width: 100%;
      border: 0;
      background: var(--dark);
      color: #fff;
      padding: 16px;
      font-weight: 900;
      cursor: pointer;
    }

    footer {
      background: #091014;
      color: #87979f;
      padding: 34px 0;
      font-size: 13px;
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .hero-grid,
      .intro-grid,
      .strategy-grid,
      .performance-grid,
      .contact-grid,
      .cta-wrap {
        grid-template-columns: 1fr;
      }

      .intro-sticky {
        position: static;
      }

      .service-grid,
      .difference-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .industry-grid,
      .summary-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .summary-item:nth-child(2) {
        border-right: 0;
      }

      .summary-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
      }

      .process-item {
        grid-template-columns: 70px 1fr;
      }

      .process-item p {
        grid-column: 2;
      }

      .cta-wrap .btn {
        justify-self: start;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(calc(100% - 28px), var(--max));
      }

      section {
        padding: 78px 0;
      }

      .hero {
        padding: 86px 0 72px;
      }

      .service-grid,
      .difference-grid,
      .industry-grid,
      .summary-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .summary-item,
      .summary-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .summary-item:last-child {
        border-bottom: 0;
      }

      .process-item {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .process-item p {
        grid-column: auto;
      }

      .hero-panel,
      .text-card,
      .service-card,
      .metric-panel,
      .report-panel,
      .contact-form {
        padding: 26px;
      }
    }
  

    /* Premium vector illustrations */
    .vector-stage {
      position: relative;
      min-height: 420px;
      display: grid;
      place-items: center;
    }

    .vector-card {
      position: relative;
      width: min(100%, 520px);
      padding: 26px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 24px 80px rgba(0,0,0,0.18);
      overflow: hidden;
    }

    .vector-card::before {
      content: "";
      position: absolute;
      width: 190px;
      height: 190px;
      right: -70px;
      top: -70px;
      border: 1px solid rgba(220,167,91,0.35);
      border-radius: 50%;
    }

    .vector-card::after {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      left: -45px;
      bottom: -45px;
      border: 1px solid rgba(255,255,255,0.12);
      transform: rotate(18deg);
    }

    .vector-card svg {
      position: relative;
      z-index: 2;
      width: 100%;
      height: auto;
    }

    .vector-line {
      fill: none;
      stroke: #dca75b;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .vector-line-soft {
      fill: none;
      stroke: rgba(255,255,255,0.32);
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .vector-fill-soft {
      fill: rgba(255,255,255,0.05);
      stroke: rgba(255,255,255,0.14);
      stroke-width: 1.3;
    }

    .vector-dot {
      fill: #dca75b;
    }

    .section-visual {
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 54px;
      align-items: center;
      margin-bottom: 56px;
    }

    .section-visual.reverse {
      grid-template-columns: 0.9fr 1fr;
    }

    .vector-light {
      background: #fff;
      border: 1px solid var(--line);
      padding: 26px;
      box-shadow: 0 18px 60px rgba(13,22,27,0.06);
    }

    .vector-light svg {
      width: 100%;
      height: auto;
    }

    .vector-light .vector-line-soft {
      stroke: #bdc8cd;
    }

    .vector-light .vector-fill-soft {
      fill: #f6f8f9;
      stroke: #dfe6e9;
    }

    .vector-light .vector-line {
      stroke: var(--point-dark);
    }

    .icon-wrap {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border: 1px solid #e7dccb;
      background: #fbf8f2;
      margin-bottom: 28px;
    }

    .icon-wrap svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: var(--point-dark);
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-no {
      margin-bottom: 18px;
    }

    .visual-banner {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 30px;
      align-items: center;
      padding: 46px;
      background: #152329;
      color: #fff;
      border: 1px solid rgba(255,255,255,0.08);
      margin-top: 44px;
      overflow: hidden;
      position: relative;
    }

    .visual-banner h3 {
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.2;
      letter-spacing: -0.04em;
      margin-bottom: 14px;
    }

    .visual-banner p {
      color: #b7c4c9;
    }

    .visual-banner svg {
      width: 100%;
      height: auto;
    }

    @media (max-width: 980px) {
      .section-visual,
      .section-visual.reverse,
      .visual-banner {
        grid-template-columns: 1fr;
      }

      .vector-stage {
        min-height: auto;
      }
    }


    /* Deep teal marketing theme */
    :root {
      --bg: #35515b;
      --card: #3d5d68;
      --dark: #20343b;
      --text: #f4f7f8;
      --muted: #c8d3d7;
      --line: rgba(255,255,255,0.13);
      --point: #e4b56b;
      --point-dark: #f0c985;
      --soft: #2f4852;
    }

    body,
    .services,
    .industries,
    .strategy,
    .faq,
    .summary,
    section,
    .cta-section {
      background: #35515b !important;
      color: var(--text);
    }

    .site-header {
      background: rgba(32,52,59,0.97);
    }

    .hero,
    .process,
    .contact {
      background: #29424b !important;
    }

    .section-title,
    .text-card h3,
    .service-card h3,
    .strategy-box h3,
    .metric strong,
    .industry-card h3,
    .difference-card h3,
    summary,
    .summary-item strong {
      color: #ffffff !important;
    }

    .section-desc,
    .text-card p,
    .service-card p,
    .strategy-box p,
    .metric span,
    .industry-card p,
    .difference-card p,
    details p,
    .summary-item span,
    .report-item p,
    .privacy {
      color: var(--muted) !important;
    }

    .summary {
      border-color: var(--line);
    }

    .summary-item {
      border-color: var(--line);
    }

    .text-card,
    .service-card,
    .strategy-box,
    .metric-panel,
    .report-panel,
    .industry-card,
    .difference-card,
    details,
    .vector-light,
    .contact-form {
      background: rgba(255,255,255,0.06) !important;
      border-color: rgba(255,255,255,0.13) !important;
      box-shadow: 0 18px 50px rgba(17,34,40,0.18);
      backdrop-filter: blur(4px);
    }

    .service-card:hover,
    .industry-card:hover,
    .difference-card:hover {
      transform: translateY(-5px);
      border-color: rgba(228,181,107,0.65) !important;
    }

    .strategy-box {
      border-top-color: var(--point) !important;
    }

    .difference-card {
      border-left-color: var(--point) !important;
    }

    .report-item {
      background: rgba(255,255,255,0.05);
    }

    .icon-wrap {
      background: rgba(228,181,107,0.10);
      border-color: rgba(228,181,107,0.42);
    }

    .icon-wrap svg {
      stroke: #f0c985;
    }

    .vector-light .vector-fill-soft {
      fill: rgba(255,255,255,0.05);
      stroke: rgba(255,255,255,0.14);
    }

    .vector-light .vector-line-soft {
      stroke: rgba(255,255,255,0.35);
    }

    .vector-light .vector-line {
      stroke: #f0c985;
    }

    .cta-section {
      border-top: 1px solid rgba(255,255,255,0.12);
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .cta-wrap h2 {
      color: #fff;
    }

    .cta-wrap p {
      color: var(--muted);
    }

    .cta-wrap .btn {
      background: var(--point);
      border-color: var(--point);
      color: #20343b;
    }

    .contact-form label {
      color: #edf4f6;
    }

    input,
    select,
    textarea {
      background: rgba(255,255,255,0.08);
      color: #fff;
      border-color: rgba(255,255,255,0.15);
    }

    input::placeholder,
    textarea::placeholder {
      color: #b9c6ca;
    }

    select option {
      color: #20343b;
    }

    footer {
      background: #20343b;
    }

    /* Simple vector icons for list-type content */
    .summary-item,
    .industry-card,
    .difference-card,
    .text-card {
      position: relative;
      overflow: hidden;
    }

    .summary-item::after,
    .industry-card::after,
    .difference-card::after,
    .text-card::after {
      content: "";
      position: absolute;
      right: 18px;
      top: 18px;
      width: 34px;
      height: 34px;
      opacity: 0.35;
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
    }

    .summary-item:nth-child(1)::after,
    .text-card:nth-child(1)::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23f0c985' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='16' cy='16' r='10'/%3E%3Cpath d='M16 10v6l4 3'/%3E%3Cpath d='M6 16h3M23 16h3'/%3E%3C/svg%3E");
    }

    .summary-item:nth-child(2)::after,
    .text-card:nth-child(2)::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23f0c985' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 23l5-14 5 14 4-9 4 9'/%3E%3Cpath d='M5 26h22'/%3E%3C/svg%3E");
    }

    .summary-item:nth-child(3)::after,
    .text-card:nth-child(3)::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23f0c985' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 22V12l10-6 10 6v10'/%3E%3Cpath d='M10 22v-7h12v7'/%3E%3C/svg%3E");
    }

    .summary-item:nth-child(4)::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23f0c985' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 26V17M13 26V12M20 26V19M27 26V7'/%3E%3Cpath d='M4 26h25'/%3E%3C/svg%3E");
    }

    .industry-card::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23f0c985' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='7' width='20' height='18' rx='2'/%3E%3Cpath d='M10 12h12M10 16h8M10 20h10'/%3E%3C/svg%3E");
    }

    .difference-card::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23f0c985' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 17l7 7L27 9'/%3E%3C/svg%3E");
    }

    .service-card ul li,
    .service-card p,
    .industry-card p,
    .difference-card p {
      position: relative;
      z-index: 2;
    }

    .service-card ul {
      list-style: none;
      padding-left: 0;
    }

    .service-card li {
      position: relative;
      padding-left: 22px;
      color: #d6e0e3;
    }

    .service-card li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.68em;
      width: 8px;
      height: 8px;
      border: 1px solid #f0c985;
      transform: rotate(45deg);
    }

    .visual-banner {
      background: #29424b;
      border-color: rgba(255,255,255,0.12);
    }

    .eyebrow {
      color: #f0c985;
    }

    .nav-cta,
    .btn-primary {
      background: var(--point);
      border-color: var(--point);
      color: #20343b;
    }


    /* Luxury refinement */
    body {
      background:
        radial-gradient(circle at 15% 8%, rgba(255,255,255,0.04), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(228,181,107,0.05), transparent 24%),
        #35515b !important;
      letter-spacing: -0.015em;
    }

    .site-header {
      border-bottom: 1px solid rgba(255,255,255,0.09);
      box-shadow: 0 12px 40px rgba(15,31,37,0.16);
    }

    .logo {
      letter-spacing: 0.08em;
      font-size: 16px;
    }

    .logo-mark {
      border-color: #f0c985;
      box-shadow: inset 0 0 0 5px rgba(240,201,133,0.04);
    }

    .hero {
      min-height: 760px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .hero::before {
      opacity: 0.1;
      background-size: 68px 68px;
    }

    .hero h1 {
      font-weight: 800;
      max-width: 840px;
      text-shadow: 0 12px 40px rgba(0,0,0,0.14);
    }

    .hero h1 strong {
      display: inline-block;
      position: relative;
      color: #f3ca88;
    }

    .hero h1 strong::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 0px;
      height: 2px;
      background: #f3ca88;
    }

    .hero-copy {
      font-size: 19px;
      line-height: 1.9;
      max-width: 760px;
    }

    .btn {
      min-width: 184px;
      min-height: 54px;
      letter-spacing: -0.02em;
      box-shadow: 0 10px 28px rgba(16,35,41,0.12);
    }

    .btn-primary,
    .nav-cta,
    .cta-wrap .btn {
      background: #f0c985 !important;
      color: #20343b !important;
      border-color: #f0c985 !important;
    }

    .btn-primary:hover,
    .nav-cta:hover,
    .cta-wrap .btn:hover {
      background: #f6d8a5 !important;
      transform: translateY(-2px);
    }

    .vector-card {
      border-color: rgba(240,201,133,0.28);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
      box-shadow:
        0 35px 100px rgba(13,28,34,0.26),
        inset 0 1px 0 rgba(255,255,255,0.06);
    }

    section {
      position: relative;
    }

    section:not(.hero):not(.process):not(.contact):not(.cta-section)::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 0;
      width: min(1180px, calc(100% - 40px));
      transform: translateX(-50%);
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    }

    .section-head {
      max-width: 900px;
    }

    .section-title {
      font-weight: 800;
      letter-spacing: -0.055em;
    }

    .section-desc {
      font-size: 18px;
      line-height: 1.9;
    }

    .eyebrow {
      position: relative;
      padding-left: 38px;
      letter-spacing: 0.2em;
    }

    .eyebrow::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 25px;
      height: 1px;
      background: #f0c985;
    }

    .text-card,
    .service-card,
    .strategy-box,
    .metric-panel,
    .report-panel,
    .industry-card,
    .difference-card,
    details,
    .vector-light,
    .contact-form {
      border-radius: 2px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.038)) !important;
      box-shadow:
        0 22px 55px rgba(20,39,46,0.18),
        inset 0 1px 0 rgba(255,255,255,0.05);
    }

    .service-card,
    .industry-card,
    .difference-card {
      transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
    }

    .service-card:hover,
    .industry-card:hover,
    .difference-card:hover {
      box-shadow:
        0 30px 70px rgba(18,37,44,0.24),
        inset 0 1px 0 rgba(255,255,255,0.06);
    }

    .service-card {
      min-height: 340px;
      padding: 36px;
    }

    .service-card h3,
    .difference-card h3,
    .industry-card h3,
    .text-card h3 {
      letter-spacing: -0.035em;
    }

    .service-no {
      font-size: 11px;
      letter-spacing: .16em;
      color: #f0c985;
    }

    .icon-wrap {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      box-shadow: inset 0 0 0 6px rgba(240,201,133,0.035);
    }

    .service-card li {
      font-size: 14px;
      padding-left: 24px;
    }

    .service-card li::before {
      width: 7px;
      height: 7px;
      background: rgba(240,201,133,0.12);
    }

    .summary {
      background: #314b55 !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }

    .summary-item {
      padding: 38px 30px;
    }

    .summary-item strong {
      font-size: 22px;
      letter-spacing: -0.03em;
    }

    .strategy-box {
      border-top-width: 2px !important;
    }

    .process {
      background:
        linear-gradient(rgba(41,66,75,.96), rgba(41,66,75,.96)),
        radial-gradient(circle at 80% 10%, rgba(240,201,133,.08), transparent 30%) !important;
    }

    .process-item {
      padding: 40px 0;
    }

    .process-item .step {
      letter-spacing: .12em;
      font-size: 12px;
    }

    .visual-banner {
      padding: 58px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
        #29424b;
      box-shadow: 0 28px 70px rgba(17,34,40,.22);
    }

    .cta-section {
      background:
        linear-gradient(120deg, rgba(240,201,133,.12), transparent 48%),
        #35515b !important;
      padding: 110px 0;
    }

    .cta-wrap {
      padding: 10px 0;
    }

    .contact-form {
      padding: 42px;
    }

    input,
    select,
    textarea {
      min-height: 52px;
      border-radius: 0;
    }

    textarea {
      min-height: 160px;
    }

    .submit-btn {
      min-height: 56px;
      background: #f0c985;
      color: #20343b;
      font-size: 15px;
    }

    .submit-btn:hover {
      background: #f6d8a5;
    }

    details {
      padding: 25px 28px;
    }

    details[open] {
      border-color: rgba(240,201,133,.42) !important;
    }

    footer {
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    @media (max-width: 640px) {
      .hero {
        min-height: auto;
      }

      .hero h1 strong::after {
        bottom: -6px;
      }

      .visual-banner,
      .contact-form,
      .service-card {
        padding: 28px;
      }
    }
.btn1 {      min-width: 170px;
      padding: 15px 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      border: 1px solid transparent;
      transition: 0.25s ease;
}
.btn1 {      min-width: 184px;
      min-height: 54px;
      letter-spacing: -0.02em;
      box-shadow: 0 10px 28px rgba(16,35,41,0.12);
}
.contact1 {      background: #29424b !important;
}
.contact-grid1 {        grid-template-columns: 1fr;
}
.container1 {      width: min(calc(100% - 40px), var(--max));
      margin: 0 auto;
}
.container1 {        width: min(calc(100% - 28px), var(--max));
}
.cta-wrap1 {        grid-template-columns: 1fr;
}
.hero1 {      position: relative;
      overflow: hidden;
      background: var(--dark);
      color: #fff;
      padding: 40px 0 96px;
}
.hero1 {        padding: 86px 0 72px;
}
.hero1 {      background: #29424b !important;
}
.hero1 {      min-height: 760px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero1 {        min-height: auto;
}
.hero-actions1 {      display: flex;
      flex-wrap: wrap;
      gap: 14px;
}
.hero-grid1 {      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      align-items: center;
      gap: 70px;
}
.hero-grid1 {        grid-template-columns: 1fr;
}
.intro-grid1 {        grid-template-columns: 1fr;
}
.nav-cta1 {      background: var(--point);
      border-color: var(--point);
      color: #20343b;
}
.nav-cta1 {      background: #f0c985 !important;
      color: #20343b !important;
      border-color: #f0c985 !important;
}
.performance-grid1 {        grid-template-columns: 1fr;
}
.process1 {      background: #29424b !important;
}
.strategy-grid1 {        grid-template-columns: 1fr;
}
.vector-dot1 {      fill: #dca75b;
}
.vector-fill-soft1 {      fill: rgba(255,255,255,0.05);
      stroke: rgba(255,255,255,0.14);
      stroke-width: 1.3;
}
.vector-line1 {      fill: none;
      stroke: #dca75b;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
}
.vector-line-soft1 {      fill: none;
      stroke: rgba(255,255,255,0.32);
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
}
.vector-stage1 {      position: relative;
      min-height: 420px;
      display: grid;
      place-items: center;
}
.vector-stage1 {        min-height: auto;
}