
  :root {

    --bg: #F8F3F1;
    --surface: #ffffff;
    --text: #1F232B;
    --text-soft: rgba(31,35,43,.6);
    --border: #E7E4E4;

    --accent: #21304F;
    --dark-bg: #162236;
    --orange: #F48530;
    --orange-light: #fff1e6;

    --sans: 'Inter', -apple-system, sans-serif;
    --sans-tight: 'Inter Tight', 'Inter', sans-serif;
    --mono: 'JetBrains Mono', monospace;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 90px; }

  body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button { font-family: inherit; }

  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

  :focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

  .header {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 60px rgba(0,0,0,.1);
    font-family: var(--sans-tight);
    left: 20px;
    right: 20px;
    padding: 0 20px;
    position: fixed;
    top: 19px;
    z-index: 100;
  }

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

  .header .logo {
    display: flex;
    align-items: center;
    padding: 18px 0;
  }

  .logo-word {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.005em;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
  }
  .logo-word .reg {
    font-size: 12px;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 1px;
  }

  .header-menu {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .mobile-menu-close { display: none; }

  .header-menu .menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    height: 100%;
  }

  .header-menu .menu > li { position: static; }
  .header-menu .menu > li.has-children {
    padding-bottom: 40px;
    margin-bottom: -40px;
  }

  .header-menu .menu > li > a {
    color: var(--text);
    font-size: 14.5px;
    font-weight: 500;
    line-height: 125%;
    padding: 6px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .header-menu .menu > li.has-children > a::after {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' fill='none'%3E%3Cpath d='m12 6.5-4 4-4-4' stroke='%231F232B' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: cover;
    transition: transform .2s;
  }
  .header-menu .menu > li.has-children:hover > a::after { transform: rotate(180deg); }

  .header-menu .menu > li > a:hover { color: var(--orange); }
  .mobile-submenu-toggle { display: none; }

  .sub-menu {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
    flex-wrap: wrap;
    left: 0;
    padding: 20px 24px 26px;
    position: absolute;
    top: 100%;
    margin-top: 40px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    list-style: none;
    box-sizing: border-box;
  }
  @media (min-width: 992px) {
    .sub-menu {
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s ease, visibility .2s ease;
      visibility: hidden;
    }
    .header-menu .menu > li.has-children:hover > .sub-menu {
      opacity: 1; pointer-events: auto; visibility: visible;
    }
  }
  .sub-menu li {
    display: block;
    box-sizing: border-box;
  }
  .sub-menu li a {
    display: block;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    line-height: 125%;
    padding: 16px 0;
    width: 100%;
  }
  .sub-menu li a:hover { color: var(--orange); }

  .sub-menu[data-cols="4"] li { width: calc(25% - 18px); margin-right: 24px; }
  .sub-menu[data-cols="4"] li:nth-child(4n) { margin-right: 0; }
  .sub-menu[data-cols="3"] li { width: calc(33.333% - 16px); margin-right: 24px; }
  .sub-menu[data-cols="3"] li:nth-child(3n) { margin-right: 0; }
  .sub-menu[data-cols="2"] li { width: calc(50% - 12px); margin-right: 24px; }
  .sub-menu[data-cols="2"] li:nth-child(2n) { margin-right: 0; }

  .sub-menu li.has-sub { position: relative; }
  .sub-menu li.has-sub > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .sub-menu li.has-sub > a::after {
    content: '';
    width: 14px; height: 14px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' fill='none'%3E%3Cpath d='m6 12.5 4-4-4-4' stroke='%231F232B' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: cover;
    transition: transform .2s ease;
    flex-shrink: 0;
  }
  .sub-menu li.has-sub:hover > a::after { transform: rotate(90deg); }
  .sub-sub-menu {
    background: var(--surface2);
    border-radius: 6px;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
  }
  .sub-menu li.has-sub:hover .sub-sub-menu {
    max-height: 600px;
    padding: 14px 14px 6px;
    margin-top: 4px;
  }
  .sub-sub-grouped {
    display: flex;
    gap: 22px;
  }
  .sub-sub-group { flex: 1; min-width: 0; }
  .sub-sub-group-title {
    font-family: var(--sans-tight);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border2);
  }
  .sub-sub-group a {
    display: block;
    font-size: 13.5px;
    font-weight: 400;
    color: var(--text);
    padding: 7px 8px;
    border-radius: 4px;
    margin: 0 -8px;
  }
  .sub-sub-group a:hover { background: #fff; color: var(--orange); }

  @media (max-width: 1100px) {
    .sub-menu[data-cols="4"] li { width: calc(33.33% - 16px); margin-right: 24px; }
    .sub-menu[data-cols="4"] li:nth-child(3n) { margin-right: 0; }
    .sub-menu[data-cols="4"] li:nth-child(4n) { margin-right: 24px; }
  }

  .right-block {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 160px;
    width: 100%;
  }

  .search-button {
    cursor: pointer;
    margin-right: 16px;
    position: relative;
    display: flex;
  }
  .search-button::before {
    content: '';
    background-color: var(--border);
    height: 22px;
    width: 1px;
    position: absolute;
    right: -16px;
    top: 1px;
  }
  .search-button svg { display: block; height: 24px; width: 24px; }

  .search-form-block {
    display: none;
    position: absolute;
    left: 0;
    top: 70px;
    width: 100%;
  }
  .search-form-block.open { display: block; }
  .search-form-block form { position: relative; width: 100%; }
  .search-form-block input {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    padding: 20px 18px;
    width: 100%;
    border: none;
  }
  .search-form-block input::placeholder { color: var(--text); opacity: .5; }
  .search-form-block .close-search {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 22px;
  }

  .wpml-language {
    position: relative;
    padding-left: 16px;
  }
  .current-language {
    align-items: center;
    color: var(--text);
    cursor: pointer;
    display: flex;
    font-size: 12px;
    font-weight: 500;
    gap: 4px;
  }
  .current-language svg { display: block; height: 22px; width: 22px; transition: transform .2s ease; }
  .wpml-language:hover .current-language svg { transform: rotate(180deg); }

  .lang-dropdown {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .2s ease;
    min-width: 150px;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 10px;
    z-index: 50;
  }
  .wpml-language .lang-dropdown.open {
    opacity: 1; visibility: visible; pointer-events: auto;
  }
  .lang-dropdown a {
    align-items: center;
    color: var(--text);
    display: flex;
    font-family: var(--sans-tight);
    font-size: 14px;
    font-weight: 500;
    padding: 9px 8px;
    gap: 10px;
    border-radius: 4px;
    transition: background .15s ease;
  }
  .lang-dropdown a:hover { background: var(--bg); color: var(--orange); }
  .lang-dropdown a.active { color: var(--orange); font-weight: 600; }
  .lang-flag {
    width: 20px; height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 13px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .mobile-menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
  }

  @media (max-width: 991px) {
    .header-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #fff;
      z-index: 200;
      padding: 90px 24px 40px;
      overflow-y: auto;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
    }
    .header-menu.mobile-open { display: flex; }
    .header-menu .menu {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      height: auto;
    }
    .header-menu .menu > li {
      border-bottom: 1px solid var(--border);
    }
    .header-menu .menu > li > a {
      padding: 16px 0;
      font-size: 17px;
      width: 100%;
      justify-content: space-between;
    }
    .header-menu .menu > li.has-children > a::after { display: none; }
    .mobile-submenu-toggle {
      width: 22px; height: 22px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .mobile-submenu-toggle svg { transition: transform .25s ease; }
    .header-menu .menu > li.has-children.mobile-expanded .mobile-submenu-toggle svg { transform: rotate(45deg); }

    .sub-menu {
      position: static !important;
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto !important;
      box-shadow: none !important;
      width: 100% !important;
      margin-top: 0 !important;
      padding: 0 0 16px !important;
      max-height: 0;
      overflow: hidden;
      display: block !important;
      transition: max-height .3s ease;
    }
    .header-menu .menu > li.has-children.mobile-expanded .sub-menu {
      max-height: 2000px;
    }
    .sub-menu[data-cols] li {
      width: 100% !important;
      margin-right: 0 !important;
    }
    .sub-sub-grouped { flex-direction: column; gap: 14px; }
    .sub-menu li.has-sub:hover .sub-sub-menu { max-height: none; }
    .sub-sub-menu { max-height: 0; }
    .sub-menu li.has-sub.mobile-sub-expanded .sub-sub-menu { max-height: 600px; }

    .mobile-menu-close {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 36px; height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
  }

  @media (max-width: 991px) {
    .mobile-menu-button { display: flex; }
    .header { left: 16px; right: 16px; top: 16px; padding: 0 16px; }
  }

  .hero {
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #0e1521 0%, #162236 45%, #1f3148 72%, #2c4159 100%);
  }
  .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 75% 30%, rgba(244,133,48,.14) 0%, transparent 40%),
      repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0px, rgba(255,255,255,.025) 1px, transparent 1px, transparent 80px);
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,18,30,.45) 0%, rgba(15,18,30,.6) 55%, rgba(15,18,30,.78) 100%);
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 281px 24px;
    display: flex;
    flex-direction: column;
  }

  .hero h1 {
    font-family: var(--sans-tight);
    font-size: 22px;
    font-weight: 500;
    line-height: 135%;
    color: rgba(255,255,255,.75);
    max-width: 700px;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .hero-tagline {
    font-family: var(--sans-tight);
    font-size: 70px;
    font-weight: 500;
    line-height: 110%;
    color: #fff;
    max-width: 800px;
    letter-spacing: -0.01em;
    margin-top: 14px;
  }
  .hero-tagline .accent { color: var(--orange); }

  .hero-inner > p:not(.hero-tagline) {
    font-family: var(--sans);
    font-size: 18px;
    line-height: 145%;
    color: #fff;
    max-width: 540px;
    margin-top: 24px;
  }

  .hero-cta {
    margin-top: 32px;
  }
  .btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    border-radius: 6px;
    padding: 13px 18px;
    font-family: var(--sans-tight);
    font-size: 14px;
    font-weight: 500;
    transition: all .2s ease;
  }
  .btn-learn-more:hover {
    background: var(--orange);
    border-color: var(--orange);
  }

  .scroll-indicator {
    position: absolute;
    left: 24px;
    bottom: 37px;
    z-index: 1;
    font-family: var(--sans-tight);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding-left: 20px;
  }
  .scroll-indicator::before {
    content: '';
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: 0; top: 6px;
  }
  .scroll-indicator::after {
    content: '';
    width: 1px; height: 90px;
    background: #fff;
    position: absolute;
    left: 4px; top: 14px;
  }

  @media (max-width: 1024px) {
    .hero-tagline { font-size: 55px; }
  }
  @media (max-width: 767px) {
    .hero h1 { font-size: 16px; }
    .hero-tagline { font-size: 38px; }
    .hero-inner { padding: 200px 20px 110px; }
    .scroll-indicator { display: none; }
  }

  .core-section {
    background: var(--bg);
    padding: 140px 24px 120px;
  }
  .core-inner { max-width: 1180px; margin: 0 auto; }
  .core-label {
    font-family: var(--sans-tight);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
  }
  .core-heading {
    font-family: var(--sans-tight);
    font-size: 44px;
    font-weight: 500;
    line-height: 125%;
    max-width: 760px;
    margin-top: 15px;
  }

  .blog-section {
    background: var(--bg);
    padding: 100px 24px 0;
  }
  .blog-inner { max-width: 1180px; margin: 0 auto; }
  .blog-title-block {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
  }
  .blog-title-block h2 {
    font-family: var(--sans-tight);
    font-size: 32px;
    font-weight: 500;
    line-height: 125%;
  }
  .blog-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans-tight);
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    white-space: nowrap;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
  }
  .blog-all-link:hover { border-color: var(--accent); }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .blog-card {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: box-shadow .2s ease, transform .2s ease;
  }
  .blog-card:hover { box-shadow: 0 14px 32px rgba(15,23,42,.08); transform: translateY(-2px); }
  .blog-card-img {
    height: 170px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
  }
  .blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .blog-card-img.b1 { background: linear-gradient(150deg, #1e293b 0%, #334155 60%, #475569 100%); }
  .blog-card-img.b2 { background: linear-gradient(150deg, #2b1f1a 0%, #4f3a2d 60%, #74563f 100%); }
  .blog-card-img.b3 { background: linear-gradient(150deg, #1f2937 0%, #374151 60%, #57606f 100%); }
  .blog-card-body { padding: 22px 22px 24px; }
  .blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans-tight);
    font-size: 12px;
    font-weight: 500;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 12px;
  }
  .blog-card-meta .blog-tag { color: var(--orange); }
  .blog-card h3 {
    font-family: var(--sans-tight);
    font-size: 17px;
    font-weight: 600;
    line-height: 135%;
    margin-bottom: 10px;
  }
  .blog-card p {
    font-family: var(--sans);
    font-size: 13.5px;
    line-height: 155%;
    color: var(--text2);
  }

  @media (max-width: 900px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-section { padding: 70px 20px 0; }
  }

  .sector-title-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 70px;
    margin-bottom: 32px;
  }
  .sector-title-block h3 {
    font-family: var(--sans-tight);
    font-size: 20px;
    font-weight: 500;
  }
  .sector-nav {
    display: flex;
    align-items: center;
    gap: 9px;
    height: 36px;
    flex-shrink: 0;
  }
  .sector-nav button {
    align-items: center;
    background: hsla(0,0%,100%,.4);
    border: 1px solid rgba(31,35,43,.2);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    height: 36px;
    justify-content: center;
    width: 36px;
    transition: all .2s ease;
  }
  .sector-nav button:hover { background: var(--orange); border-color: var(--orange); }
  .sector-nav button:hover svg path { stroke: #fff; }
  .sector-nav button svg path { transition: all .2s ease; }

  .sector-viewport {
    overflow: hidden;
    margin: 0 -24px;
    padding: 0 24px;
  }
  .sector-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .sector-grid::-webkit-scrollbar { display: none; }
  .sector-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 210px;
    flex: 0 0 calc(14.28% - 12px);
    min-width: 150px;
    display: flex;
    flex-direction: column;
    padding: 14px;
    scroll-snap-align: start;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    -webkit-appearance: none;
    appearance: none;
  }
  .sector-card .ph-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .sector-card.s1 .ph-bg { background: linear-gradient(160deg, #2b2f38 0%, #4a5160 55%, #6b7280 100%); }
  .sector-card.s2 .ph-bg { background: linear-gradient(160deg, #1f2937 0%, #374151 55%, #57606f 100%); }
  .sector-card.s3 .ph-bg { background: linear-gradient(160deg, #292524 0%, #44403c 55%, #6b6358 100%); }
  .sector-card.s4 .ph-bg { background: linear-gradient(160deg, #1e293b 0%, #334155 55%, #475569 100%); }
  .sector-card.s5 .ph-bg { background: linear-gradient(160deg, #3f2d1f 0%, #5e4530 55%, #7d5f44 100%); }
  .sector-card.s6 .ph-bg { background: linear-gradient(160deg, #1f2937 0%, #4b5563 55%, #6b7280 100%); }
  .sector-card.s7 .ph-bg { background: linear-gradient(160deg, #312e22 0%, #57503a 55%, #7a7152 100%); }
  .sector-card.s8 .ph-bg { background: linear-gradient(160deg, #1e2a3a 0%, #344b63 55%, #4a6584 100%); }
  .sector-card.s9 .ph-bg { background: linear-gradient(160deg, #2b1f1a 0%, #4f3a2d 55%, #74563f 100%); }
  .sector-card.s10 .ph-bg { background: linear-gradient(160deg, #232b2b 0%, #3e4d4d 55%, #5a716f 100%); }
  .sector-card.s11 .ph-bg { background: linear-gradient(160deg, #28232f 0%, #463c54 55%, #645476 100%); }
  .sector-card.s12 .ph-bg { background: linear-gradient(160deg, #1c2630 0%, #354556 55%, #4d6478 100%); }
  .sector-card .ph-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,.06) 0%, transparent 45%);
  }
  .sector-card:hover .ph-bg { transform: scale(1.04); }
  .sector-card .ph-bg { transition: transform .3s ease; }
  .sector-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,14,26,.05) 0%, rgba(10,14,26,.6) 100%);
    z-index: 1;
  }
  .sector-card.active::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--orange);
    border-radius: 10px;
    z-index: 3;
    pointer-events: none;
  }
  .sector-tag {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: var(--sans-tight);
    font-size: 11.5px;
    font-weight: 500;
    padding-left: 14px;
  }
  .sector-tag::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--orange);
    position: absolute;
    left: 0; top: 4px;
  }
  .sector-bottom {
    position: relative;
    z-index: 2;
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
  }
  .sector-bottom .name {
    color: #fff;
    font-family: var(--sans-tight);
    font-size: 15px;
    font-weight: 500;
    line-height: 120%;
  }
  .sector-bottom .arrow {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease;
  }
  .sector-card.active .arrow { transform: rotate(90deg); background: var(--orange); border-color: var(--orange); }
  .sector-bottom .arrow svg { width: 16px; height: 16px; }

  .sector-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .sector-detail-inner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-top: 18px;
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .sector-detail-text { max-width: 640px; }
  .sector-detail-text h4 {
    font-family: var(--sans-tight);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .sector-detail-text p {
    font-family: var(--sans);
    font-size: 14.5px;
    line-height: 165%;
    color: var(--text2);
  }
  .sector-detail-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-family: var(--sans-tight);
    font-size: 13.5px;
    font-weight: 500;
    padding: 11px 16px;
    border-radius: 6px;
    white-space: nowrap;
    transition: background .2s ease;
  }
  .sector-detail-link:hover { background: var(--orange); }

  .sector-summary {
    font-family: var(--sans);
    font-size: 14.5px;
    line-height: 170%;
    color: var(--text-soft);
    max-width: 760px;
    margin-top: 36px;
  }

  @media (max-width: 1200px) {
    .sector-card { flex: 0 0 calc(25% - 11px); }
  }
  @media (max-width: 900px) {
    .sector-card { flex: 0 0 calc(33.33% - 10px); }
  }
  @media (max-width: 767px) {
    .core-section { padding: 90px 20px 80px; }
    .core-heading { font-size: 26px; }
    .sector-card { flex: 0 0 42%; height: 220px; }
    .sector-title-block { margin-top: 44px; }
    .sector-summary { font-size: 13.5px; margin-top: 28px; }
    .sector-detail-inner { padding: 22px 20px; }
  }

  .ba-wrap { margin-top: 56px; }
  .ba-slider {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    background: #1a1a1a;
  }
  .ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    user-select: none;
    overflow: hidden;
  }
  .ba-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
  }

  .ba-after { z-index: 1; background-image: linear-gradient(160deg, #3a4f73 0%, #5b7299 100%); }
  .ba-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    background-image: linear-gradient(160deg, #8a3a1f 0%, #c5602e 100%);
  }
  .ba-label {
    position: absolute;
    top: 20px;
    z-index: 3;
    background: rgba(10,14,26,.55);
    backdrop-filter: blur(6px);
    color: #fff;
    font-family: var(--sans-tight);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 100px;
  }
  .ba-label.before-label { left: 20px; }
  .ba-label.after-label { right: 20px; }
  .ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    z-index: 4;
    transform: translateX(-50%);
    pointer-events: none;
  }
  .ba-handle .ba-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  .ba-knob svg { width: 16px; height: 16px; }
  .ba-caption {
    text-align: center;
    font-family: var(--sans-tight);
    font-size: 13.5px;
    color: var(--text-soft);
    margin-top: 16px;
  }

  @media (max-width: 767px) {
    .ba-slider { height: 320px; }
  }

  .services-section {
    background: var(--dark-bg);
    padding: 100px 24px;
  }
  .services-inner { max-width: 1180px; margin: 0 auto; }
  .services-heading {
    font-family: var(--sans-tight);
    font-size: 36px;
    font-weight: 500;
    line-height: 125%;
    color: #fff;
    max-width: 600px;
    text-align: center;
    margin: 0 auto 50px;
  }
  .services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .service-card {
    flex: 1;
    min-width: 260px;
    border-radius: 8px;
    padding: 25px 25px 24px;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    display: block;
    -webkit-appearance: none;
    appearance: none;
    transition: transform .2s ease;
  }
  .service-card:hover { transform: translateY(-3px); }
  .service-card.c1 { background-color: #0075ED; }
  .service-card.c2 { background-color: #04654A; }
  .service-card.c3 { background-color: #B59C6D; }

  .service-tag {
    position: relative;
    color: #fff;
    font-family: var(--sans-tight);
    font-size: 14px;
    font-weight: 500;
    line-height: 125%;
    padding-left: 18px;
    margin-bottom: 27px;
  }
  .service-tag::before {
    content: '';
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: 0; top: 5px;
  }
  .service-stat {
    color: #fff;
    font-family: var(--sans-tight);
    font-size: 44px;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 5px;
  }
  .service-name {
    color: #fff;
    font-family: var(--sans-tight);
    font-size: 24px;
    font-weight: 500;
    line-height: 125%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .service-name .service-toggle-icon {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, background .2s ease;
  }
  .service-card.open .service-toggle-icon { transform: rotate(45deg); background: rgba(255,255,255,.15); }
  .service-desc-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, margin-top .3s ease;
  }
  .service-card.open .service-desc-wrap {
    max-height: 160px;
    margin-top: 16px;
  }
  .service-desc {
    color: rgba(255,255,255,.92);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
  }

  @media (max-width: 767px) {
    .services-section { padding: 70px 20px; }
    .services-heading { font-size: 26px; }
    .services-grid { flex-direction: column; }
  }

  .faq-section {
    background: var(--dark-bg);
    padding: 0 24px 110px;
  }
  .faq-inner {
    max-width: 1180px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .faq-item:first-child { border-top: 1px solid rgba(255,255,255,.14); }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 4px;
    text-align: left;
    font-family: var(--sans-tight);
    font-size: 17px;
    font-weight: 500;
    color: #fff;
  }
  .faq-question .faq-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
  }
  .faq-icon svg { transition: transform .25s ease; }
  .faq-item.open .faq-question .faq-icon { background: var(--orange); border-color: var(--orange); }
  .faq-item.open .faq-icon svg { transform: rotate(45deg); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .faq-answer p {
    font-family: var(--sans);
    font-size: 14.5px;
    line-height: 165%;
    color: rgba(255,255,255,.62);
    padding: 0 4px 26px;
    max-width: 680px;
  }

  @media (max-width: 767px) {
    .faq-section { padding: 0 20px 80px; }
    .faq-question { font-size: 15.5px; padding: 20px 2px; }
  }

  .case-cta-section {
    background: var(--bg);
    padding: 140px 24px;
  }
  .case-cta-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .case-cta-inner h2 {
    font-family: var(--sans-tight);
    font-size: 36px;
    font-weight: 500;
    line-height: 125%;
    max-width: 620px;
  }
  .case-cta-inner h2 span { opacity: .5; }
  .btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(20px);
    background-color: var(--orange);
    border: 1px solid var(--orange);
    border-radius: 6px;
    color: #fff;
    font-family: var(--sans-tight);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 12px 12px 20px;
    transition: all .2s ease;
    white-space: nowrap;
  }
  .btn-arrow:hover { background: #fff; color: var(--orange); }
  .btn-arrow:hover svg path { fill: var(--orange); }
  .btn-arrow svg path { transition: all .2s ease; }

  @media (max-width: 767px) {
    .case-cta-section { padding: 80px 20px; }
    .case-cta-inner h2 { font-size: 24px; }
  }

  .footer {
    background: var(--dark-bg);
    background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0px, rgba(255,255,255,.03) 1px, transparent 1px, transparent 90px);
    padding: 70px 24px 0;
  }
  .footer-inner { max-width: 1180px; margin: 0 auto; }

  .footer-top {
    padding-bottom: 0;
  }
  .footer-brand-band {
    display: block;
    padding: 36px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .footer-brand { max-width: 100%; }
  .footer-logo {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .footer-logo .reg { font-size: 12px; font-weight: 600; align-self: flex-start; margin-top: 1px; }
  .footer-brand-band p, .footer-brand p {
    font-family: var(--sans);
    font-size: 12.5px;
    line-height: 155%;
    color: rgba(255,255,255,.72);
    margin-top: 14px;
  }

  .footer-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 100px;
    padding: 11px 8px 11px 20px;
    flex: 0 0 340px;
    transition: border-color .2s ease;
  }
  .footer-search:focus-within { border-color: var(--orange); }
  .footer-search input {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-family: var(--sans);
    font-size: 13.5px;
    width: 100%;
  }
  .footer-search input::placeholder { color: rgba(255,255,255,.4); }
  .footer-search button {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--orange);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease;
  }
  .footer-search button:hover { background: #fff; }
  .footer-search button:hover svg path { stroke: var(--orange); }
  .footer-search button svg path { transition: stroke .2s ease; }

  .footer-sitemap {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .footer-col {
    flex: 1;
    min-width: 0;
    border-right: 1px solid rgba(255,255,255,.12);
  }
  .footer-col:last-child { border-right: none; }
  .footer-col-toggle {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 20px 18px;
    text-align: left;
    font-family: inherit;
  }
  .footer-col-toggle h4 {
    font-family: var(--sans-tight);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin: 0;
  }
  .footer-col-toggle .footer-col-icon {
    flex-shrink: 0;
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, background .2s ease;
  }
  .footer-col.open .footer-col-icon { background: var(--orange); border-color: var(--orange); transform: rotate(45deg); }
  .footer-col-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .footer-col.open .footer-col-panel { max-height: 800px; }
  .footer-col-panel-inner { padding: 0 18px 22px; }
  .footer-col a {
    display: block;
    font-family: var(--sans);
    font-size: 13.5px;
    line-height: 145%;
    color: rgba(255,255,255,.72);
    margin-bottom: 12px;
    transition: color .15s ease;
  }
  .footer-col a:last-child { margin-bottom: 0; }
  .footer-col a:hover { color: var(--orange); }
  .footer-address {
    display: block;
    font-family: var(--sans);
    font-size: 13.5px;
    line-height: 150%;
    color: rgba(255,255,255,.5);
    margin-bottom: 12px;
  }

  .footer-map {
    width: 100%;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 16px;
    filter: grayscale(.15) contrast(1.05);
  }
  .footer-map iframe { display: block; }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 0;
    flex-wrap: wrap;
  }
  .footer-bottom p {
    font-family: var(--sans);
    font-size: 13px;
    color: rgba(255,255,255,.45);
  }
  .footer-socials {
    display: flex;
    gap: 10px;
  }
  .footer-socials a {
    width: 34px; height: 34px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
  }
  .footer-socials a:hover { background: var(--orange); border-color: var(--orange); }
  .footer-socials a:hover svg path { stroke: #fff; fill: #fff; }
  .footer-socials a svg { width: 16px; height: 16px; }

  @media (max-width: 900px) {
    .footer-sitemap { flex-direction: column; }
    .footer-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
    .footer-col:last-child { border-bottom: none; }
  }
  @media (max-width: 600px) {
    .footer { padding: 50px 20px 0; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }

  .about-hero {
    background: var(--dark-bg);
    padding: 200px 24px 90px;
    position: relative;
    overflow: hidden;
  }
  .about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: .22;
    filter: saturate(1.1);
  }
  .about-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22,34,54,.55) 0%, var(--dark-bg) 92%);
  }
  .about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(circle at 80% 20%, rgba(244,133,48,.12) 0%, transparent 45%);
  }
  .about-hero-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 2; }
  .about-hero .about-label {
    font-family: var(--sans-tight);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
  }
  .about-hero h1 {
    font-family: var(--sans-tight);
    font-size: 42px;
    font-weight: 500;
    line-height: 125%;
    color: #fff;
    max-width: 820px;
  }
  .about-hero p {
    font-family: var(--sans);
    font-size: 17px;
    line-height: 165%;
    color: rgba(255,255,255,.65);
    max-width: 680px;
    margin-top: 20px;
  }

  .about-stats-band {
    background: var(--bg);
    padding: 0 24px;
  }
  .about-stats-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transform: translateY(-36px);
  }
  .about-stat-card {
    background: var(--surface);
    padding: 26px 22px;
  }
  .about-stat-card .num {
    font-family: var(--sans-tight);
    font-size: 32px;
    font-weight: 500;
    color: var(--accent);
  }
  .about-stat-card .label {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--text2);
    margin-top: 6px;
    line-height: 140%;
  }

  .about-section {
    background: var(--bg);
    padding: 20px 24px 100px;
  }
  .about-section-inner { max-width: 1180px; margin: 0 auto; }
  .about-block {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
  }
  .about-block:last-child { border-bottom: none; }
  .about-block-label {
    font-family: var(--sans-tight);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--text3);
  }
  .about-block h2 {
    font-family: var(--sans-tight);
    font-size: 28px;
    font-weight: 500;
    line-height: 130%;
    margin-top: 10px;
  }
  .about-block-content p {
    font-family: var(--sans);
    font-size: 15.5px;
    line-height: 175%;
    color: var(--text2);
    margin-bottom: 16px;
  }
  .about-block-content p:last-child { margin-bottom: 0; }

  .about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
  }
  .about-pillar-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 22px;
    background: var(--surface);
  }
  .about-pillar-card .pillar-icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }
  .about-pillar-card h3 {
    font-family: var(--sans-tight);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .about-pillar-card p {
    font-family: var(--sans);
    font-size: 13.5px;
    line-height: 160%;
    color: var(--text2);
  }

  .about-process-list { display: flex; flex-direction: column; gap: 22px; }
  .about-process-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .about-process-item .step-num {
    flex-shrink: 0;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--dark-bg);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans-tight);
    font-size: 14px;
    font-weight: 600;
  }
  .about-process-item h4 {
    font-family: var(--sans-tight);
    font-size: 15.5px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .about-process-item p {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--text2);
    line-height: 160%;
  }

  .about-cta {
    background: var(--dark-bg);
    padding: 70px 24px;
  }
  .about-cta-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .about-cta h2 {
    font-family: var(--sans-tight);
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    max-width: 540px;
  }

  @media (max-width: 900px) {
    .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .about-block { grid-template-columns: 1fr; gap: 18px; }
    .about-pillars { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .about-hero { padding: 170px 20px 70px; }
    .about-hero h1 { font-size: 28px; }
  }

  .contact-hero {
    background: var(--dark-bg);
    padding: 200px 24px 80px;
  }
  .contact-hero-inner { max-width: 1180px; margin: 0 auto; }
  .contact-hero h1 {
    font-family: var(--sans-tight);
    font-size: 44px;
    font-weight: 500;
    line-height: 120%;
    color: #fff;
    max-width: 640px;
  }
  .contact-hero p {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 160%;
    color: rgba(255,255,255,.65);
    max-width: 560px;
    margin-top: 16px;
  }

  .contact-nap-band {
    background: var(--bg);
    padding: 0 24px;
  }
  .contact-nap-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transform: translateY(-40px);
  }
  .contact-nap-card {
    background: var(--surface);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contact-nap-card .nap-icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
  }
  .contact-nap-card .nap-label {
    font-family: var(--sans-tight);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--text3);
  }
  .contact-nap-card a, .contact-nap-card .nap-value {
    font-family: var(--sans-tight);
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    line-height: 140%;
  }
  .contact-nap-card a:hover { color: var(--orange); }

  .contact-main {
    background: var(--bg);
    padding: 20px 24px 110px;
  }
  .contact-main-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
  .contact-form-block h2 {
    font-family: var(--sans-tight);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .contact-form-block > p {
    font-family: var(--sans);
    font-size: 14.5px;
    color: var(--text2);
    line-height: 155%;
    margin-bottom: 28px;
  }
  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-form label {
    display: block;
    font-family: var(--sans-tight);
    font-size: 13px;
    font-weight: 500;
    color: var(--text2);
    margin-bottom: 6px;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 11px 14px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--text);
    background: var(--surface);
    outline: none;
    transition: border-color .15s ease;
  }
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus { border-color: var(--accent); }
  .contact-form textarea { resize: vertical; min-height: 110px; }
  .contact-form button[type="submit"] {
    align-self: flex-start;
    background: var(--accent);
    color: #fff;
    font-family: var(--sans-tight);
    font-size: 14.5px;
    font-weight: 500;
    padding: 13px 26px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s ease;
    margin-top: 6px;
  }
  .contact-form button[type="submit"]:hover { background: var(--orange); }

  .contact-side-block { display: flex; flex-direction: column; gap: 28px; }
  .contact-map-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 320px;
  }
  .contact-map-card iframe { width: 100%; height: 100%; border: 0; display: block; }

  .contact-hours-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 26px;
    background: var(--surface);
  }
  .contact-hours-card h3 {
    font-family: var(--sans-tight);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
  }
  .contact-hours-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--text2);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
  }
  .contact-hours-row:last-child { border-bottom: none; }
  .contact-hours-row span:last-child { color: var(--text); font-weight: 500; }

  @media (max-width: 900px) {
    .contact-nap-inner { grid-template-columns: 1fr; }
    .contact-main-inner { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 600px) {
    .contact-hero { padding: 170px 20px 60px; }
    .contact-hero h1 { font-size: 30px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
  }

  /* ============ KATALOGLAR VE BELGELER ============ */
  .docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 8px;
  }
  .doc-card {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 20px;
    background: var(--surface);
    transition: border-color .15s ease, box-shadow .15s ease;
  }
  .doc-card:hover { border-color: var(--accent); box-shadow: 0 6px 20px rgba(15,23,42,.06); }
  .doc-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 8px;
    background: var(--dark-bg);
    color: #fff;
    font-family: var(--sans-tight);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .doc-info h3 {
    font-family: var(--sans-tight);
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 3px;
  }
  .doc-info p {
    font-family: var(--sans);
    font-size: 12.5px;
    color: var(--text2);
  }
  @media (max-width: 700px) {
    .docs-grid { grid-template-columns: 1fr; }
  }
  /* ===== ÜRÜN SAYFASI ===== */

  /* HERO */
  .product-hero {
    background: #162236;
    padding: 120px 40px 0;
    position: relative;
    overflow: hidden;
  }
  .product-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 40%, rgba(244,133,48,.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .product-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .product-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .product-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--orange);
    flex-shrink: 0;
  }
  .product-hero h1 {
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    max-width: 720px;
    margin-bottom: 22px;
    letter-spacing: -.01em;
  }
  .product-hero-lead {
    font-size: 17px;
    color: rgba(255,255,255,.78);
    max-width: 680px;
    line-height: 1.75;
    margin-bottom: 38px;
  }
  .product-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  .product-hero-img-wrap {
    margin-top: 8px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-bottom: none;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-hero-img {
    width: 100%;
    max-width: 1100px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    display: block;
  }

  /* SPECS BAND */
  .product-specs-band {
    background: var(--orange);
    padding: 0 40px;
  }
  .product-specs-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .product-spec-item {
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,.25);
    text-align: center;
  }
  .product-spec-item:last-child { border-right: none; }
  .product-spec-val {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 5px;
    line-height: 1.2;
  }
  .product-spec-label {
    font-size: 11px;
    color: rgba(255,255,255,.85);
    text-transform: uppercase;
    letter-spacing: .09em;
    font-weight: 600;
  }

  /* SECTIONS */
  .product-section {
    padding: 90px 40px;
    background: #fff;
  }
  .product-section.alt { background: #f7f4f1; }
  .product-section.dark-section {
    background: #162236;
  }
  .product-section-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .product-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
  }
  .product-section h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: #162236;
    line-height: 1.18;
    margin-bottom: 20px;
    max-width: 700px;
  }
  .product-section.dark-section h2 { color: #fff; }
  .product-section p {
    font-size: 16px;
    line-height: 1.78;
    color: #444;
    max-width: 780px;
    margin-bottom: 16px;
  }
  .product-section.dark-section p { color: rgba(255,255,255,.75); }
  .product-section.dark-section .product-section-label { color: var(--orange); }

  /* TWO COL */
  .product-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 40px;
  }

  /* FEATURE CARDS */
  .product-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px;
  }
  .product-feature-card {
    background: #fff;
    border: 1px solid #e4e0dc;
    border-radius: 10px;
    padding: 28px 24px;
    transition: box-shadow .2s, border-color .2s, transform .2s;
  }
  .product-section.alt .product-feature-card { background: #fff; }
  .product-feature-card:hover {
    box-shadow: 0 10px 36px rgba(22,34,54,.1);
    border-color: var(--orange);
    transform: translateY(-2px);
  }
  .product-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(244,133,48,.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .product-feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #162236;
    margin-bottom: 9px;
    line-height: 1.3;
  }
  .product-feature-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin: 0;
  }

  /* USE CASES */
  .product-use-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
  }
  .product-use-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e4e0dc;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
  }
  .product-section.alt .product-use-item { background: #fff; }
  .product-use-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
    margin-top: 4px;
  }

  /* IMAGE */
  .product-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    background: #ebe6e1;
    aspect-ratio: 4/3;
  }
  .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .product-img-caption {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
    font-style: italic;
  }

  /* TABLE */
  .product-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    font-size: 14px;
    border-radius: 8px;
    overflow: hidden;
  }
  .product-table th {
    background: #162236;
    color: #fff;
    padding: 14px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  .product-table td {
    padding: 13px 20px;
    border-bottom: 1px solid #ebe8e5;
    color: #333;
    vertical-align: top;
    line-height: 1.5;
  }
  .product-table tr:last-child td { border-bottom: none; }
  .product-table tr:nth-child(even) td { background: #faf7f5; }

  /* CTA */
  .product-cta {
    background: #162236;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
  }
  .product-cta::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(244,133,48,.07);
    pointer-events: none;
  }
  .product-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
  }
  .product-cta h2 {
    font-size: clamp(20px, 2.8vw, 32px);
    font-weight: 800;
    color: #fff;
    max-width: 580px;
    line-height: 1.25;
  }
  .product-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    flex-shrink: 0;
  }

  /* RELATED */
  .product-related {
    background: #f7f4f1;
    padding: 60px 40px;
  }
  .product-related-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .product-related-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
  }
  .product-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .product-related-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #162236;
    text-decoration: none;
    transition: border-color .2s, background .2s, color .2s;
  }
  .product-related-link:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: #fff;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .product-specs-inner { grid-template-columns: repeat(2, 1fr); }
    .product-features-grid { grid-template-columns: 1fr 1fr; }
    .product-two-col { grid-template-columns: 1fr; gap: 36px; }
    .product-use-list { grid-template-columns: 1fr; }
    .product-cta-inner { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 600px) {
    .product-hero { padding: 100px 20px 0; }
    .product-specs-inner { grid-template-columns: 1fr 1fr; }
    .product-spec-item { padding: 20px 12px; }
    .product-features-grid { grid-template-columns: 1fr; }
    .product-section { padding: 60px 20px; }
    .product-cta { padding: 60px 20px; }
    .product-related { padding: 40px 20px; }
  }


  /* ===== BLOG MAKALE SAYFASI ===== */
  .article-hero {
    background: #162236;
    padding: 120px 40px 60px;
    position: relative;
    overflow: hidden;
  }
  .article-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 90% 30%, rgba(244,133,48,.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .article-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,.5);
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .article-breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
  .article-breadcrumb a:hover { color: var(--orange); }
  .article-breadcrumb span { color: rgba(255,255,255,.3); }
  .article-tag {
    display: inline-block;
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
  }
  .article-hero h1 {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -.01em;
  }
  .article-hero-lead {
    font-size: 17px;
    color: rgba(255,255,255,.72);
    line-height: 1.72;
    margin-bottom: 28px;
    max-width: 680px;
  }
  .article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,.45);
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 20px;
  }
  .article-meta-item { display: flex; align-items: center; gap: 6px; }
  .article-meta strong { color: rgba(255,255,255,.7); }

  /* MAKALE GÖVDE */
  .article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 70px 40px;
  }
  .article-cover {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 52px;
    background: #ebe6e1;
    aspect-ratio: 16/9;
    max-height: 440px;
  }
  .article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .article-content h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: #162236;
    line-height: 1.2;
    margin: 48px 0 16px;
  }
  .article-content h2:first-child { margin-top: 0; }
  .article-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #162236;
    margin: 32px 0 12px;
    padding-left: 14px;
    border-left: 3px solid var(--orange);
  }
  .article-content p {
    font-size: 16px;
    line-height: 1.82;
    color: #3a3a3a;
    margin-bottom: 20px;
  }
  .article-content ul, .article-content ol {
    margin: 0 0 20px 24px;
  }
  .article-content li {
    font-size: 16px;
    line-height: 1.72;
    color: #3a3a3a;
    margin-bottom: 8px;
  }
  .article-content strong { color: #162236; font-weight: 700; }
  .article-content a { color: var(--orange); text-decoration: underline; }
  .article-content a:hover { color: #162236; }

  /* Callout kutusu */
  .article-callout {
    background: #f7f4f1;
    border-left: 4px solid var(--orange);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 28px 0;
  }
  .article-callout p { margin: 0; font-size: 15px; color: #444; font-style: italic; }
  .article-callout strong { color: #162236; }

  /* Tablo */
  .article-table-wrap { overflow-x: auto; margin: 28px 0; }
  .article-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border-radius: 8px;
    overflow: hidden;
  }
  .article-table th {
    background: #162236;
    color: #fff;
    padding: 12px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
  }
  .article-table td {
    padding: 12px 18px;
    border-bottom: 1px solid #ebe8e5;
    color: #333;
    vertical-align: top;
  }
  .article-table tr:last-child td { border-bottom: none; }
  .article-table tr:nth-child(even) td { background: #faf7f5; }

  /* İç görsel */
  .article-img {
    margin: 36px 0;
    border-radius: 10px;
    overflow: hidden;
    background: #ebe6e1;
  }
  .article-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  .article-img figcaption {
    padding: 10px 16px;
    font-size: 12px;
    color: #888;
    font-style: italic;
    background: #f7f4f1;
  }

  /* CTA kutu */
  .article-cta {
    background: #162236;
    border-radius: 12px;
    padding: 36px 40px;
    margin: 48px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .article-cta h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
  }
  .article-cta p { font-size: 14px; color: rgba(255,255,255,.6); margin: 0; }
  .article-cta-btn {
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    background: var(--orange);
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity .2s;
  }
  .article-cta-btn:hover { opacity: .9; }

  /* BLOG ANA SAYFA */
  .blog-page-hero {
    background: #162236;
    padding: 140px 40px 70px;
  }
  .blog-page-hero-inner { max-width: 1100px; margin: 0 auto; }
  .blog-page-hero .tag-label {
    font-size: 11px; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
  }
  .blog-page-hero .tag-label::before {
    content: ''; display: inline-block; width: 24px; height: 2px;
    background: var(--orange); flex-shrink: 0;
  }
  .blog-page-hero h1 {
    font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: #fff;
    line-height: 1.15; max-width: 620px; margin-bottom: 16px;
  }
  .blog-page-hero p {
    font-size: 17px; color: rgba(255,255,255,.7); max-width: 560px; line-height: 1.7;
  }
  .blog-page-body { max-width: 1100px; margin: 0 auto; padding: 70px 40px; }
  .blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .blog-page-card {
    background: #fff;
    border: 1px solid #e4e0dc;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
  }
  .blog-page-card:hover {
    box-shadow: 0 12px 36px rgba(22,34,54,.1);
    transform: translateY(-3px);
  }
  .blog-page-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #ebe6e1;
    flex-shrink: 0;
  }
  .blog-page-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .blog-page-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
  .blog-page-card-meta {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: #888; margin-bottom: 12px;
  }
  .blog-page-card-tag { color: var(--orange); font-weight: 700; }
  .blog-page-card h2 {
    font-size: 17px; font-weight: 700; color: #162236;
    line-height: 1.3; margin-bottom: 10px; flex: 1;
  }
  .blog-page-card p {
    font-size: 14px; color: #666; line-height: 1.65; margin: 0;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .blog-page-grid { grid-template-columns: 1fr 1fr; }
    .article-cta { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 600px) {
    .article-hero { padding: 100px 20px 50px; }
    .article-body { padding: 50px 20px; }
    .blog-page-hero { padding: 110px 20px 50px; }
    .blog-page-body { padding: 40px 20px; }
    .blog-page-grid { grid-template-columns: 1fr; }
    .article-cta { padding: 28px 24px; }
  }

