/* ====== SGF: Base ====== */
    :root{
      --sgf-bg0:#07080A;       /* dole */
      --sgf-bg1:#111111;       /* hore ~20% */
      --sgf-card:rgba(255,255,255,.04);
      --sgf-card2:rgba(255,255,255,.06);
      --sgf-border:rgba(255,255,255,.10);
      --sgf-text:rgba(255,255,255,.92);
      --sgf-muted:rgba(255,255,255,.68);
      --sgf-faint:rgba(255,255,255,.52);
      --sgf-accent:#DFFF00;    /* SimpleGym neon */
      --sgf-shadow: 0 18px 60px rgba(0,0,0,.55);
      --sgf-radius: 22px;
      --sgf-max: 1140px;
    }

    .animate-on-scroll {
        opacity: 0;
      }

    .sgf-wrap{
      color: var(--sgf-text);
      background: linear-gradient(to bottom, var(--sgf-bg1) 0%, var(--sgf-bg1) 20%, var(--sgf-bg0) 100%);
      padding: 56px 18px 76px;
      text-align: left;
    }

    .sgf-container{
      max-width: var(--sgf-max);
      margin: 0 auto;
    }

    .sgf-kicker{
      display:inline-flex;
      gap:10px;
      align-items:center;
      padding: 8px 12px;
      border: 1px solid var(--sgf-border);
      background: rgba(255,255,255,.03);
      border-radius: 999px;
      color: var(--sgf-muted);
      font-size: 13px;
      letter-spacing: .2px;
    }

    .sgf-dot{
      width:10px;height:10px;border-radius:999px;
      background: var(--sgf-accent);
      box-shadow: 0 0 0 6px rgba(223,255,0,.10);
    }

    .sgf-h1{
      font-size: clamp(30px, 4.2vw, 45px);
      line-height: 1.06;
      letter-spacing: -0.02em;
      margin: 14px 0 14px;
    }

    .sgf-sub{
      color: var(--sgf-muted);
      font-size: 16px;
      line-height: 1.65;
      margin: 0 0 22px;
      max-width: 60ch;
    }

    .sgf-grid-2{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 22px;
      align-items: stretch;
    }

    .sgf-hero{
      padding: 18px 0 8px;
    }

    .sgf-hero-card{
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
      border: 1px solid var(--sgf-border);
      border-radius: var(--sgf-radius);
      box-shadow: var(--sgf-shadow);
      overflow:hidden;
      position: relative;
    }

    .sgf-hero-card::before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(800px 250px at 18% 0%, rgba(223,255,0,.12), transparent 60%);
      pointer-events:none;
    }

    .sgf-hero-left{
      padding: 26px 26px 24px;
    }

    .sgf-cta-row{
      display:flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .sgf-btn{
      appearance:none;
      border: 1px solid var(--sgf-border);
      background: rgba(255,255,255,.04);
      color: var(--sgf-text);
      padding: 12px 14px;
      border-radius: 14px;
      font-weight: 650;
      font-size: 14px;
      letter-spacing:.2px;
      cursor:pointer;
      transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      gap:10px;
      transition: all .5s;
    }
    .sgf-btn:hover{
      transform: translateY(-4px);
      background: transparent;
    }

    .sgf-btn-primary{
      background: var(--sgf-accent);
      border-color: rgba(223,255,0,.35);
      color: #0b0c0e;
      box-shadow: 0 10px 28px rgba(223,255,0,.14);
      transition: all .5s;
    }
    .sgf-btn-primary:hover{
      background-color: rgba(223,255,0,.6);
    }

    .sgf-btn-ico{
      width: 18px; height: 18px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius: 10px;
      background: rgba(0,0,0,.18);
    }
    .sgf-btn-primary .sgf-btn-ico{ background: rgba(0,0,0,.10); }

    /* ====== Media Placeholder ====== */
    .sgf-hero-right{
      padding: 18px;
      display:flex;
      align-items: stretch;
      justify-content: stretch;
    }

    .sgf-media{
      width:100%;
      border-radius: 18px;
      border: 1px dashed rgba(255,255,255,.22);
      background:
        radial-gradient(600px 220px at 30% 20%, rgba(223,255,0,.12), transparent 55%),
        rgba(255,255,255,.03);
      position: relative;
      overflow:hidden;
    }

    .sgf-media-inner{
      position:absolute; inset: 14px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.18);
      align-items:center;
      justify-content:center;
      text-align:center;
      padding: 18px;
      color: var(--sgf-faint);
      font-size: 13px;
      line-height: 1.5;
    }

    @media (max-width: 920px){
      .sgf-grid-2{ display: block;}
      .sgf-media-inner {position: static;}
    }

    .sgf-media-inner img {
      width: 100%;
    }

    .sgf-graph {
      width: 100%;
      height: auto;
      display: block;
    }

    .sgf-graph .st1 {
      stroke-dasharray: 250;
      stroke-dashoffset: 250;
      animation: draw-line 2s ease-in-out forwards;
    }

    @keyframes draw-line {
      to {
        stroke-dashoffset: 0;
      }
    }

    /* ====== Section ====== */
    .sgf-section{
      padding: 32px 0 0;
    }

    .sgf-section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap: 16px;
      margin-bottom: 14px;
    }

    .sgf-h2{
      font-size: clamp(20px, 2.6vw, 28px);
      letter-spacing: -0.01em;
      margin: 0;
      margin-top: 30px;
    }

    .sgf-note{
      color: var(--sgf-faint);
      font-size: 13px;
      margin: 0 0 4px;
      white-space: nowrap;
    }

    @media (max-width: 720px){
      .sgf-section-head{ flex-direction:column; align-items:flex-start; }
      .sgf-note{ white-space: normal; }
    }

    /* ====== Benefit Cards ====== */
    .sgf-card-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 14px;
    }

    @media (max-width: 920px){
      .sgf-card-grid{ grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 620px){
      .sgf-card-grid{ grid-template-columns: 1fr; }
    }

    .sgf-card{
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
      border: 1px solid var(--sgf-border);
      border-radius: 18px;
      padding: 14px 14px 14px;
      box-shadow: 0 10px 34px rgba(0,0,0,.30);
      position: relative;
      overflow:hidden;
      min-height: 70px;
      display: flex;
      align-items: center; 
      justify-content: center;
    }

    .sgf-card::before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(520px 170px at 18% 0%, rgba(223,255,0,.10), transparent 60%);
      pointer-events:none;
      opacity:.75;
    }

    .sgf-card-top{
      display:flex;
      gap: 10px;
      align-items:center;
      justify-content: center;
      position: relative;
      z-index:1;
    }

    .sgf-ic{
      flex: 0 0 auto;
      width: 34px; height: 34px;
      border-radius: 14px;
      display:flex;
      align-items:center;
      justify-content:center;
      background: rgba(223,255,0,.10);
      border: 1px solid rgba(223,255,0,.22);
    }

    .sgf-card p{
      margin: 0;
      color: rgba(255,255,255,.86);
      font-size: 15px;
      font-weight: 600;
      line-height: 1.5;
      position: relative;
      z-index:1;
      text-align: center;
    }

    .sgf-divider{
      height:1px;
      width:100%;
      background: rgba(255,255,255,.08);
      margin: 24px 0 0;
    }

    /* ====== Numbers ====== */
    .sgf-split{
      display:grid;
      grid-template-columns: 2fr 1fr; /* 75 % : 25 % */
      gap: 14px;
      margin-top: 14px;
    }
    @media (max-width: 920px){
      .sgf-split{ grid-template-columns: 1fr; }
    }

    .sgf-panel{
      background: rgba(255,255,255,.03);
      border: 1px solid var(--sgf-border);
      border-radius: 18px;
      padding: 16px;
    }
    .sgf-panel-roi {
      min-height: clamp(150px, 32vw, 360px);
      padding-top: 30px;
      margin-top: 15px;
    }

    .sgf-num-list{
      display:grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
      margin-left: 40px;
    }
    @media (max-width: 920px){
      .sgf-num-list {margin-left: 0;}
    }

    .sgf-num{
      padding: 12px;
      border-radius: 14px;
      border-bottom: 1px solid rgba(255,255,255,.10);
      text-align: center;

      display: flex;
      flex-direction: column;
      justify-content: center; 
    }

    .sgf-num:last-child {
      border-bottom: 0;
    }

    .sgf-num b{
      font-size: 22px;
      color: rgba(255,255,255,.92);
      min-width: 96px;
    }
    .sgf-num span{
      color: var(--sgf-muted);
      font-size: 14px;
      line-height: 1.5;
    }

    /* ====== Why / Love blocks ====== */
    
    .sgf-bullets-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr; 
      align-items: stretch;           
      gap: 14px;
    }
    .sgf-bullets{
      margin-top: 14px;
    }

    .sgf-bullets-2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      align-items: stretch;           
      gap: 14px;
    }

    .sgf-bullet{
      border-bottom: 1px solid rgba(255,255,255,.10);
      border-radius: 18px;
      padding: 14px;
      color: rgba(255,255,255,.84);
      line-height: 1.55;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .sgf-bullet:last-child {
      margin-bottom: 0;
    }

    .sgf-bullet strong{
      font-size: 17px;
      display:block;
      color: rgba(255,255,255,.94);
      font-weight: 600;
      margin-bottom: 6px;
    }

    .sgf-highlight{
      border-bottom: 1px solid rgba(223,255,0,.22);
      background: linear-gradient(180deg, rgba(223,255,0,.10), rgba(255,255,255,.02));
    }

    .sgf-bullets-img {
      overflow: hidden;
      border-radius: 18px;
      margin-left: 25px;
      margin-top: 14px;
    }

    .sgf-bullets-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;      
      display: block;
    }

    .franchising-SimpleGym-img-wrap {
      overflow: hidden;
      width: 100%;
    }

    .franchising-SimpleGym-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

     @media (max-width: 820px){
      .sgf-bullet { width: auto; }
      .sgf-bullets-wrap { grid-template-columns: 1fr; }
      .sgf-bullets-img { margin-left: 0; margin-top: 14px;}
    }

    @media (max-width: 1010px){
      .sgf-bullets-wrap-2 { grid-template-columns: 1fr; }
    }

    /* ====== Process ====== */
    .sgf-steps{
      margin-top: 14px;
      display:grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
    }
    @media (max-width: 980px){
      .sgf-steps{ grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 540px){
      .sgf-steps{ grid-template-columns: 1fr; }
    }

    .sgf-step{
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      border-radius: 18px;
      padding: 14px;
      position: relative;
      overflow:hidden;
      min-height: 110px;
    }

    .sgf-step::before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(420px 150px at 0% 0%, rgba(223,255,0,.10), transparent 60%);
      pointer-events:none;
    }

    .sgf-step-top{
      position: relative;
      z-index:1;
      display:flex;
      gap: 10px;
      align-items:center;
      margin-bottom: 10px;
    }

    .sgf-step-n{
      width: 30px; height: 30px;
      border-radius: 50px;
      background: #DFFF00;
      border: 1px solid rgba(223,255,0,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      color: rgb(31, 31, 31);
      font-weight: 800;
      font-size: 13px;
    }

    .sgf-step h3{
      margin:0;
      font-size: 14px;
      letter-spacing: -.01em;
      color: rgba(255,255,255,.92);
    }

    .sgf-step p{
      margin:0;
      position: relative;
      z-index:1;
      color: var(--sgf-muted);
      font-size: 13.5px;
      line-height: 1.55;
    }

    /* ====== Contact ====== */
    .sgf-contact{
      margin-top: 22px;
      padding: 18px;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,.12);
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
      box-shadow: var(--sgf-shadow);
      position: relative;
      overflow:hidden;
    }

    .sgf-contact::before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(800px 220px at 22% 0%, rgba(223,255,0,.14), transparent 60%);
      pointer-events:none;
    }

    .sgf-contact-grid{
      position: relative;
      z-index:1;
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 14px;
      align-items:center;
    }

    @media (max-width: 820px){
      .sgf-contact-grid{ grid-template-columns: 1fr; }
    }

    .sgf-contact h2{
      margin: 0 0 8px;
    }

    .sgf-contact p{
      margin: 0;
      color: rgb(212, 212, 212);
      line-height: 1.6;
      font-size: 15px;
    }

    .sgf-contact-items{
      display:grid;
      gap: 10px;
    }

    .sgf-contact-item{
      display:flex;
      gap: 10px;
      align-items:center;
      padding: 12px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.14);
      color: rgba(255,255,255,.88);
      text-decoration:none;
    }

    .sgf-contact-ic{
      width: 34px; height: 34px;
      border-radius: 300px;
      display:flex;
      align-items:center;
      justify-content:center;
      background: rgba(223,255,0,.10);
      border: 1px solid rgba(223,255,0,.22);
      flex: 0 0 auto;
    }

    .sgf-contact-ic img {
      height: 13px;
    }
    .sgf-contact-ic img.phone-icon {
      height: 19px;
    }

    .sgf-contact-item small{
      display:block;
      color: var(--sgf-faint);
      font-size: 12px;
      margin-top: 2px;
    }

    /* ====== Small helper ====== */
    .sgf-anchor{
      position: relative;
      top: -88px; /* keď máš sticky header, doladíš */
      display:block;
      height: 0;
      visibility: hidden;
    }