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

    :root {
      --bg: #f5f8f8;
      --fg: #1a2332;
      --card: #ffffff;
      --card-fg: #1a2332;
      --primary: #0e8a8a;
      --primary-fg: #fcfcfc;
      --secondary: #e8eff0;
      --secondary-fg: #2a3a4a;
      --muted: #e4ecec;
      --muted-fg: #5e7380;
      --accent: #2a9e7e;
      --accent-fg: #fcfcfc;
      --border: #d0dfe0;
      --facturatech: #d4841a;
      --facturatech-fg: #fcfcfc;
      --radius: 0.75rem;
      --font-sans: 'Inter', system-ui, sans-serif;
      --font-heading: 'DM Sans', system-ui, sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

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

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

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

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    @media (min-width: 640px) {
      .container {
        padding: 0 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .container {
        padding: 0 2rem;
      }
    }

    /* ---------- BUTTONS ---------- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-weight: 600;
      font-size: 0.875rem;
      border-radius: var(--radius);
      border: 1px solid transparent;
      padding: 0.5rem 1.25rem;
      cursor: pointer;
      transition: all 0.2s;
      font-family: var(--font-sans);
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--primary-fg);
    }

    .btn-primary:hover {
      opacity: 0.9;
    }

    .btn-outline {
      background: transparent;
      border-color: var(--border);
      color: var(--fg);
    }

    .btn-outline:hover {
      background: var(--secondary);
    }

    .btn-facturatech-outline {
      background: transparent;
      border-color: rgba(212, 132, 26, 0.3);
      color: var(--facturatech);
    }

    .btn-facturatech-outline:hover {
      background: rgba(212, 132, 26, 0.1);
    }

    .btn-facturatech {
      background: var(--facturatech);
      color: var(--facturatech-fg);
    }

    .btn-facturatech:hover {
      opacity: 0.9;
    }

    .btn-ghost-light {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.3);
      color: #fff;
    }

    .btn-ghost-light:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .btn-lg {
      padding: 0.75rem 2rem;
      font-size: 1rem;
    }

    .btn svg {
      width: 1rem;
      height: 1rem;
      transition: transform 0.2s;
    }

    .btn:hover svg {
      transform: translate(2px, -2px);
    }

    /* ---------- NAVBAR ---------- */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 4rem;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .navbar-brand-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.25rem;
      height: 2.25rem;
      background: var(--primary);
      border-radius: 0.5rem;
    }

    .navbar-brand-icon svg {
      width: 1.25rem;
      height: 1.25rem;
      color: var(--primary-fg);
    }

    .navbar-brand span {
      font-size: 1.125rem;
      font-weight: 700;
      font-family: var(--font-heading);
    }

    .navbar-links {
      display: none;
      align-items: center;
      gap: 2rem;
    }

    .navbar-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted-fg);
      transition: color 0.2s;
    }

    .navbar-links a:hover {
      color: var(--fg);
    }

    .navbar-actions {
      display: none;
      align-items: center;
      gap: 0.75rem;
    }

    .hamburger {
      display: flex;
      align-items: center;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.25rem;
      color: var(--fg);
    }

    .hamburger svg {
      width: 1.5rem;
      height: 1.5rem;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 0.75rem;
      background: var(--card);
      border-bottom: 1px solid var(--border);
      padding: 1rem;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted-fg);
      padding: 0.5rem 0;
      transition: color 0.2s;
    }

    .mobile-menu a:hover {
      color: var(--fg);
    }

    .mobile-actions {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding-top: 0.5rem;
    }

    .mobile-actions-row {
      display: flex;
      gap: 0.75rem;
    }

    .mobile-actions-row .btn {
      flex: 1;
      text-align: center;
    }

    .mobile-actions .btn-full {
      width: 100%;
    }

    @media (min-width: 768px) {
      .navbar-links {
        display: flex;
      }

      .navbar-actions {
        display: flex;
      }

      .hamburger {
        display: none;
      }
    }

    /* ---------- HERO ---------- */
    .hero {
      position: relative;
      height: 90vh;
      min-height: 500px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-slider {
      position: absolute;
      inset: 0;
      background: var(--fg);
    }

    .hero-slider .slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 0.8s ease;
    }

    .hero-slider .slide.active {
      opacity: 1;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 5;
      background: rgba(26, 35, 50, 0.72);
    }

    .slider-dots {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 15;
      display: flex;
      gap: 0.6rem;
    }

    .slider-dots button {
      width: 0.75rem;
      height: 0.75rem;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.5);
      background: transparent;
      cursor: pointer;
      padding: 0;
      transition: all 0.3s;
    }

    .slider-dots button.active {
      background: #fff;
      border-color: #fff;
      transform: scale(1.2);
    }

    .slider-dots button:hover {
      border-color: rgba(255, 255, 255, 0.8);
    }

    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 15;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.4);
      background: rgba(0, 0, 0, 0.25);
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      padding: 0;
    }

    .slider-arrow:hover {
      background: rgba(0, 0, 0, 0.5);
      border-color: rgba(255, 255, 255, 0.7);
    }

    .slider-arrow svg {
      width: 1.25rem;
      height: 1.25rem;
    }

    .slider-arrow.prev {
      left: 1rem;
    }

    .slider-arrow.next {
      right: 1rem;
    }

    @media (min-width: 640px) {
      .slider-arrow {
        width: 3rem;
        height: 3rem;
      }

      .slider-arrow.prev {
        left: 1.5rem;
      }

      .slider-arrow.next {
        right: 1.5rem;
      }
    }

    .hero-content {
      position: relative;
      z-index: 10;
      padding: 8rem 0 4rem;
      max-width: 640px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(14, 138, 138, 0.2);
      border: 1px solid rgba(14, 138, 138, 0.3);
      border-radius: 9999px;
      padding: 0.375rem 1rem;
      margin-bottom: 2rem;
    }

    .hero-badge svg {
      width: 1rem;
      height: 1rem;
      color: var(--primary);
    }

    .hero-badge span {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--primary);
    }

    .hero h1 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.15;
      text-wrap: balance;
    }

    @media (min-width: 640px) {
      .hero h1 {
        font-size: 3rem;
      }
    }

    @media (min-width: 1024px) {
      .hero h1 {
        font-size: 3.75rem;
      }
    }

    .hero-desc {
      margin-top: 1.5rem;
      font-size: 1.125rem;
      color: rgba(255, 255, 255, 0.8);
      max-width: 560px;
    }

    .hero-buttons {
      margin-top: 2.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .hero-stats {
      margin-top: 4rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 28rem;
    }

    .hero-stats p.stat-value {
      font-family: var(--font-heading);
      font-size: 1.875rem;
      font-weight: 700;
      color: #fff;
    }

    .hero-stats p.stat-label {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 0.25rem;
    }

    /* ---------- SERVICES ---------- */
    .services {
      padding: 6rem 0;
      background: var(--bg);
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 0.75rem;
      text-align: center;
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: 1.875rem;
      font-weight: 700;
      text-align: center;
      text-wrap: balance;
      color: var(--fg);
    }

    @media (min-width: 640px) {
      .section-title {
        font-size: 2.25rem;
      }
    }

    .section-desc {
      margin-top: 1rem;
      font-size: 1.125rem;
      color: var(--muted-fg);
      text-align: center;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    .section-header {
      margin-bottom: 4rem;
    }

    .cards-grid {
      display: grid;
      gap: 2rem;
      grid-template-columns: 1fr;
      max-width: 920px;
      margin: 0 auto;
    }

    .service-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: all 0.3s;
    }

    .service-card:hover {
      border-color: rgba(14, 138, 138, 0.4);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .service-card.facturatech-card:hover {
      border-color: rgba(212, 132, 26, 0.4);
    }

    .service-card-img {
      position: relative;
      height: 14rem;
      overflow: hidden;
      background: var(--bg);
    }

    .service-card-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.5s;
    }

    .service-card:hover .service-card-img img {
      transform: scale(1.05);
    }

    .service-card-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.3) 40%, transparent 100%);
    }

    .service-card-icon {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      border-radius: 0.75rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .service-card-icon svg {
      width: 1.5rem;
      height: 1.5rem;
    }

    .icon-primary {
      background: var(--primary);
      color: var(--primary-fg);
    }

    .icon-accent {
      background: var(--accent);
      color: var(--accent-fg);
    }

    .icon-facturatech {
      background: var(--facturatech);
      color: var(--facturatech-fg);
    }

    .service-card-body {
      padding: 1.5rem;
    }

    .service-card-body h3 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--card-fg);
    }

    .service-card-body p {
      color: var(--muted-fg);
      line-height: 1.7;
      margin-bottom: 1rem;
      font-size: 0.9375rem;
    }

    .service-card-title-row {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
    }

    .badge-dian {
      display: inline-flex;
      align-items: center;
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      background: rgba(212, 132, 26, 0.15);
      color: var(--facturatech);
      padding: 0.125rem 0.5rem;
      border-radius: 9999px;
    }

    /* ---------- CARD DETAILS TOGGLE ---------- */
    .card-details {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
      margin: 0;
    }

    .card-details.open {
      max-height: 2000px;
      opacity: 1;
      margin: 1rem 0;
    }

    .toggle-details {
      width: 100%;
      justify-content: space-between;
      background: var(--secondary);
      border-color: var(--border);
      margin-bottom: 0.5rem;
      font-weight: 500;
    }

    .toggle-details:hover {
      background: var(--muted);
    }

    .toggle-details .toggle-icon {
      transition: transform 0.3s;
    }

    .toggle-details.open .toggle-icon {
      transform: rotate(180deg);
    }

    .details-grid {
      display: grid;
      gap: 1.5rem;
    }

    @media (min-width: 640px) {
      .details-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .details-col h4 {
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: var(--card-fg);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .details-col h4 svg {
      width: 1.25rem;
      height: 1.25rem;
      color: var(--primary);
    }

    .feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: var(--muted-fg);
      line-height: 1.5;
    }

    .feature-list li svg {
      width: 1rem;
      height: 1rem;
      flex-shrink: 0;
      margin-top: 0.2rem;
      color: var(--primary);
    }

    .regulations-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .regulation-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.35rem 0.75rem;
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 500;
      background: rgba(14, 138, 138, 0.08);
      color: var(--primary);
      border: 1px solid rgba(14, 138, 138, 0.15);
    }

    .regulation-tag svg {
      width: 0.75rem;
      height: 0.75rem;
    }

    .infographic-wrap {
      background: var(--secondary);
      border-radius: var(--radius);
      padding: 1rem;
      text-align: center;
    }

    .infographic-wrap svg {
      width: 100%;
      max-width: 320px;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .infographic-caption {
      font-size: 0.75rem;
      color: var(--muted-fg);
      margin-top: 0.5rem;
    }

    /* ---------- COMPLIANCE ---------- */
    .compliance {
      padding: 6rem 0;
      background: rgba(228, 236, 236, 0.5);
    }

    .compliance-grid {
      display: grid;
      gap: 1.5rem;
    }

    @media (min-width: 640px) {
      .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .compliance-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .compliance-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      padding: 1.5rem;
      transition: all 0.3s;
      height: 100%;
    }

    .compliance-card:hover {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .compliance-card.primary-hover:hover {
      border-color: rgba(14, 138, 138, 0.4);
    }

    .compliance-card.facturatech-hover:hover {
      border-color: rgba(212, 132, 26, 0.4);
    }

    .compliance-card-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      border-radius: 0.75rem;
      margin-bottom: 1.25rem;
      transition: background 0.2s;
    }

    .compliance-card-icon svg {
      width: 1.5rem;
      height: 1.5rem;
    }

    .icon-bg-primary {
      background: rgba(14, 138, 138, 0.1);
      color: var(--primary);
    }

    .compliance-card:hover .icon-bg-primary {
      background: rgba(14, 138, 138, 0.2);
    }

    .icon-bg-facturatech {
      background: rgba(212, 132, 26, 0.1);
      color: var(--facturatech);
    }

    .compliance-card:hover .icon-bg-facturatech {
      background: rgba(212, 132, 26, 0.2);
    }

    .compliance-card h3 {
      font-family: var(--font-heading);
      font-size: 1.125rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--card-fg);
    }

    .compliance-card p {
      font-size: 0.875rem;
      color: var(--muted-fg);
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      font-size: 0.75rem;
      font-weight: 500;
      border-radius: 9999px;
      padding: 0.25rem 0.625rem;
    }

    .pill svg {
      width: 0.75rem;
      height: 0.75rem;
    }

    .pill-primary {
      color: var(--primary);
      background: rgba(14, 138, 138, 0.1);
    }

    .pill-facturatech {
      color: var(--facturatech);
      background: rgba(212, 132, 26, 0.1);
    }

    .facturatech-link {
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border);
    }

    .facturatech-link span {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--facturatech);
      transition: all 0.2s;
    }

    .facturatech-link span svg {
      width: 0.875rem;
      height: 0.875rem;
      transition: transform 0.2s;
    }

    .compliance-card:hover .facturatech-link span {
      text-decoration: underline;
    }

    .compliance-card:hover .facturatech-link span svg {
      transform: translate(2px, -2px);
    }

    /* ---------- CTA ---------- */
    .cta {
      padding: 6rem 0;
      background: var(--bg);
    }

    .cta-box {
      position: relative;
      border-radius: 1.5rem;
      overflow: hidden;
      background: var(--fg);
      padding: 2.5rem;
    }

    @media (min-width: 640px) {
      .cta-box {
        padding: 4rem;
      }
    }

    @media (min-width: 1024px) {
      .cta-box {
        padding: 5rem;
      }
    }

    .cta-grid-bg {
      position: absolute;
      inset: 0;
      opacity: 0.1;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .cta-inner {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    @media (min-width: 1024px) {
      .cta-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }
    }

    .cta-text {
      max-width: 560px;
    }

    .cta-text h2 {
      font-family: var(--font-heading);
      font-size: 1.875rem;
      font-weight: 700;
      color: #fff;
      text-wrap: balance;
    }

    @media (min-width: 640px) {
      .cta-text h2 {
        font-size: 2.25rem;
      }
    }

    .cta-text p {
      margin-top: 1rem;
      font-size: 1.125rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
    }

    .cta-buttons {
      margin-top: 2rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .cta-contact {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 1024px) {
      .cta-contact {
        text-align: right;
      }
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    @media (min-width: 1024px) {
      .contact-item {
        flex-direction: row-reverse;
      }
    }

    .contact-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.5rem;
      background: rgba(14, 138, 138, 0.2);
    }

    .contact-icon svg {
      width: 1.25rem;
      height: 1.25rem;
      color: var(--primary);
    }

    .contact-label {
      font-size: 0.6875rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.5);
    }

    .contact-value {
      font-size: 1rem;
      font-weight: 500;
      color: #fff;
    }

    /* ---------- FOOTER ---------- */
    .footer {
      background: var(--fg);
      color: #fff;
      padding: 4rem 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
    }

    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .footer-brand {
      grid-column: span 2;
    }

    @media (min-width: 768px) {
      .footer-brand {
        grid-column: span 1;
      }
    }

    .footer-brand-row {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .footer-brand-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      background: var(--primary);
      border-radius: 0.5rem;
    }

    .footer-brand-icon svg {
      width: 1rem;
      height: 1rem;
      color: var(--primary-fg);
    }

    .footer-brand span {
      font-size: 0.875rem;
      font-weight: 700;
      font-family: var(--font-heading);
    }

    .footer-brand p {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.5);
      max-width: 18rem;
      line-height: 1.7;
    }

    .footer-col h4 {
      font-size: 0.875rem;
      font-weight: 600;
      font-family: var(--font-heading);
      margin-bottom: 1rem;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
    }

    .footer-col ul a {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.5);
      transition: color 0.2s;
    }

    .footer-col ul a:hover {
      color: #fff;
    }

    .footer-bottom {
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    @media (min-width: 640px) {
      .footer-bottom {
        flex-direction: row;
      }
    }

    .footer-bottom p {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.35);
    }

    /* ---------- SVG icons inline helpers ---------- */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }
