    :root {
      --purple: #6c63ff;
      --purple-dark: #5a52e0;
      --text-main: #111111;
      --text-muted: #888888;
      --text-nav: #828589;
      --border: #e8e8e8;
      --green: #22c55e;
      --bg: #ffffff;
    }
 
    /* ── NEWSLETTER ── */
    .newsletter-section {
      padding: 56px 0 48px;
      border-bottom: 1px solid var(--border);
    }
 
    .newsletter-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--purple);
      border: 1.5px solid #d6d3ff;
      border-radius: 999px;
      padding: 5px 14px;
      margin-bottom: 20px;
    }
    .newsletter-badge .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--purple);
      display: inline-block;
    }
 
    .newsletter-heading {
      font-size: 32px;
      font-weight: 700;
      line-height: 1.2;
      color: var(--text-main);
      margin: 0 0 10px;
      letter-spacing: -0.02em;
    }
 
    .newsletter-sub {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0;
      font-weight: 400;
    }
 
    .newsletter-form-wrap {
      display: flex;
      gap: 10px;
      align-items: stretch;
      height: 52px;
    }
 
    .newsletter-input {
      flex: 1;
      height: 52px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 0 18px;
      font-size: 14.5px;
      color: var(--text-main);
      background: #fff;
      outline: none;
      transition: border-color 0.2s;
    }
    .newsletter-input::placeholder { color: #b0b0b0; }
    .newsletter-input:focus { border-color: var(--purple); }
 
    .newsletter-btn {
      height: 52px;
      padding: 0 28px;
      background: var(--purple);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s, transform 0.1s;
    }
    .newsletter-btn:hover { background: var(--purple-dark); }
    .newsletter-btn:active { transform: scale(0.98); }
 
    /* ── MAIN FOOTER ── */
    .footer-main {
      padding: 56px 0 48px;
      border-bottom: 1px solid var(--border);
    }
 
    .footer-brand-name {
      font-size: 26px;
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: -0.02em;
      margin: 0 0 10px;
    }
    .footer-brand-name sup {
      font-size: 13px;
      font-weight: 400;
      top: -0.8em;
    }
 
    .footer-brand-desc {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.55;
      margin: 0 0 20px;
      max-width: 260px;
    }
 
    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 0;
      border: 1.5px solid var(--border);
      border-radius: 999px;
      overflow: hidden;
      font-size: 12.5px;
      margin-bottom: 24px;
    }
    .status-badge .status-left {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 5px 14px;
      font-weight: 500;
      color: var(--text-main);
    }
    .status-badge .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      display: inline-block;
    }
    .status-badge .status-q {
      padding: 5px 12px;
      background: #f4f4f4;
      color: var(--text-muted);
      font-size: 12px;
      font-weight: 500;
      border-left: 1.5px solid var(--border);
    }
 
    .social-icons {
      display: flex;
      gap: 10px;
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .social-icons li a {
      width: 40px;
      height: 40px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      transition: border-color 0.2s, color 0.2s;
      text-decoration: none;
    }
    .social-icons li a:hover {
      border-color: var(--purple);
      color: var(--purple);
    }
    .social-icons svg {
      width: 17px;
      height: 17px;
      fill: currentColor;
    }
 
    /* Nav columns */
    .footer-nav-title {
		font-size: 11px;
		font-weight: 600;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		color: #1e1e1e;
		margin: 0 0 18px;
    }
 
    .footer-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-nav-list li {
      margin-bottom: 13px;
    }
    .footer-nav-list li a {
      font-size: 14px;
      color: var(--text-nav);
      text-decoration: none;
      font-weight: 400;
      transition: color 0.15s;
    }
    .footer-nav-list li a:hover { color: var(--purple); }
 
    /* ── CONTACT BAR ── */
    .contact-bar {
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
    }
 
    .contact-item-label {
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 6px;
    }
    .contact-item-value {
      font-size: 14px;
      font-weight: 400;
      color: var(--text-main);
      margin: 0;
    }
    .contact-item-value a {
      color: var(--text-main);
      text-decoration: none;
    }
    .contact-item-value a:hover { color: var(--purple); }
 
    .contact-divider {
      border-left: 1px solid var(--border);
      height: 40px;
      margin: auto 0;
      align-self: center;
    }
 
    /* ── BOTTOM BAR ── */
    .footer-bottom {
      padding: 22px 0;
	    position: relative;
    z-index: 4;	
    }
 
    .footer-copy {
      font-size: 12.5px;
      color: var(--text-muted);
      margin: 0;
      line-height: 2;
    }
 
    .footer-legal {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 20px;
      justify-content: flex-end;
      flex-wrap: wrap;
    }
    .footer-legal li a {
      font-size: 12.5px;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.15s;
    }
    .footer-legal li a:hover { color: var(--text-main); }
 
    .footer-legal .systems-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
    }
    .footer-legal .systems-badge .sys-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
    }
 
    /* Responsive tweaks */
    @media (max-width: 767px) {
      .newsletter-heading { font-size: 24px; }
      .newsletter-form-wrap { margin-top: 15px; }
      .newsletter-input, .newsletter-btn { height: 48px; width: 100%; }
      .footer-brand-col { margin-bottom: 36px; }
      .footer-nav-col { margin-bottom: 28px; }
      .contact-col { margin-bottom: 16px; }
      .footer-legal { justify-content: flex-start; margin-top: 10px; }
    }

    @media (min-width: 767px) {
	.flex-desk { display: flex; align-items: flex-end;}
    }