﻿:root{
  --bg:#f7f8fb;
  --white:#ffffff;
  --text:#1f2937;
  --muted:#6b7280;
  --line:#e5e7eb;
  --primary:#1260c8;
  --primary-dark:#0d4fa5;
  --success:#16a34a;
  --danger:#dc2626;
  --soft:#f3f4f6;
  --shadow:0 14px 34px rgba(15,23,42,.08);
  --radius:20px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:linear-gradient(180deg,#f8fbff 0%, #f7f8fb 100%);
  color:var(--text);
  line-height:1.5;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(100% - 24px, var(--max));margin-inline:auto}

.topbar{
  background:#fff;
  border-bottom:1px solid var(--line);
  text-align:center;
  padding:10px 15px;
  font-size:14px;
  color:#4b5563;
}

.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.logo{
  display:flex;
  align-items:center;
  gap:14px;
}
.logo-img{
  width:54px;
  flex:0 0 54px;
}
.logo-title{
  margin:0;
  font-size:18px;
  font-weight:800;
  line-height:1.1;
}
.logo-sub{
  margin:4px 0 0;
  font-size:13px;
  color:var(--muted);
}
.google-text{
  background:linear-gradient(90deg,#4285F4,#34A853,#FBBC05,#EA4335);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  color:transparent;
}
.back-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 16px;
  border-radius:10px;
  background:#f8fafc;
  color:#1260c8;
  font-weight:700;
  font-size:14px;
  border:1px solid #dbe3ee;
}


.page{
  padding:32px 0 60px;
}
.wizard-hero{
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:22px;
  margin-bottom:22px;
}
.wizard-hero__left,
.wizard-hero__right,
.progress-card,
.card{
  background:var(--white);
  border:1px solid #e8edf4;
  border-radius:24px;
  box-shadow:var(--shadow);
}
.wizard-hero__left{
  padding:30px;
}
.wizard-hero__left h1{
  margin:0 0 12px;
  font-size:38px;
  line-height:1.1;
  font-weight:800;
}
.wizard-hero__left p{
  margin:0;
  color:#667085;
  font-size:15px;
  line-height:1.8;
  max-width:700px;
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  background:#eef4ff;
  color:var(--primary);
  border:1px solid #dbe7ff;
  font-size:13px;
  font-weight:700;
  margin-bottom:14px;
}
.wizard-hero__right{
  padding:24px;
  display:flex;
  align-items:center;
}
.selected-package{
  width:100%;
  padding:22px;
  border-radius:16px;
  background:linear-gradient(180deg,#0f5cc0 0%, #1260c8 100%);
  color:#fff;
  box-shadow:0 12px 28px rgba(18,96,200,.18);
  border:1px solid rgba(255,255,255,.12);
}

.selected-package small{
  display:block;
  font-size:12px;
  letter-spacing:.8px;
  opacity:.92;
  margin-bottom:10px;
}
.selected-package strong{
  display:block;
  font-size:24px;
  line-height:1.2;
  font-weight:800;
  margin-bottom:8px;
}
.selected-package span{
  display:block;
  font-size:18px;
  font-weight:700;
}

.progress-card{
  padding:22px 24px;
  margin-bottom:22px;
}
.progress-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  margin-bottom:14px;
}
.progress-label{
  margin:0 0 6px;
  font-size:13px;
  font-weight:700;
  color:var(--muted);
}
.progress-head h2{
  margin:0;
  font-size:24px;
  line-height:1.2;
}
.step-counter{
  min-width:84px;
  text-align:center;
  padding:10px 14px;
  border-radius:12px;
  background:#f6f8fb;
  border:1px solid #e7edf5;
  font-weight:800;
  color:var(--primary);
}
.progress-bar{
  width:100%;
  height:12px;
  border-radius:999px;
  background:#edf2f7;
  overflow:hidden;
}
.progress-bar__fill{
  width:16.66%;
  height:100%;
  background:linear-gradient(90deg,#1260c8,#2d7ae0);
  border-radius:999px;
  transition:width .3s ease;
}

.step{display:none}
.step.active{display:block}

.card{
  padding:30px;
}
.card h3{
  margin:0 0 8px;
  font-size:28px;
  line-height:1.2;
}
.card-desc{
  margin:0 0 24px;
  font-size:15px;
  color:var(--muted);
  line-height:1.8;
}

.grid{
  display:grid;
  gap:18px;
}
.grid.two{grid-template-columns:repeat(2,1fr)}
.grid.three{grid-template-columns:repeat(3,1fr)}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:18px;
}
.field label{
  font-size:14px;
  font-weight:700;
  color:#334155;
}
.field input,
.field textarea,
.field select{
  width:100%;
  min-height:52px;
  border:1px solid #d7dee8;
  border-radius:12px;
  padding:13px 15px;
  background:#ffffff;
  font:inherit;
  font-size:15px;
  color:#111827;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow:none;
}

.field textarea{
  min-height:120px;
  resize:vertical;
}

.field input::placeholder,
.field textarea::placeholder{
  color:#98a2b3;
}

.field input:focus,
.field textarea:focus,
.field select:focus{
  border-color:#1260c8;
  box-shadow:0 0 0 4px rgba(18,96,200,.08);
  background:#fff;
}

.field textarea{
  min-height:130px;
  resize:vertical;
}
.field input:focus,
.field textarea:focus{
  border-color:#9fc0f6;
  box-shadow:0 0 0 4px rgba(18,96,200,.08);
}
.field input.error,
.field textarea.error{
  border-color:#fca5a5;
  box-shadow:0 0 0 4px rgba(220,38,38,.08);
}
.helper{
  font-size:12px;
  color:var(--muted);
}

.preview-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
  gap:14px;
  margin-top:18px;
}
.preview-item{
  position:relative;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(15,23,42,.05);
}
.preview-item img{
  width:100%;
  height:140px;
  object-fit:cover;
}
.preview-item__body{
  padding:12px;
}
.preview-item__name{
  font-size:12px;
  color:#374151;
  word-break:break-word;
}
.preview-delete{
  position:absolute;
  top:10px;
  right:10px;
  border:none;
  background:#fff;
  color:#dc2626;
  width:34px;
  height:34px;
  border-radius:999px;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
  font-size:18px;
  font-weight:700;
}

.summary-box{
  background:#f8fafc;
  border:1px solid #e5edf5;
  border-radius:18px;
  padding:20px;
  margin-bottom:22px;
}
.summary-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.summary-item{
  background:#fff;
  border:1px solid #e6ebf2;
  border-radius:14px;
  padding:14px;
}
.summary-item small{
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-bottom:6px;
}
.summary-item strong{
  display:block;
  font-size:15px;
  line-height:1.6;
  color:#111827;
  word-break:break-word;
}

.agreement-list{
  display:grid;
  gap:14px;
}
.checkbox-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  background:#fff;
  border:1px solid #e6ebf2;
  border-radius:14px;
  padding:16px;
}
.checkbox-item input{
  margin-top:3px;
  transform:scale(1.15);
}
.checkbox-item span{
  font-size:14px;
  line-height:1.75;
  color:#334155;
}
.checkbox-item a{
  color:var(--primary);
  font-weight:700;
}

.payment-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-bottom:20px;
}
.payment-card{
  display:block;
  cursor:pointer;
}
.payment-card input{
  display:none;
}
.payment-card__content{
  background:#fff;
  border:2px solid #e5e7eb;
  border-radius:18px;
  padding:22px;
  min-height:150px;
  transition:.2s ease;
}
.payment-card__content strong{
  display:block;
  font-size:18px;
  margin-bottom:8px;
}
.payment-card__content p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}
.payment-card input:checked + .payment-card__content{
  border-color:#1260c8;
  box-shadow:0 12px 26px rgba(18,96,200,.10);
  background:#f7fbff;
}
.payment-package-box{
  border:1px solid #e6ebf2;
  border-radius:18px;
  padding:18px;
  background:#f8fbff;
}
.payment-package-box small{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
}
.payment-package-box strong{
  display:block;
  font-size:22px;
  margin-bottom:6px;
}
.payment-package-box span{
  display:block;
  font-size:18px;
  font-weight:800;
  color:var(--primary);
}

.iban-info-box{
  margin-top:18px;
  padding:20px;
  border:1px solid #e6ebf2;
  border-radius:18px;
  background:#fffdf7;
}
.iban-info-box h4{
  margin:0 0 12px;
  font-size:20px;
}
.iban-lines{
  display:grid;
  gap:10px;
  font-size:14px;
  color:#374151;
}
.receipt-preview{
  margin-top:10px;
  padding:14px;
  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#fff;
}
.receipt-preview img{
  max-width:220px;
  border-radius:12px;
  border:1px solid #e5e7eb;
}
.receipt-preview .file-name{
  font-size:13px;
  color:#374151;
  font-weight:700;
  margin-bottom:10px;
}

.wizard-actions{
  margin-top:20px;
  display:flex;
  justify-content:space-between;
  gap:12px;
}
.btn{
  min-height:52px;
  padding:0 22px;
  border:none;
  border-radius:12px;
  cursor:pointer;
  font:inherit;
  font-weight:700;
  font-size:15px;
  transition:.2s ease;
}
.btn:hover{
  transform:translateY(-1px);
}

.btn-light{
  background:#fff;
  border:1px solid #dbe2ea;
  color:#334155;
}
.btn-primary{
  background:linear-gradient(135deg,#1260c8,#2d7ae0);
  color:#fff;
  box-shadow:0 12px 24px rgba(18,96,200,.18);
}
.btn-success{
  background:linear-gradient(135deg,#16a34a,#22c55e);
  color:#fff;
  box-shadow:0 12px 24px rgba(22,163,74,.18);
}
.hidden{display:none !important}

.loading-overlay{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.4);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.loading-box{
  width:min(92vw,420px);
  background:#fff;
  border-radius:22px;
  padding:28px;
  text-align:center;
  box-shadow:0 20px 40px rgba(0,0,0,.18);
}
.loading-box p{
  margin:14px 0 0;
  font-size:15px;
  color:#334155;
}
.spinner{
  width:56px;
  height:56px;
  margin:0 auto;
  border:5px solid #e5edf8;
  border-top-color:#1260c8;
  border-radius:50%;
  animation:spin .8s linear infinite;
}
@keyframes spin{
  to{transform:rotate(360deg)}
}

@media (max-width: 980px){
  .wizard-hero{
    grid-template-columns:1fr;
  }
  .grid.two,
  .grid.three,
  .summary-grid,
  .payment-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .header-inner{
    min-height:72px;
    flex-wrap:wrap;
  }

  .back-link{
  width:100%;
  min-height:40px;
  font-size:13px;
  border-radius:10px;
}


  .page{
    padding:18px 0 40px;
  }

  .wizard-hero{
    gap:14px;
    margin-bottom:14px;
  }

  .wizard-hero__left,
  .wizard-hero__right,
  .progress-card,
  .card{
    border-radius:14px;
  }

  .wizard-hero__left,
  .wizard-hero__right,
  .progress-card,
  .card{
    padding:18px 16px;
  }

  .wizard-hero__left h1{
    font-size:26px;
    line-height:1.2;
  }

  .wizard-hero__left p{
    font-size:14px;
    line-height:1.7;
  }

  .selected-package{
    padding:18px;
    border-radius:14px;
  }

  .selected-package strong{
    font-size:20px;
  }

  .selected-package span{
    font-size:16px;
  }

  .progress-head{
    flex-direction:column;
    gap:10px;
    margin-bottom:12px;
  }

  .progress-head h2{
    font-size:19px;
  }

  .step-counter{
    min-width:auto;
    width:100%;
    padding:9px 12px;
    border-radius:10px;
    font-size:14px;
  }

  .card h3{
    font-size:22px;
    line-height:1.25;
  }

  .card-desc{
    font-size:14px;
    line-height:1.7;
    margin-bottom:18px;
  }

  .field{
    margin-bottom:14px;
  }

  .field label{
    font-size:13px;
  }

  .field input,
  .field textarea,
  .field select{
    min-height:48px;
    padding:12px 14px;
    font-size:14px;
    border-radius:10px;
  }

  .field textarea{
    min-height:110px;
  }

  .summary-box,
  .payment-package-box,
  .iban-info-box{
    border-radius:14px;
    padding:16px;
  }

  .payment-card__content{
    min-height:auto;
    padding:18px;
    border-radius:14px;
  }

  .payment-card__content strong{
    font-size:16px;
  }

  .payment-card__content p{
    font-size:13px;
    line-height:1.7;
  }

  .wizard-actions{
    flex-direction:column;
    gap:10px;
  }

  .btn{
    width:100%;
    min-height:48px;
    border-radius:10px;
  }

  .preview-grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .preview-item img{
    height:110px;
  }
}

  .back-link{
    width:100%;
  }
.wizard-hero__left,
.wizard-hero__right,
.progress-card,
.card{
  background:#ffffff;
  border:1px solid #e6ebf2;
  border-radius:18px;
  box-shadow:0 10px 24px rgba(15,23,42,.05);
}

  .wizard-hero__left,
  .card{
    padding:22px 18px;
  }
  .wizard-hero__left h1{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.15;
  font-weight:800;
  letter-spacing:-0.03em;
  color:#0f172a;
}

  .progress-head h2{
    font-size:20px;
  }
  .card h3{
    font-size:24px;
  }
  .wizard-actions{
    flex-direction:column;
  }
  .btn{
    width:100%;
  }
}
.upload-control{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  min-height:54px;
  padding:10px 12px;
  border:1px solid #d8dee8;
  border-radius:12px;
  background:#f8fafc;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.upload-control:focus-within{
  border-color:#1260c8;
  box-shadow:0 0 0 4px rgba(18,96,200,.08);
  background:#ffffff;
}

.upload-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 14px;
  border-radius:9px;
  background:#ffffff;
  color:#0f172a;
  border:1px solid #cfd8e3;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
  white-space:nowrap;
  box-shadow:0 1px 2px rgba(16,24,40,.04);
}

.upload-btn:hover{
  border-color:#b9c5d4;
  background:#fdfefe;
}

.upload-file-text{
  font-size:13px;
  color:#667085;
  line-height:1.5;
  word-break:break-word;
  flex:1;
  min-width:120px;
}


@media (max-width:768px){
  .upload-control{
    align-items:center;
    padding:10px 10px;
    border-radius:10px;
    gap:10px;
  }

  .upload-btn{
    min-height:36px;
    padding:0 12px;
    font-size:12px;
    border-radius:8px;
    flex:0 0 auto;
  }

  .upload-file-text{
    flex:1;
    min-width:0;
    width:auto;
    font-size:12px;
    line-height:1.4;
  }
}
.brand-logo{
  width:48px;
  height:48px;
  object-fit:contain;
  position:relative;
  z-index:2;
  filter:drop-shadow(0 0 4px rgba(66,133,244,.35));
  transition:all .35s ease;
}

.brand-logo:hover{
  filter:
    drop-shadow(0 0 4px rgba(66,133,244,.45))
    drop-shadow(0 0 6px rgba(234,67,53,.35))
    drop-shadow(0 0 6px rgba(251,188,5,.35))
    drop-shadow(0 0 6px rgba(52,168,83,.35));
}
@keyframes googleGlow{
  0%{
    filter:drop-shadow(0 0 3px rgba(66,133,244,.35));
  }
  50%{
    filter:drop-shadow(0 0 6px rgba(66,133,244,.45));
  }
  100%{
    filter:drop-shadow(0 0 3px rgba(66,133,244,.35));
  }
}

.brand-logo{
  animation:googleGlow 3.5s ease-in-out infinite;
}
.brand{
  position:relative;
}

.brand::before{
  content:"";
  position:absolute;
  width:70px;
  height:70px;
  left:-8px;
  top:-8px;
  background:radial-gradient(circle,
      rgba(66,133,244,.18),
      rgba(234,67,53,.12),
      rgba(251,188,5,.12),
      rgba(52,168,83,.12),
      transparent 70%);
  filter:blur(10px);
  z-index:0;
}
.brand{
  position:relative;
}

.brand::before{
  content:"";
  position:absolute;
  width:70px;
  height:70px;
  left:-8px;
  top:-8px;
  background:radial-gradient(circle,
      rgba(66,133,244,.18),
      rgba(234,67,53,.12),
      rgba(251,188,5,.12),
      rgba(52,168,83,.12),
      transparent 70%);
  filter:blur(10px);
  z-index:0;
}
.logo::before{
  content:"";
  position:absolute;
  left:-8px;
  top:50%;
  transform:translateY(-50%);
  width:64px;
  height:64px;
  border-radius:50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(66,133,244,.22), transparent 42%),
    radial-gradient(circle at 70% 30%, rgba(234,67,53,.18), transparent 42%),
    radial-gradient(circle at 35% 75%, rgba(52,168,83,.18), transparent 42%),
    radial-gradient(circle at 75% 75%, rgba(251,188,5,.18), transparent 42%);
  filter:blur(10px);
  z-index:0;
  pointer-events:none;
}
@media (max-width:768px){
  .logo::before{
    width:56px;
    height:56px;
    left:-6px;
  }

  .logo-img{
    width:52px;
  }
}
@keyframes logoGlow{
  0%{
    filter:
      drop-shadow(0 0 3px rgba(66,133,244,.18))
      drop-shadow(0 0 5px rgba(255,255,255,.28));
    transform:scale(1);
  }
  50%{
    filter:
      drop-shadow(0 0 6px rgba(66,133,244,.28))
      drop-shadow(0 0 10px rgba(255,255,255,.42));
    transform:scale(1.02);
  }
  100%{
    filter:
      drop-shadow(0 0 3px rgba(66,133,244,.18))
      drop-shadow(0 0 5px rgba(255,255,255,.28));
    transform:scale(1);
  }
}
.top-summary{
  background:#ffffff;
  border:1px solid #e6ebf2;
  border-radius:16px;
  box-shadow:0 10px 24px rgba(15,23,42,.05);
  padding:20px;
  margin-bottom:16px;
}

.top-summary__head{
  margin-bottom:14px;
}

.mini-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:#eef4ff;
  color:#1260c8;
  border:1px solid #dbe7ff;
  font-size:12px;
  font-weight:700;
  margin-bottom:10px;
}

.top-summary h1{
  margin:0 0 8px;
  font-size:28px;
  line-height:1.15;
  font-weight:800;
  letter-spacing:-0.03em;
  color:#0f172a;
}

.top-summary p{
  margin:0;
  color:#667085;
  font-size:14px;
  line-height:1.7;
  max-width:640px;
}

.top-summary__package{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:14px 16px;
  border-radius:14px;
  background:#f8fbff;
  border:1px solid #dbe7f7;
}

.top-summary__package small{
  font-size:12px;
  color:#64748b;
  font-weight:700;
}

.top-summary__package strong{
  font-size:20px;
  line-height:1.25;
  color:#0f172a;
  font-weight:800;
}

.top-summary__package span{
  font-size:16px;
  font-weight:800;
  color:#1260c8;
}
.compact-progress{
  padding:16px 18px;
  border-radius:16px;
  margin-bottom:18px;
}

.progress-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.progress-row h2{
  margin:0;
  font-size:22px;
  line-height:1.2;
  color:#0f172a;
  font-weight:800;
}

.step-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:64px;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:#f1f5f9;
  border:1px solid #dbe3ec;
  color:#1260c8;
  font-size:13px;
  font-weight:800;
}
.wizard-hero{
  display:none;
}

.progress-label{
  display:none;
}

.step-counter{
  display:none;
}
.back-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 14px;
  border-radius:10px;
  background:#f8fafc;
  color:#1260c8;
  font-weight:700;
  font-size:13px;
  border:1px solid #dbe3ee;
}
@media (max-width:768px){
  .back-link{
    width:100%;
    min-height:38px;
    font-size:13px;
    border-radius:10px;
  }
}
@media (max-width:768px){
  .page{
    padding:14px 0 34px;
  }

  .top-summary{
    padding:16px;
    border-radius:14px;
    margin-bottom:14px;
  }

  .top-summary h1{
    font-size:24px;
    line-height:1.18;
  }

  .top-summary p{
    font-size:13px;
    line-height:1.65;
  }

  .top-summary__package{
    padding:12px 14px;
    border-radius:12px;
  }

  .top-summary__package strong{
    font-size:18px;
  }

  .top-summary__package span{
    font-size:15px;
  }

  .compact-progress{
    padding:14px 16px;
    border-radius:14px;
    margin-bottom:14px;
  }

  .progress-row h2{
    font-size:19px;
  }

  .step-pill{
    min-width:58px;
    min-height:30px;
    font-size:12px;
  }
}
.checkbox{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:14px;
  border:1px solid #e5eaf2;
  border-radius:12px;
  background:#f9fbff;
  font-size:14px;
  line-height:1.6;
}

.checkbox input{
  width:18px;
  height:18px;
  margin-top:2px;
}

.checkbox a{
  color:#1260c8;
  font-weight:600;
  text-decoration:none;
}

.checkbox a:hover{
  text-decoration:underline;
}
.iban-row{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.copy-iban-btn{
  min-height:32px;
  padding:0 12px;
  border-radius:8px;
  border:1px solid #d7dee8;
  background:#f8fafc;
  color:#1260c8;
  font-size:12px;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
}

.copy-iban-btn:hover{
  background:#eef4ff;
  border-color:#c8d8f5;
}
@media (max-width:768px){

  .iban-row{
    gap:8px;
  }

  .copy-iban-btn{
    font-size:11px;
    padding:0 10px;
  }

}

