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

 :root {
     --orange: #F97316;
     --orange-dark: #EA6500;
     --orange-light: #FFF7ED;
     --orange-mid: #FFEDD5;
     --black: #0F0F0F;
     --gray-900: #1A1A1A;
     --gray-700: #374151;
     --gray-500: #6B7280;
     --gray-200: #E5E7EB;
     --gray-100: #F9FAFB;
     --white: #FFFFFF;
     --green: #16a34a;
     --green-light: #f0fdf4;
     --green-mid: #dcfce7;
     --font-display: 'Fraunces', Georgia, serif;
     --font-body: 'Plus Jakarta Sans', sans-serif;
     --radius-sm: 6px;
     --radius-md: 12px;
     --radius-lg: 20px;
     --radius-xl: 32px;
     --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
     --shadow-md: 0 4px 16px rgba(0, 0, 0, .10);
     --shadow-orange: 0 6px 32px rgba(249, 115, 22, .32);
 }

 html {
     scroll-behavior: smooth
 }

 body {
     font-family: var(--font-body);
     font-size: 16px;
     line-height: 1.65;
     color: var(--gray-900);
     background: var(--gray-100);
     -webkit-font-smoothing: antialiased
 }

 .container {
     max-width: 1100px;
     margin: 0 auto;
     padding: 0 24px
 }

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

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

 /* ── Nav ── */
 .nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 100;
     background: rgba(255, 255, 255, .92);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid var(--gray-200)
 }

 .nav-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 64px
 }

 .logo-image {
     height: 32px;
     width: auto;
     display: block
 }

 .nav-logo {
     display: flex;
     align-items: center;
     gap: 10px
 }

 .logo-mark {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 36px;
     height: 36px;
     border-radius: 9px;
     background: var(--orange);
     color: var(--white);
     font-family: var(--font-display);
     font-weight: 700;
     font-size: 14px
 }

 .logo-text {
     font-family: var(--font-display);
     font-weight: 700;
     font-size: 18px;
     color: var(--black)
 }

 .nav-links {
     display: flex;
     align-items: center;
     gap: 28px
 }

 .nav-links a {
     font-size: 14px;
     font-weight: 500;
     color: var(--gray-700);
     transition: color .2s
 }

 .nav-links a:hover {
     color: var(--orange)
 }

 .nav-cta {
     background: var(--orange) !important;
     color: var(--white) !important;
     padding: 8px 18px;
     border-radius: var(--radius-sm);
     font-weight: 600 !important;
     font-size: 14px
 }

 @media(max-width:860px) {
     .nav-links {
         display: none
     }
 }

 /* ── Page shell ── */
 .page {
     padding-top: 64px;
     min-height: 100vh
 }

 /* ── Checkout hero ── */
 .checkout-hero {
     background: var(--black);
     padding: 56px 0 48px;
     text-align: center;
     position: relative;
     overflow: hidden
 }

 .checkout-hero::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(249, 115, 22, .18) 0%, transparent 70%);
     pointer-events: none
 }

 .checkout-hero-badge {
     display: inline-block;
     background: rgba(249, 115, 22, .15);
     border: 1px solid rgba(249, 115, 22, .4);
     color: #fed7aa;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 1px;
     text-transform: uppercase;
     padding: 5px 16px;
     border-radius: 100px;
     margin-bottom: 18px
 }

 .checkout-hero h1 {
     font-family: var(--font-display);
     font-size: clamp(28px, 5vw, 46px);
     font-weight: 700;
     color: var(--white);
     line-height: 1.1;
     letter-spacing: -.3px;
     margin-bottom: 10px
 }

 .checkout-hero h1 em {
     font-style: italic;
     color: var(--orange)
 }

 .checkout-hero p {
     color: #9ca3af;
     font-size: 15px
 }

 /* ── Layout ── */
 .checkout-layout {
     max-width: 860px;
     margin: 0 auto;
     padding: 40px 24px 80px;
     display: grid;
     grid-template-columns: 1fr 340px;
     gap: 28px;
     align-items: start
 }

 @media(max-width:760px) {
     .checkout-layout {
         grid-template-columns: 1fr
     }
 }

 /* ── Card base ── */
 .card {
     background: var(--white);
     border: 1.5px solid var(--gray-200);
     border-radius: var(--radius-xl);
     padding: 32px 28px
 }

 /* ── Steps indicator ── */
 .steps {
     display: flex;
     align-items: center;
     gap: 0;
     margin-bottom: 28px
 }

 .step {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 13px;
     font-weight: 600;
     color: var(--gray-500)
 }

 .step.active {
     color: var(--orange)
 }

 .step.done {
     color: var(--green)
 }

 .step-num {
     width: 26px;
     height: 26px;
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
     font-weight: 700;
     background: var(--gray-100);
     color: var(--gray-500);
     flex-shrink: 0
 }

 .step.active .step-num {
     background: var(--orange);
     color: var(--white)
 }

 .step.done .step-num {
     background: var(--green-mid);
     color: var(--green)
 }

 .step-line {
     flex: 1;
     height: 1px;
     background: var(--gray-200);
     margin: 0 8px
 }

 .step-line.done {
     background: var(--green)
 }

 /* ── Section heading inside card ── */
 .card-label {
     font-size: 10.5px;
     font-weight: 700;
     letter-spacing: 1px;
     text-transform: uppercase;
     color: var(--orange);
     margin-bottom: 6px;
     display: block
 }

 .card-title {
     font-family: var(--font-display);
     font-size: 20px;
     font-weight: 700;
     color: var(--black);
     margin-bottom: 20px;
     line-height: 1.2
 }

 /* ── Form ── */
 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px;
     margin-bottom: 14px
 }

 @media(max-width:500px) {
     .form-row {
         grid-template-columns: 1fr
     }
 }

 .form-group {
     display: flex;
     flex-direction: column;
     gap: 6px;
     margin-bottom: 14px
 }

 .form-group label {
     font-size: 13px;
     font-weight: 600;
     color: var(--gray-700)
 }

 .form-group label span {
     color: var(--orange)
 }

 .form-control {
     font-family: var(--font-body);
     font-size: 14.5px;
     color: var(--black);
     background: var(--gray-100);
     border: 1.5px solid var(--gray-200);
     border-radius: var(--radius-sm);
     padding: 10px 14px;
     outline: none;
     transition: border-color .18s, background .18s;
     width: 100%
 }

 .form-control:focus {
     border-color: var(--orange);
     background: var(--white)
 }

 .form-control::placeholder {
     color: var(--gray-500)
 }

 .form-hint {
     font-size: 12px;
     color: var(--gray-500);
     line-height: 1.5
 }

 /* ── Bank transfer card ── */
 .bank-card {
     background: var(--gray-100);
     border: 1.5px solid var(--gray-200);
     border-radius: var(--radius-md);
     padding: 20px 20px;
     margin: 20px 0
 }

 .bank-header {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 16px
 }

 .bank-logo {
     width: 44px;
     height: 28px;
     background: var(--blue, #003d82);
     border-radius: 6px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 11px;
     font-weight: 900;
     color: white;
     letter-spacing: .5px;
     flex-shrink: 0;
     background: #003d82
 }

 .bank-name {
     font-size: 14px;
     font-weight: 700;
     color: var(--black)
 }

 .bank-holder {
     font-size: 13px;
     color: var(--gray-500)
 }

 .bank-number-wrap {
     background: var(--white);
     border: 1.5px solid var(--gray-200);
     border-radius: var(--radius-sm);
     padding: 12px 16px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px
 }

 .bank-number {
     font-family: 'Courier New', monospace;
     font-size: 20px;
     font-weight: 700;
     color: var(--black);
     letter-spacing: 2px
 }

 .copy-btn {
     background: var(--orange-mid);
     border: none;
     color: var(--orange-dark);
     font-size: 12px;
     font-weight: 700;
     padding: 6px 12px;
     border-radius: var(--radius-sm);
     cursor: pointer;
     transition: background .18s;
     white-space: nowrap;
     font-family: var(--font-body)
 }

 .copy-btn:hover {
     background: var(--orange);
     color: var(--white)
 }

 .copy-btn.copied {
     background: var(--green-mid);
     color: var(--green)
 }

 .bank-amount-row {
     margin-top: 12px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px;
     padding-top: 12px;
     border-top: 1px solid var(--gray-200)
 }

 .bank-amount-label {
     font-size: 13px;
     color: var(--gray-500)
 }

 .bank-amount-value {
     font-family: var(--font-display);
     font-size: 20px;
     font-weight: 700;
     color: var(--orange)
 }

 .bank-amount-note {
     font-size: 11.5px;
     color: var(--gray-500);
     margin-top: 4px;
     text-align: right
 }

 /* ── Unique code notice ── */
 .unique-notice {
     background: var(--orange-light);
     border: 1px solid var(--orange-mid);
     border-radius: var(--radius-sm);
     padding: 11px 14px;
     font-size: 13px;
     color: var(--gray-700);
     line-height: 1.6;
     margin-top: 14px
 }

 .unique-notice strong {
     color: var(--orange-dark)
 }

 /* ── WA button ── */
 .wa-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     width: 100%;
     padding: 14px 20px;
     background: #25D366;
     color: var(--white);
     border: none;
     border-radius: var(--radius-sm);
     font-family: var(--font-body);
     font-size: 15px;
     font-weight: 700;
     cursor: pointer;
     text-decoration: none;
     transition: background .2s, transform .2s, box-shadow .2s;
     margin-top: 20px
 }

 .wa-btn:hover {
     background: #1ebe5d;
     transform: translateY(-1px);
     box-shadow: 0 6px 24px rgba(37, 211, 102, .35)
 }

 .wa-icon {
     width: 22px;
     height: 22px;
     flex-shrink: 0
 }

 /* ── Order summary (sidebar) ── */
 .summary-card {
     background: var(--white);
     border: 1.5px solid var(--orange);
     border-radius: var(--radius-xl);
     padding: 28px 24px;
     box-shadow: var(--shadow-orange);
     position: sticky;
     top: 84px
 }

 .summary-title {
     font-family: var(--font-display);
     font-size: 18px;
     font-weight: 700;
     color: var(--black);
     margin-bottom: 20px
 }

 .summary-item {
     display: flex;
     justify-content: space-between;
     align-items: baseline;
     gap: 12px;
     font-size: 14px;
     color: var(--gray-700);
     padding: 8px 0;
     border-bottom: 1px solid var(--gray-200)
 }

 .summary-item:last-of-type {
     border-bottom: none
 }

 .summary-item-label {
     color: var(--gray-500)
 }

 .summary-item-val {
     font-weight: 600;
     color: var(--black)
 }

 .summary-strike {
     text-decoration: line-through;
     color: var(--gray-500);
     font-weight: 400;
     font-size: 13px
 }

 .summary-total {
     display: flex;
     justify-content: space-between;
     align-items: baseline;
     gap: 12px;
     padding: 14px 0 0;
     margin-top: 4px;
     border-top: 2px solid var(--orange-mid)
 }

 .summary-total-label {
     font-size: 14px;
     font-weight: 700;
     color: var(--black)
 }

 .summary-total-val {
     font-family: var(--font-display);
     font-size: 26px;
     font-weight: 700;
     color: var(--orange)
 }

 .summary-save {
     display: inline-block;
     background: var(--orange);
     color: var(--white);
     font-size: 10px;
     font-weight: 700;
     letter-spacing: .8px;
     text-transform: uppercase;
     padding: 2px 9px;
     border-radius: 100px;
     margin-top: 6px
 }

 .summary-features {
     list-style: none;
     margin-top: 20px;
     display: flex;
     flex-direction: column;
     gap: 8px;
     padding-top: 20px;
     border-top: 1px solid var(--gray-200)
 }

 .summary-features li {
     display: flex;
     align-items: flex-start;
     gap: 8px;
     font-size: 13px;
     color: var(--gray-700);
     line-height: 1.45
 }

 .sf-check {
     width: 16px;
     height: 16px;
     min-width: 16px;
     border-radius: 50%;
     background: var(--orange-mid);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 9px;
     color: var(--orange-dark);
     font-weight: 700;
     margin-top: 1px
 }

 .summary-guarantee {
     margin-top: 16px;
     display: flex;
     flex-direction: column;
     gap: 6px
 }

 .g-row {
     display: flex;
     align-items: center;
     gap: 7px;
     font-size: 12px;
     color: var(--gray-500)
 }

 /* ── Instruction steps ── */
 .instr-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 14px;
     margin-top: 16px
 }

 .instr-item {
     display: flex;
     gap: 14px;
     align-items: flex-start;
     font-size: 14px;
     color: var(--gray-700);
     line-height: 1.6
 }

 .instr-num {
     width: 28px;
     height: 28px;
     min-width: 28px;
     border-radius: 50%;
     background: var(--orange-mid);
     color: var(--orange-dark);
     font-size: 12px;
     font-weight: 700;
     font-family: var(--font-display);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     margin-top: 1px
 }

 /* ── Footer ── */
 .footer {
     background: var(--black);
     padding-top: 60px;
     padding-bottom: 0
 }

 .footer-inner {
     display: grid;
     grid-template-columns: 1.6fr 1fr;
     gap: 60px;
     padding-bottom: 52px;
     border-bottom: 1px solid rgba(255, 255, 255, .08)
 }

 @media(max-width:640px) {
     .footer-inner {
         grid-template-columns: 1fr;
         gap: 32px
     }
 }

 .footer .logo-text {
     color: var(--white)
 }

 .footer-tagline {
     font-family: var(--font-display);
     font-size: 16px;
     font-style: italic;
     color: #9ca3af;
     margin-top: 10px;
     margin-bottom: 14px
 }

 .footer-flagodna {
     font-size: 13px;
     color: #6b7280;
     line-height: 1.65;
     max-width: 380px
 }

 .footer-flagodna a {
     color: var(--orange);
     text-decoration: underline;
     text-underline-offset: 3px
 }

 .footer-links {
     display: flex;
     gap: 40px
 }

 .footer-col {
     display: flex;
     flex-direction: column;
     gap: 10px
 }

 .footer-col h5 {
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 1px;
     text-transform: uppercase;
     color: #6b7280;
     margin-bottom: 4px
 }

 .footer-col a {
     font-size: 14px;
     color: #9ca3af;
     transition: color .2s
 }

 .footer-col a:hover {
     color: var(--orange)
 }

 .footer-bottom {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 24px;
     font-size: 12.5px;
     color: #4b5563;
     flex-wrap: wrap;
     gap: 8px
 }

 /* ── Animations ── */
 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(16px)
     }

     to {
         opacity: 1;
         transform: translateY(0)
     }
 }

 .checkout-hero-badge {
     animation: fadeUp .4s ease .1s both
 }

 .checkout-hero h1 {
     animation: fadeUp .4s ease .2s both
 }

 .checkout-layout {
     animation: fadeUp .4s ease .3s both
 }