/* === Style Block 1 === */

              @keyframes buttonClickAnim {
                0% {
                  transform: scale(1);
                  background: #a855f7;
                  box-shadow: 0 0 0px #a855f7;
                }

                50% {
                  transform: scale(0.95);
                  background: #9333ea;
                  box-shadow: 0 0 15px #a855f7;
                }

                100% {
                  transform: scale(1);
                  background: #a855f7;
                  box-shadow: 0 0 0px #a855f7;
                }
              }

              @keyframes borderHighlight {
                0% {
                  border-color: rgba(255, 255, 255, 0.2);
                }

                50% {
                  border-color: #a855f7;
                }

                100% {
                  border-color: rgba(255, 255, 255, 0.2);
                }
              }
            

/* === Style Block 2 === */

      /* Force dark text and light cards for AI capabilities in light mode */
      body.light #ai {
        --fg: #0a0a0a !important;
        --fg-strong: #0a0a0aeb !important;
        --fg-mute: #0a0a0a9e !important;
        --fg-dim: #0a0a0a80 !important;
        --fg-faint: #0a0a0a57 !important;
        --ink-card: #ffffff !important;
        --surface-card: #ffffff !important;
        --surface-raised: #fbf9f5 !important;
        --border-on-dark: rgba(10, 10, 10, 0.1) !important;
      }
    

/* === Style Block 3 === */

      /* ---- TESTIMONIALS ---- */
      .tst-feature {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        background: var(--surface-card, #fff);
        border: 1px solid var(--border-on-dark, rgba(255, 255, 255, .1));
        border-radius: 20px;
        padding: 36px 40px;
        margin-top: 40px;
      }

      @media (min-width: 768px) {
        .tst-feature {
          grid-template-columns: 1fr 220px;
          align-items: center;
        }
      }

      .tst-feature .quote {
        font-size: clamp(1rem, 1.8vw, 1.2rem);
        line-height: 1.6;
        color: var(--fg-strong, #0a0a0a);
        font-style: italic;
      }

      .tst-side {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .tst-attr {
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .tst-attr img {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
      }

      .tst-attr .name {
        font-weight: 700;
        font-size: 15px;
        color: var(--fg-strong);
      }

      .tst-attr .role {
        font-size: 13px;
        color: var(--fg-mute, #666);
        margin-top: 2px;
      }

      .tst-source {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        background: var(--surface-raised, #f5f5f5);
        border-radius: 10px;
      }

      .tst-source .ssrc {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--fg-mute);
      }

      .tst-source .sstars {
        color: var(--flame, #ff6b1a);
        font-size: 13px;
        letter-spacing: 1px;
      }

      .tst-source .srate {
        font-weight: 700;
        font-size: 14px;
        color: var(--fg-strong);
      }

      .tst-mini-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
      }

      @media (min-width: 640px) {
        .tst-mini-row {
          grid-template-columns: 1fr 1fr;
        }
      }

      .tst-mini {
        background: var(--surface-card, #fff);
        border: 1px solid var(--border-on-dark, rgba(255, 255, 255, .1));
        border-radius: 16px;
        padding: 28px 28px 24px;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .tst-mini .mq {
        font-size: 14px;
        line-height: 1.65;
        color: var(--fg-strong);
        flex: 1;
      }

      .tst-mini .mattr {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .tst-mini .mattr img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
      }

      .tst-mini .mn {
        font-weight: 700;
        font-size: 13px;
        color: var(--fg-strong);
      }

      .tst-mini .mr {
        font-size: 12px;
        color: var(--fg-mute);
        margin-top: 2px;
      }

      /* ---- FAQ ---- */
      .faq-list {
        border-top: 1px solid var(--border-on-dark, rgba(255, 255, 255, .1));
      }

      .faq-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 20px 0;
        border-bottom: 1px solid var(--border-on-dark, rgba(255, 255, 255, .1));
        cursor: pointer;
        user-select: none;
      }

      .faq-row .q {
        font-size: 15px;
        font-weight: 500;
        color: var(--fg-strong);
        line-height: 1.4;
        transition: color .2s;
      }

      .faq-row.open .q {
        color: var(--flame, #ff6b1a);
      }

      .faq-row .plus {
        flex-shrink: 0;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1px solid var(--border-on-dark, rgba(255, 255, 255, .2));
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--fg-mute);
        transition: background .2s, border-color .2s, color .2s, transform .3s;
      }

      .faq-row.open .plus {
        background: var(--flame, #ff6b1a);
        border-color: var(--flame, #ff6b1a);
        color: #fff;
        transform: rotate(45deg);
      }

      .faq-answer {
        font-size: 14px;
        line-height: 1.7;
        color: var(--fg-mute);
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease, padding .3s ease;
        padding: 0;
      }

      .faq-answer.open,
      .faq-row.open+.faq-answer {
        max-height: 300px;
        padding: 4px 0 20px;
      }

      /* ---- GUARANTEE ---- */
      .guarantee-section {
        background: #fbf8f3;
      }

      body:not(.light) .guarantee-section {
        background: #1a1510;
      }

      .guar-head {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
        margin-bottom: 56px;
      }

      @media (min-width: 768px) {
        .guar-head {
          grid-template-columns: 190px 1fr;
          gap: 64px;
        }
      }

      .seal {
        position: relative;
        width: 160px;
        height: 160px;
        flex-shrink: 0;
      }

      .seal .ring {
        position: absolute;
        inset: 0;
        animation: inx-seal-spin 18s linear infinite;
      }

      .seal .ring text {
        fill: #a0855c;
        font-size: 10.5px;
        font-family: var(--font-mono, monospace);
        letter-spacing: .16em;
        text-transform: uppercase;
      }

      .seal .core {
        position: absolute;
        inset: 30px;
        border-radius: 50%;
        border: 1.5px solid rgba(200, 160, 100, .35);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #fff;
        box-shadow: 0 0 0 6px rgba(200, 160, 100, .08);
      }

      body:not(.light) .seal .core {
        background: #1a1510;
      }

      .seal .core .big {
        font-size: 28px;
        font-weight: 900;
        color: var(--flame, #ff6b1a);
        line-height: 1;
      }

      .seal .core .sm {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .1em;
        color: #a0855c;
        margin-top: 2px;
      }

      .gsub {
        color: var(--fg-mute);
        font-size: 15px;
        line-height: 1.65;
        margin-top: 16px;
        max-width: 46ch;
      }

      .guar-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
      }

      @media (min-width: 480px) {
        .guar-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (min-width: 900px) {
        .guar-grid {
          grid-template-columns: repeat(5, 1fr);
        }
      }

      .guar-item {
        background: #fff;
        border: 1px solid rgba(200, 160, 100, .2);
        border-radius: 16px;
        padding: 22px 18px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        transition: box-shadow .2s, border-color .2s;
      }

      .guar-item:hover {
        border-color: rgba(255, 107, 26, .3);
        box-shadow: 0 4px 20px rgba(255, 107, 26, .08);
      }

      body:not(.light) .guar-item {
        background: rgba(255, 255, 255, .04);
        border-color: rgba(255, 255, 255, .08);
      }

      .gico {
        display: inline-flex;
        width: 52px;
        height: 52px;
        border-radius: 12px;
        background: rgba(255, 107, 26, .08);
        border: 1px solid rgba(255, 107, 26, .18);
        align-items: center;
        justify-content: center;
        color: var(--flame, #ff6b1a);
        margin-bottom: 8px;
        flex-shrink: 0;
      }

      .guar-item h4 {
        font-size: 13.5px;
        font-weight: 700;
        color: var(--fg-strong);
        margin: 0;
        line-height: 1.3;
      }

      .guar-item p {
        font-size: 12.5px;
        line-height: 1.55;
        color: var(--fg-mute);
        margin: 0;
      }

      .guar-close {
        text-align: center;
        margin-top: 52px;
        font-size: 15px;
        color: var(--fg-mute);
        line-height: 1.5;
      }

      .guar-close .flame {
        color: var(--flame, #ff6b1a);
        font-weight: 600;
      }
    

/* === Style Block 4 === */

      /* ---- CTA SECTION ---- */
      .cta-section {
        position: relative;
        overflow: hidden;
        background: #fdf8f2;
        padding: 120px 0 100px;
        text-align: center;
      }

      .mesh-cta {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
          radial-gradient(ellipse 90% 70% at 50% 0%, rgba(255, 107, 26, .14) 0%, transparent 65%),
          radial-gradient(ellipse 60% 50% at 100% 80%, rgba(255, 107, 26, .07) 0%, transparent 60%),
          radial-gradient(ellipse 50% 40% at 0% 80%, rgba(255, 107, 26, .07) 0%, transparent 60%);
      }

      .cta-inner {
        position: relative;
        z-index: 1;
        max-width: 860px;
        margin: 0 auto;
      }

      .cta-section h2 {
        font-size: clamp(2.8rem, 7vw, 5rem);
        font-weight: 900;
        color: var(--ink, #0a0a0a);
        margin: 0 0 28px;
        line-height: 1.05;
        letter-spacing: -.03em;
      }

      .cta-section h2 em {
        display: block;
        color: var(--flame, #ff6b1a);
        line-height: 1.1;
      }

      .cta-ship {
        display: block;
        min-width: 5ch;
      }

      .cta-cycle {
        display: inline;
        color: var(--flame, #ff6b1a);
        font-style: normal;
      }

      .csub {
        font-size: 16px;
        line-height: 1.7;
        color: rgba(10, 10, 10, .55);
        max-width: 50ch;
        margin: 0 auto 44px;
      }

      /* Option cards */
      .cta-options {
        margin-bottom: 32px;
      }

      .cso-label {
        font-size: 10.5px;
        text-transform: uppercase;
        letter-spacing: .13em;
        color: rgba(10, 10, 10, .35);
        margin-bottom: 12px;
        font-family: var(--font-mono, monospace);
        text-align: center;
      }

      .cso-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
      }

      @media (min-width: 640px) {
        .cso-row {
          grid-template-columns: repeat(4, 1fr);
        }
      }

      .cso {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 14px 16px;
        border-radius: 12px;
        border: 1px solid rgba(10, 10, 10, .1);
        background: rgba(255, 255, 255, .7);
        cursor: pointer;
        text-decoration: none;
        text-align: left;
        transition: border-color .2s, background .2s, transform .2s;
      }

      .cso:hover {
        border-color: var(--flame, #ff6b1a);
        background: rgba(255, 107, 26, .05);
        transform: translateY(-2px);
      }

      .cso-t {
        font-size: 13px;
        font-weight: 700;
        color: var(--ink, #0a0a0a);
      }

      .cso-d {
        font-size: 11.5px;
        color: rgba(10, 10, 10, .5);
        line-height: 1.4;
      }

      /* CTA Button */
      .btn-flame {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 36px;
        border-radius: 100px;
        background: var(--flame, #ff6b1a);
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        letter-spacing: -.01em;
        transition: background .2s, transform .15s, box-shadow .2s;
        box-shadow: 0 4px 20px rgba(255, 107, 26, .25);
        margin-bottom: 32px;
      }

      .btn-flame:hover {
        background: #e85c0d;
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(255, 107, 26, .4);
      }

      .btn-flame span {
        font-size: 18px;
        transition: transform .2s;
      }

      .btn-flame:hover span {
        transform: translateX(4px);
      }

      /* Reassurance pills */
      .cta-reassure {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
      }

      .cta-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 14px;
        border-radius: 100px;
        border: 1px solid rgba(10, 10, 10, .12);
        background: rgba(255, 255, 255, .6);
        font-size: 12px;
        color: rgba(10, 10, 10, .55);
        white-space: nowrap;
      }

      .cta-pill svg {
        color: var(--flame, #ff6b1a);
        flex-shrink: 0;
      }
    

/* === Style Block 5 === */

      /* Blog Feed */
      .blog-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
      }

      @media (min-width: 768px) {
        .blog-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }

      .blog-card {
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .blog-card:hover .bimg img {
        transform: scale(1.05);
      }

      .bimg {
        aspect-ratio: 16/10;
        border-radius: 12px;
        overflow: hidden;
      }

      .bimg img {
        transition: transform 0.4s ease;
      }

      .bmeta {
        display: flex;
        gap: 12px;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        font-family: var(--font-mono, monospace);
        margin-top: 4px;
      }

      .bmeta .cat {
        color: var(--flame, #ff6b1a);
      }

      .blog-card h3 {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.3;
        margin: 0;
      }

      .blog-card .bexc {
        font-size: 13.5px;
        color: var(--fg-mute, rgba(10, 10, 10, 0.55));
        line-height: 1.6;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      /* Offices */
      .office-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
      }

      @media (min-width: 768px) {
        .office-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }

      .office-card {
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(10, 10, 10, 0.1);
        border-radius: 14px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        transition: transform 0.2s, border-color 0.2s;
      }

      .office-card:hover {
        background: rgba(255, 255, 255, 1);
        border-color: var(--flame, #ff6b1a);
        transform: translateY(-2px);
      }

      .ocountry {
        font-size: 10.5px;
        font-family: var(--font-mono, monospace);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--flame, #ff6b1a);
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 6px;
      }

      .oflag {
        font-size: 14px;
      }

      .ocity {
        font-size: 22px;
        font-weight: 700;
        margin: 0;
        color: var(--ink, #0a0a0a);
      }

      .oaddr {
        font-size: 12.5px;
        line-height: 1.5;
        color: rgba(10, 10, 10, 0.5);
        margin: 0 0 16px;
      }

      .ophone {
        font-size: 12.5px;
        font-weight: 700;
        color: var(--flame, #ff6b1a);
        text-decoration: none;
        margin-top: auto;
      }
    

/* === Style Block 6 === */

      .site-footer {
        padding: 80px 0 40px;
        background: #fdf8f2;
        border-top: 1px solid rgba(10, 10, 10, 0.08);
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
      }

      @media (min-width: 1024px) {
        .footer-grid {
          grid-template-columns: 3.5fr 2fr 3fr 3.5fr;
          gap: 40px;
        }
      }

      .footer-col-1 {
        display: flex;
        flex-direction: column;
      }

      .f-logo {
        margin-bottom: 24px;
        display: block;
      }

      .f-logo img {
        height: 52px;
        width: auto;
      }

      .footer-desc {
        margin: 0 0 24px 0;
        font-size: 14px;
        color: rgba(10, 10, 10, 0.5);
        line-height: 1.6;
        max-width: 350px;
      }

      .social-links {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 32px;
      }

      .social-link {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(10, 10, 10, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(10, 10, 10, 0.6);
        transition: all 0.2s;
      }

      .social-link img {
        width: 16px;
        height: 16px;
        object-fit: contain;
        filter: brightness(0) opacity(0.8);
      }

      .social-link:hover {
        border-color: var(--flame, #ff6b1a);
      }

      .social-link:hover img {
        filter: sepia(1) hue-rotate(345deg) saturate(5) brightness(1);
        /* Hack to make it orange on hover if image */
      }

      .footer-contacts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin: 0 0 32px 0;
      }

      .fc-item dt {
        font-family: var(--font-mono, monospace);
        font-size: 10px;
        color: rgba(10, 10, 10, 0.4);
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
      }

      .fc-item dd {
        margin: 0;
      }

      .fc-item dd a {
        font-size: 14px;
        color: rgba(10, 10, 10, 0.8);
        text-decoration: none;
        transition: color 0.2s;
      }

      .fc-item dd a:hover {
        color: var(--flame, #ff6b1a);
      }

      .daily-insights {
        background: #111;
        border-radius: 12px;
        padding: 24px;
        color: #fff;
        box-shadow: 0 10px 40px -20px rgba(0, 0, 0, 0.3);
        max-width: 480px;
        display: flex;
        gap: 24px;
      }

      .di-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .di-right {
        width: 140px;
        flex-shrink: 0;
      }

      .di-mockup {
        background: #000;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
      }

      .di-mockup-header {
        display: flex;
        justify-content: space-between;
        padding: 6px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-family: monospace;
        font-size: 6px;
        color: #fff;
        font-weight: bold;
      }

      .di-mockup-hero {
        background: linear-gradient(135deg, #ff6a00, #a855f7);
        height: 35px;
        padding: 6px 8px;
      }

      .di-mockup-num {
        font-size: 14px;
        font-weight: 800;
        color: #000;
      }

      .di-mockup-body {
        padding: 8px;
        flex: 1;
      }

      .di-mockup-body h4 {
        font-size: 10px;
        margin: 0 0 8px 0;
        color: #fff;
      }

      .di-mockup-text {
        margin-bottom: 8px;
      }

      .daily-insights-head {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
      }

      .daily-insights h3 {
        font-size: 16px;
        font-weight: 700;
        margin: 0;
      }

      .preview-btn {
        font-size: 10px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 100px;
        padding: 2px 10px;
        color: #a1a1aa;
        display: flex;
        align-items: center;
        gap: 4px;
        text-decoration: none;
        transition: all 0.2s;
      }

      .preview-btn:hover {
        color: var(--flame);
        border-color: var(--flame);
      }

      .daily-insights p {
        font-size: 12px;
        color: #a1a1aa;
        line-height: 1.5;
        margin: 0 0 20px 0;
      }

      .subscribe-form {
        display: flex;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 100px;
        overflow: hidden;
        margin-bottom: 12px;
        transition: border-color 0.2s;
        padding: 4px;
      }

      .subscribe-form:focus-within {
        border-color: var(--flame);
      }

      .subscribe-form input {
        flex: 1;
        background: transparent;
        border: none;
        padding: 8px 12px;
        color: #fff;
        font-size: 12px;
        outline: none;
      }

      .subscribe-form button {
        background: var(--flame);
        color: #fff;
        border: none;
        border-radius: 100px;
        padding: 0 16px;
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
        text-transform: uppercase;
      }

      .secure-note {
        font-size: 11px;
        color: #71717a;
        display: flex;
        align-items: center;
        gap: 6px;
      }

      .footer-nav-col h4 {
        font-family: var(--font-mono, monospace);
        font-size: 12px;
        color: var(--flame, #ff6b1a);
        margin: 0 0 24px 0;
        text-transform: uppercase;
        letter-spacing: 0.1em;
      }

      .footer-nav-col .sub-heading {
        font-size: 14px;
        color: rgba(10, 10, 10, 0.5);
        margin: 24px 0 16px 0;
        font-weight: 500;
      }

      .footer-nav-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .footer-nav-col ul li {
        margin-bottom: 12px;
      }

      .footer-nav-col ul a {
        font-size: 14px;
        color: rgba(10, 10, 10, 0.5);
        text-decoration: none;
        transition: color 0.2s;
      }

      .footer-nav-col ul a:hover {
        color: var(--ink, #0a0a0a);
      }

      .footer-bottom {
        margin-top: 80px;
        padding-top: 24px;
        border-top: 1px solid rgba(10, 10, 10, 0.08);
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        font-family: var(--font-mono, monospace);
        font-size: 10px;
        color: rgba(10, 10, 10, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }

      .footer-bottom a {
        color: inherit;
        text-decoration: none;
      }

      .footer-bottom a:hover {
        color: var(--ink);
      }
    

/* === Style Block 7 === */

              .social-link svg {
                width: 16px;
                height: 16px;
                fill: currentColor;
                transition: fill 0.2s, stroke 0.2s;
              }

              .social-link:hover svg {
                fill: var(--flame);
              }

              .social-link svg.outline-icon {
                fill: none !important;
                stroke: currentColor;
                stroke-width: 2;
                stroke-linecap: round;
                stroke-linejoin: round;
              }

              .social-link:hover svg.outline-icon {
                stroke: var(--flame) !important;
                fill: none !important;
              }
            

/* === Style Block 8 === */

      .scroll-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--flame, #ff6b1a);
        color: #fff;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(255, 107, 26, 0.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
        z-index: 999;
      }

      .scroll-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .scroll-to-top:hover {
        background: #e85c0d;
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 8px 24px rgba(255, 107, 26, 0.4);
      }
    



/* Mobile Accordion for Footer */
@media (max-width: 1023px) {
  .footer-nav-col {
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  }
  .footer-grid .footer-nav-col:nth-child(2) {
    border-top: 1px solid rgba(10, 10, 10, 0.08);
    margin-top: 32px;
  }
  .footer-nav-col h4 {
    position: relative;
    padding: 16px 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 13px !important;
  }
  .footer-nav-col h4::after {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%23000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    opacity: 0.5;
  }
  .footer-nav-col.active h4::after {
    transform: rotate(180deg);
  }
  .footer-nav-col .sub-heading,
  .footer-nav-col ul {
    display: none;
  }
  .footer-nav-col.active .sub-heading,
  .footer-nav-col.active ul {
    display: block;
  }
  .footer-nav-col.active ul:last-child {
    padding-bottom: 16px;
  }
  
  /* Reset spacing when accordion is active */
  .footer-nav-col.active .sub-heading {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
}

/* Additional Mobile Adjustments for Footer */
@media (max-width: 1023px) {
  .footer-col-1 {
    text-align: center;
    align-items: center;
  }
  
  .f-logo {
    display: inline-block !important;
  }
  
  .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-contacts {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
    width: 100%;
  }

  .fc-item dd a {
    word-break: break-all;
  }
  
  .daily-insights {
    margin: 0 auto;
    width: 100%;
  }
  
  .footer-bottom {
    margin-top: 32px !important;
  }
}

/* Strong Mobile Centering Overrides for Footer */
@media (max-width: 1023px) {
  .site-footer {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .footer-grid {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .footer-col-1 {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
  .f-logo {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 auto 24px auto !important;
  }
  .f-logo img {
    margin: 0 auto !important;
  }
  .footer-desc {
    margin: 0 auto 24px auto !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .social-links {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .footer-contacts {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .fc-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }
  .fc-item dt {
    text-align: center !important;
  }
  .fc-item dd {
    text-align: center !important;
  }
  .fc-item dd a {
    text-align: center !important;
    display: inline-block !important;
  }
  .footer-nav-col {
    width: 100% !important;
  }
}

/* Additional Mobile Adjustments: Blog Card and Copyright */
@media (max-width: 1023px) {
  /* Stack the Blog & Tools card for perfect mobile fit */
  .daily-insights {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 24px 16px !important;
    gap: 20px !important;
    box-sizing: border-box !important;
  }
  .di-left {
    align-items: center !important;
    width: 100% !important;
  }
  .di-right {
    width: 100% !important;
    max-width: 200px !important; /* Restrict max width of the phone mockup */
    margin: 0 auto !important;
  }
  .daily-insights-head {
    justify-content: center !important;
  }
  .subscribe-form {
    width: 100% !important;
    max-width: 300px !important;
  }
  
  /* Center copyright text in footer bottom */
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .footer-bottom div {
    width: 100% !important;
    line-height: 1.6 !important;
  }
}


/* Added container class for footer layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
