/* =============================================================
   GRA TRANSFORMACYJNA – Landing Page Styles
   Branding: instytutnumeroterapii.pl / szkolanumerologii.pl
   Kolory: #CC3366 (magenta), #333366 (deep navy), soft pastels
   ============================================================= */

/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
    --gt-pink:        #CC3366;
    --gt-pink-dark:   #a82852;
    --gt-navy:        #333366;
    --gt-navy-dark:   #22224d;
    --gt-lavender:    #e8e4f0;
    --gt-lavender-md: #d4cfe6;
    --gt-cream:       #faf9f7;
    --gt-soft:        #f4f1f8;
    --gt-dark-bg:     #1e1a2e;
    --gt-dark-text:   #f0edf8;
    --gt-text:        #2d2d2d;
    --gt-text-light:  #6b6880;
    --gt-white:       #ffffff;
    --gt-border:      rgba(51, 51, 102, 0.12);

    --gt-font-serif:  'Cormorant Garamond', Georgia, serif;
    --gt-font-sans:   'Lato', -apple-system, sans-serif;

    --gt-radius:      12px;
    --gt-radius-lg:   20px;
    --gt-shadow:      0 4px 24px rgba(51, 51, 102, 0.10);
    --gt-shadow-lg:   0 12px 48px rgba(51, 51, 102, 0.18);

    --gt-max:         1200px;
    --gt-narrow:      760px;
}

/* ─── RESET / BASE ──────────────────────────────────────── */
.gra-landing-body {
    font-family: var(--gt-font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gt-text);
    background: var(--gt-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.gra-landing-body *,
.gra-landing-body *::before,
.gra-landing-body *::after {
    box-sizing: border-box;
}

/* ─── LAYOUT CONTAINERS ─────────────────────────────────── */
.gt-container {
    width: 100%;
    max-width: var(--gt-max);
    margin-inline: auto;
    padding-inline: 24px;
}

.gt-container--narrow {
    max-width: var(--gt-narrow);
}

.gt-section {
    padding-block: 80px;
}

.gt-section--dark {
    background: var(--gt-dark-bg);
    color: var(--gt-dark-text);
}

.gt-section--soft {
    background: var(--gt-soft);
}

/* ─── TYPOGRAPHY ────────────────────────────────────────── */
.gt-eyebrow {
    font-family: var(--gt-font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gt-pink);
    margin-bottom: 12px;
}

.gt-eyebrow--light {
    color: var(--gt-lavender-md);
    opacity: 0.75;
}

.gt-section__title {
    font-family: var(--gt-font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--gt-navy);
    margin-bottom: 32px;
}

.gt-section__title--light {
    color: var(--gt-dark-text);
}

.gt-lead {
    font-family: var(--gt-font-serif);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 300;
    line-height: 1.5;
    color: var(--gt-navy);
    margin-bottom: 20px;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.gt-btn {
    display: inline-block;
    font-family: var(--gt-font-sans);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 50px;
    padding: 14px 36px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-align: center;
}

.gt-btn--primary {
    background: var(--gt-pink);
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(204, 51, 102, 0.35);
}

.gt-btn--primary:hover,
.gt-btn--primary:focus,
.gt-btn--primary:active,
.gt-btn--primary:visited {
    background: var(--gt-pink-dark);
    box-shadow: 0 6px 28px rgba(204, 51, 102, 0.45);
    transform: translateY(-2px);
    color: #ffffff !important;
    text-decoration: none;
}

.gt-btn--large  { padding: 16px 48px; font-size: 16px; }
.gt-btn--xl     { padding: 20px 60px; font-size: 18px; }

/* ─── HERO ──────────────────────────────────────────────── */
.gt-hero {
    position: relative;
    min-height: 100vh;
    background: var(--gt-navy-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    text-align: center;
    overflow: hidden;
}

/* ── background video ── */
.gt-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

/* ── colour + gradient overlay on top of video ── */
.gt-hero__bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        /* top vignette, keeps heading readable */
        linear-gradient(to bottom,
            rgba(30, 26, 46, 0.72) 0%,
            rgba(30, 26, 46, 0.30) 40%,
            rgba(30, 26, 46, 0.55) 100%),
        /* subtle brand colour glow */
        radial-gradient(ellipse 70% 45% at 50% 0%,
            rgba(204, 51, 102, 0.20) 0%, transparent 70%),
        radial-gradient(ellipse 55% 35% at 80% 85%,
            rgba(51, 51, 102, 0.28) 0%, transparent 60%);
    pointer-events: none;
}

.gt-hero .gt-container {
    position: relative;
    z-index: 2;          /* above video (0) and overlay (1) */
}

.gt-hero__badge {
    display: inline-block;
    font-family: var(--gt-font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gt-pink);
    border: 1px solid rgba(204, 51, 102, 0.5);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    background: rgba(204, 51, 102, 0.08);
}

.gt-hero__title {
    font-family: var(--gt-font-serif);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--gt-white);
    margin-bottom: 24px;
}

.gt-hero__title em {
    font-style: italic;
    color: var(--gt-lavender-md);
}

.gt-hero__subtitle {
    font-size: 16px;
    color: rgba(240, 237, 248, 0.75);
    margin-bottom: 40px;
    max-width: 560px;
    margin-inline: auto;
    line-height: 1.6;
}

.gt-hero__subtitle strong {
    color: var(--gt-dark-text);
}

.gt-hero__note {
    font-size: 12px;
    color: rgba(240, 237, 248, 0.45);
    margin-top: 16px;
    letter-spacing: 0.04em;
}

.gt-what__cert-link-wrap {
    margin: 4px 0 16px;
}

.gt-what__cert-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--gt-pink);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    letter-spacing: 0.01em;
    transition: color 0.2s, text-decoration-color 0.2s;
}

.gt-what__cert-link:hover,
.gt-what__cert-link:focus {
    color: var(--gt-navy);
    text-decoration-color: var(--gt-navy);
    outline: none;
}

.gt-hero__cards {
    position: absolute;
    bottom: 0;
    right: 5%;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    z-index: 2;          /* same layer as content, decorative only */
    pointer-events: none;
}

.gt-hero__card {
    opacity: 0.18;
    max-height: 360px;
    width: auto;
    filter: blur(0.5px);
}

.gt-hero__card--box {
    transform: rotate(-6deg) translateY(20px);
}

.gt-hero__card--fan {
    transform: rotate(4deg) translateY(10px);
    opacity: 0.12;
}

/* ─── COUNTDOWN ─────────────────────────────────────────── */
.gt-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.gt-countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--gt-radius);
    padding: 12px 20px;
    min-width: 72px;
}

.gt-countdown__num {
    font-family: var(--gt-font-serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--gt-white);
    line-height: 1;
}

.gt-countdown__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240, 237, 248, 0.5);
    margin-top: 4px;
}

.gt-countdown__sep {
    font-size: 1.8rem;
    color: rgba(204, 51, 102, 0.6);
    font-weight: 300;
    align-self: flex-start;
    padding-top: 10px;
}

/* ─── MARQUEE GALLERY ────────────────────────────────────── */
@keyframes gt-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.gt-marquee-section {
    background: var(--gt-lavender);
    padding-block: 48px;
    overflow: hidden;
}

/* Wariant podpięty bezpośrednio pod hero — bez przerwy, ciemne tło */
.gt-marquee-section--hero {
    background: var(--gt-navy, #0e0b1f);
    padding-block: 32px 40px;
    margin-top: -1px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gt-marquee-section--hero .gt-marquee__item img {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.gt-marquee {
    overflow: hidden;
    /* fade edges */
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

.gt-marquee__track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: gt-marquee-scroll 28s linear infinite;
    will-change: transform;
}

/* pause on hover */
.gt-marquee:hover .gt-marquee__track {
    animation-play-state: paused;
}

.gt-marquee__item {
    flex: 0 0 auto;
    width: 260px;
}

.gt-marquee__item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--gt-radius-lg);
    box-shadow: var(--gt-shadow);
    display: block;
}

@media (max-width: 768px) {
    .gt-marquee__item { width: 200px; }
    .gt-marquee__item img { height: 230px; }
}

@media (max-width: 480px) {
    .gt-marquee__item { width: 160px; }
    .gt-marquee__item img { height: 190px; }
}

/* ─── SIGNALS ───────────────────────────────────────────── */
.gt-signals {
    padding-block: 80px;
    text-align: center;
}

.gt-signals__list {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    text-align: left;
}

.gt-signals__item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gt-soft);
    border: 1px solid var(--gt-border);
    border-radius: var(--gt-radius);
    padding: 10px 10px 15px 20px;
    font-size: 15px;
    line-height: 1.5;
    overflow: visible;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
}

.gt-signals__copy {
    flex: 1;
    min-width: 0;
    align-self: center;
}

.gt-signals__img-btn {
    display: block;
    flex-shrink: 0;
    align-self: flex-end;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: zoom-in;
    border-radius: 8px;
    line-height: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gt-signals__img-btn:focus {
    outline: none;
}

.gt-signals__img-btn:focus-visible {
    outline: 2px solid var(--gt-pink);
    outline-offset: 3px;
}

.gt-signals__item:hover {
    border-color: rgba(204, 51, 102, 0.3);
    box-shadow: 0 4px 16px rgba(204, 51, 102, 0.10);
}

.gt-signals__img {
    width: auto;
    height: 120px;
    object-fit: contain;
    object-position: center bottom;
    flex-shrink: 0;
    align-self: flex-end;
    filter: drop-shadow(2px 6px 10px rgba(51, 51, 102, 0.18));
    transform: rotate(-4deg) translateY(6px);
    transition: transform 0.3s ease;
}

.gt-signals__item:nth-child(even) .gt-signals__img {
    transform: rotate(3deg) translateY(4px);
}

.gt-signals__item:hover .gt-signals__img {
    transform: rotate(0deg) translateY(0px) scale(1.05);
}

.gt-signals__item:hover .gt-signals__img-btn {
    transform: translateY(-1px);
}

/* ─── SIGNALS – lightbox (miniaturki kart) ───────────────── */
.gt-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.gt-lightbox[hidden] {
    display: none !important;
}

.gt-lightbox__shade {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(30, 26, 46, 0.88);
    cursor: pointer;
    outline: none;
}

.gt-lightbox__panel {
    position: relative;
    z-index: 1;
    max-width: min(92vw, 720px);
    max-height: min(88vh, 900px);
    margin: auto;
    padding: 12px;
    background: var(--gt-white);
    border-radius: var(--gt-radius-lg);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(204, 51, 102, 0.25);
}

.gt-lightbox__img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: min(82vh, 860px);
    object-fit: contain;
    border-radius: var(--gt-radius);
}

.gt-lightbox__close {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(30, 26, 46, 0.08);
    color: var(--gt-navy);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.gt-lightbox__close:hover,
.gt-lightbox__close:focus {
    background: var(--gt-pink);
    color: var(--gt-white);
}

.gt-lightbox__close:focus-visible {
    outline: 2px solid var(--gt-pink);
    outline-offset: 2px;
}

body.gt-lightbox-open {
    overflow: hidden;
}

.gt-signals__closing {
    font-family: var(--gt-font-serif);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gt-navy);
    line-height: 1.6;
}

/* ─── WHAT / CO TO JEST ─────────────────────────────────── */
.gt-what__kicker {
    font-family: var(--gt-font-serif);
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gt-pink);
    margin: 0 0 10px;
    line-height: 1.45;
}

.gt-what__kit-note {
    font-size: 14px;
    color: var(--gt-text-light);
    line-height: 1.65;
    margin: 0 0 16px;
    padding: 14px 16px;
    background: var(--gt-soft);
    border-radius: var(--gt-radius);
    border: 1px solid var(--gt-border);
}

.gt-what__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gt-what__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.gt-what__meta-item {
    background: var(--gt-soft);
    border-radius: var(--gt-radius);
    padding: 16px;
    border: 1px solid var(--gt-border);
}

.gt-what__meta-item strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gt-pink);
    margin-bottom: 4px;
}

.gt-what__meta-item span {
    font-size: 14px;
    color: var(--gt-text);
}

/* ── wideo „Co to jest”: autoplay w JS (IntersectionObserver) ── */
.gt-what__video-wrap {
    position: relative;
    width: 100%;
    height: 460px;
    border-radius: var(--gt-radius-lg);
    overflow: hidden;
    box-shadow: var(--gt-shadow-lg);
    cursor: default;
    background: var(--gt-lavender);
}

.gt-what__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* no native controls, purely via JS */
}

/* hint overlay, visible when paused, fades on hover/play */
.gt-what__video-hint {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    background: linear-gradient(to top, rgba(30,26,46,0.45) 0%, transparent 50%);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gt-what__video-hint span {
    font-family: var(--gt-font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

/* hide hint once video is playing */
.gt-what__video-wrap.is-playing .gt-what__video-hint {
    opacity: 0;
}

/* ─── JOURNEY / 5 KRAIN ─────────────────────────────────── */
.gt-journey__intro {
    font-size: 17px;
    color: rgba(240, 237, 248, 0.7);
    margin-bottom: 52px;
    max-width: 580px;
}

.gt-journey__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.gt-journey__steps::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(204,51,102,0.6), rgba(204,51,102,0.1));
}

.gt-journey__step {
    display: flex;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.gt-journey__step:last-child {
    border-bottom: none;
}

.gt-journey__num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gt-pink);
    color: var(--gt-white);
    font-family: var(--gt-font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--gt-dark-bg), 0 0 0 6px rgba(204,51,102,0.3);
}

.gt-journey__content h3 {
    font-family: var(--gt-font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gt-dark-text);
    margin-bottom: 8px;
}

.gt-journey__content p {
    color: rgba(240, 237, 248, 0.7);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.gt-journey__content em {
    color: var(--gt-lavender-md);
}

/* ─── HOW IT WORKS ──────────────────────────────────────── */
.gt-how__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 300px);
    gap: 32px 40px;
    align-items: center;
    margin-bottom: 52px;
}

.gt-how__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    margin-bottom: 0;
}

.gt-how__card {
    background: var(--gt-soft);
    border: 1px solid var(--gt-border);
    border-radius: var(--gt-radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: box-shadow 0.25s, transform 0.25s;
}

.gt-how__card:hover {
    box-shadow: var(--gt-shadow);
    transform: translateY(-4px);
}

.gt-how__icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.gt-how__card h3 {
    font-family: var(--gt-font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gt-navy);
    margin-bottom: 10px;
}

.gt-how__card p {
    font-size: 14px;
    color: var(--gt-text-light);
    line-height: 1.6;
    margin: 0;
}

.gt-how__video-aside {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.gt-how__video-wrap {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 9 / 16;
    border-radius: var(--gt-radius-lg);
    overflow: hidden;
    box-shadow: var(--gt-shadow-lg);
    background: var(--gt-lavender);
}

.gt-how__video {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder „play”, znika po starcie odtwarzania (.is-playing z gra.js) */
.gt-how__video-ph {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(30, 26, 46, 0.12) 0%,
        rgba(30, 26, 46, 0.28) 100%
    );
    transition: opacity 0.4s ease;
}

.gt-how__video-wrap.is-playing .gt-how__video-ph {
    opacity: 0;
}

.gt-how__video-ph__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: var(--gt-navy);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
    border: 2px solid rgba(204, 51, 102, 0.35);
}

.gt-how__video-ph__icon {
    display: block;
    margin-left: 5px;
}

.gt-how__tools {
    background: var(--gt-dark-bg);
    border-radius: var(--gt-radius-lg);
    padding: 32px 36px;
    text-align: center;
}

.gt-how__tools-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gt-pink);
    margin-bottom: 20px;
}

.gt-how__tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gt-how__tools-list span {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 14px;
    color: var(--gt-dark-text);
    font-weight: 500;
}

/* ─── BEFORE / AFTER IMAGE SLIDER ───────────────────────── */
.gt-slider__hint {
    font-size: 15px;
    line-height: 1.55;
    color: var(--gt-text-light);
    text-align: center;
    max-width: 34em;
    margin: -12px auto 20px;
}

.gt-slider__hint strong {
    color: var(--gt-navy);
    font-weight: 700;
}

.gt-slider__hint--used {
    opacity: 0.55;
    transition: opacity 0.45s ease;
}

@keyframes gt-slider-grip-nudge {
    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(5px);
    }
}

/* stary „drgający” grip, tylko gdy nie ma pełnej animacji suwaka (.gt-slider--demo) */
.gt-slider:not(.gt-slider--used):not(.gt-slider--demo) .gt-slider__grip {
    animation: gt-slider-grip-nudge 2s ease-in-out 3;
}

@media (prefers-reduced-motion: reduce) {
    .gt-slider:not(.gt-slider--used):not(.gt-slider--demo) .gt-slider__grip {
        animation: none;
    }
}

/* płynne przesuwanie całego szwu (uchwyt + klip „po”) w trybie demo, steruje gra.js */
.gt-slider--demo .gt-slider__handle,
.gt-slider--demo .gt-slider__po-clip {
    transition:
        left 1.4s cubic-bezier(0.28, 0.08, 0.18, 1),
        width 1.4s cubic-bezier(0.28, 0.08, 0.18, 1);
}

.gt-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--gt-radius-lg);
    overflow: hidden;
    box-shadow: var(--gt-shadow-lg);
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    margin-bottom: 32px;
    touch-action: pan-y;
}

.gt-slider__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* „Po” w opakowaniu z overflow, szerokość/lewo w % (gra.js), obraz w px szerokości slidera */
.gt-slider__po-clip {
    position: absolute;
    top: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.gt-slider__po-clip .gt-slider__img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.gt-slider__img--before {
    z-index: 2;
}

/* labels */
.gt-slider__label {
    position: absolute;
    top: 16px;
    font-family: var(--gt-font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    pointer-events: none;
    z-index: 3;
}

.gt-slider__label--before {
    left: 16px;
    background: rgba(30, 26, 46, 0.65);
    color: rgba(240, 237, 248, 0.85);
}

.gt-slider__label--after {
    right: 16px;
    background: var(--gt-pink);
    color: #ffffff;
}

/* handle */
.gt-slider__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;            /* default; overridden by JS */
    transform: translateX(-50%);
    width: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 4;
    cursor: col-resize;
}

.gt-slider__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #ffffff;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(0,0,0,0.35);
}

.gt-slider__grip {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 18px;
    color: var(--gt-navy);
    font-weight: 700;
    line-height: 1;
    transition: transform 0.15s, box-shadow 0.15s;
}

.gt-slider:active .gt-slider__grip,
.gt-slider__handle.is-dragging .gt-slider__grip {
    animation: none;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

/* ── animated bullet points ── */
.gt-slider__points {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 36px;
}

.gt-slider__point {
    position: relative;
    padding: 11px 0;
    border-bottom: 1px solid var(--gt-border);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.gt-slider__point:last-child { border-bottom: none; }

.gt-slider__point-before,
.gt-slider__point-after {
    position: absolute;
    left: 0;
    right: 0;
    font-size: 15px;
    line-height: 1.5;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gt-slider__point-before {
    color: var(--gt-text-light);
    opacity: 1;
    transform: translateY(0);
}

.gt-slider__point-after {
    color: var(--gt-pink);
    font-weight: 600;
    opacity: 0;
    transform: translateY(6px);
}

/* when point is "revealed" */
.gt-slider__point.is-after .gt-slider__point-before {
    opacity: 0;
    transform: translateY(-6px);
}

.gt-slider__point.is-after .gt-slider__point-after {
    opacity: 1;
    transform: translateY(0);
}

.gt-quote {
    background: var(--gt-lavender);
    border-left: 3px solid var(--gt-pink);
    border-radius: 0 var(--gt-radius) var(--gt-radius) 0;
    padding: 24px 28px;
    margin: 0;
}

.gt-quote p {
    font-family: var(--gt-font-serif);
    font-size: 1.15rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gt-navy);
    margin: 0;
    line-height: 1.6;
}

/* ─── INCLUDES ──────────────────────────────────────────── */
.gt-includes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gt-includes__item {
    background: var(--gt-soft);
    border: 1px solid var(--gt-border);
    border-radius: var(--gt-radius-lg);
    padding: 28px 24px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.gt-includes__item:hover {
    box-shadow: var(--gt-shadow);
    transform: translateY(-3px);
    border-color: rgba(204, 51, 102, 0.2);
}

.gt-includes__icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.gt-includes__item h4 {
    font-family: var(--gt-font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gt-navy);
    margin-bottom: 10px;
}

.gt-includes__item p {
    font-size: 14px;
    color: var(--gt-text-light);
    line-height: 1.6;
    margin: 0;
}

.gt-includes__video-wrap {
    position: relative;
    margin: 56px auto 0;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    border-radius: var(--gt-radius-lg);
    overflow: hidden;
    box-shadow: var(--gt-shadow);
    background: #000;
}

/* ─── VIDEO SOUND TOGGLE (mute/unmute) ────────────────────── */
.gt-video-sound-toggle {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s, border-color 0.2s;
    padding: 0;
    line-height: 0;
}

.gt-video-sound-toggle:hover,
.gt-video-sound-toggle:focus-visible {
    background: rgba(204, 51, 102, 0.85);
    border-color: rgba(255, 255, 255, 0.6);
    outline: none;
    transform: scale(1.06);
}

.gt-video-sound-toggle__icon {
    display: none;
    pointer-events: none;
}

.gt-video-sound-toggle[data-state="muted"] .gt-video-sound-toggle__icon--muted {
    display: block;
}

.gt-video-sound-toggle[data-state="unmuted"] .gt-video-sound-toggle__icon--unmuted {
    display: block;
}

@media (max-width: 480px) {
    .gt-video-sound-toggle {
        width: 36px;
        height: 36px;
        bottom: 10px;
        right: 10px;
    }

    .gt-video-sound-toggle__icon {
        width: 18px;
        height: 18px;
    }
}

.gt-includes__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .gt-includes__video-wrap {
        margin-top: 40px;
        border-radius: var(--gt-radius);
    }
}

/* ─── EVENT SECTION ─────────────────────────────────────── */
.gt-event {
    text-align: center;
}

.gt-event__desc {
    font-size: 17px;
    color: rgba(240, 237, 248, 0.7);
    margin-bottom: 44px;
    line-height: 1.7;
}

.gt-event__desc strong {
    color: var(--gt-dark-text);
}

.gt-event__details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 44px;
    text-align: left;
}

.gt-event__detail {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--gt-radius);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.gt-event__detail-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.gt-event__detail strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gt-lavender-md);
    margin-bottom: 4px;
}

.gt-event__detail span {
    font-size: 15px;
    color: rgba(240, 237, 248, 0.8);
}

/* ─── SCRATCH CARD ───────────────────────────────────────── */
.gt-scratch-wrap {
    position: relative;
    border-radius: var(--gt-radius-lg);
    overflow: hidden;
    margin-bottom: 44px;
    cursor: crosshair;
    -webkit-tap-highlight-color: transparent;
    touch-action: none;
}

.gt-scratch-content {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--gt-radius-lg);
    padding: 28px 32px;
    text-align: center;
}

.gt-scratch-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--gt-radius-lg);
    /* cursor: crosshair inherited from wrap */
}

/* po odkryciu – canvas zanika */
.gt-scratch-wrap.is-revealed .gt-scratch-canvas {
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.gt-event__program {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--gt-radius-lg);
    padding: 28px 32px;
    margin-bottom: 44px;
    text-align: center;
}

.gt-event__program-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gt-lavender-md);
    opacity: 0.7;
    margin-bottom: 20px;
}

.gt-event__program-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gt-event__program-items span {
    background: rgba(204, 51, 102, 0.15);
    border: 1px solid rgba(204, 51, 102, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--gt-dark-text);
}

.gt-event__limit {
    font-size: 13px;
    color: rgba(240, 237, 248, 0.55);
    margin-top: 16px;
}

.gt-event__limit-link {
    color: rgba(240, 237, 248, 0.85);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.gt-event__limit-link:hover {
    color: #fff;
}

/* ─── FOR WHOM ───────────────────────────────────────────── */
.gt-forwhom__intro {
    font-size: 16px;
    color: var(--gt-text-light);
    line-height: 1.7;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
}

.gt-forwhom__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.gt-forwhom__col {
    border-radius: var(--gt-radius-lg);
    padding: 32px;
}

.gt-forwhom__col--yes {
    background: rgba(204, 51, 102, 0.05);
    border: 1px solid rgba(204, 51, 102, 0.2);
}

.gt-forwhom__col--no {
    background: var(--gt-soft);
    border: 1px solid var(--gt-border);
}

.gt-forwhom__col h3 {
    font-family: var(--gt-font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.gt-forwhom__col--yes h3 { color: var(--gt-pink); }
.gt-forwhom__col--no  h3 { color: var(--gt-text-light); }

.gt-forwhom__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gt-forwhom__col ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gt-border);
    font-size: 15px;
    line-height: 1.5;
}

.gt-forwhom__col ul li:last-child { border-bottom: none; }

.gt-forwhom__note {
    background: var(--gt-lavender);
    border-radius: var(--gt-radius);
    padding: 20px 28px;
    font-size: 15px;
    text-align: center;
    color: var(--gt-navy);
}

/* ─── FAQ ────────────────────────────────────────────────── */
.gt-faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gt-faq__item {
    border: 1px solid var(--gt-border);
    border-radius: var(--gt-radius);
    overflow: hidden;
    background: var(--gt-white);
}

.gt-faq__question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 24px;
    font-family: var(--gt-font-sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--gt-navy);
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: background 0.2s, color 0.2s;
    line-height: 1.5;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .gt-faq__question {
        font-size: 15px;
        padding: 16px 18px;
    }

    .gt-faq__arrow {
        flex-shrink: 0;
        margin-top: 1px;
    }
}

/* hover tylko na zamkniętych pytaniach */
.gt-faq__question:not([aria-expanded="true"]):hover {
    background: var(--gt-lavender);
    color: var(--gt-navy);
}

/* aktywny (otwarty) item, wyraźne odróżnienie od hover */
.gt-faq__question[aria-expanded="true"] {
    background: var(--gt-pink);
    color: #ffffff;
    border-radius: 0;        /* krawędzie pełne wewnątrz karty */
}

/* hover na już otwartym, ciemniejszy różowy, nie soft */
.gt-faq__question[aria-expanded="true"]:hover {
    background: var(--gt-pink-dark);
    color: #ffffff;
}

.gt-faq__arrow {
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 300;
    transition: transform 0.25s, color 0.2s;
    color: var(--gt-pink);
    line-height: 1;
}

/* strzałka biała gdy pytanie otwarte */
.gt-faq__question[aria-expanded="true"] .gt-faq__arrow {
    transform: rotate(45deg);
    color: #ffffff;
}

.gt-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--gt-white);
    border-top: 1px solid rgba(204, 51, 102, 0.15);
}

.gt-faq__answer.is-open {
    max-height: 400px;
}

.gt-faq__answer p {
    padding: 18px 24px 22px;
    font-size: 15px;
    color: var(--gt-text-light);
    line-height: 1.75;
    margin: 0;
}

/* ─── AUTHOR ─────────────────────────────────────────────── */
.gt-author__grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 52px;
    align-items: start;
}

.gt-author__photo-wrap {
    position: sticky;
    top: 40px;
}

.gt-author__photo {
    width: 100%;
    max-width: 320px;
    height: 420px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--gt-radius-lg);
    box-shadow: var(--gt-shadow-lg);
    display: block;
}

.gt-author__bio p {
    font-size: 16px;
    color: var(--gt-text-light);
    line-height: 1.7;
}

.gt-author__creds {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.gt-author__creds span {
    background: var(--gt-lavender);
    border: 1px solid var(--gt-lavender-md);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 13px;
    color: var(--gt-navy);
    font-weight: 500;
}

/* ─── PRICING ────────────────────────────────────────────── */
.gt-pricing {
    text-align: center;
}

.gt-pricing__intro {
    font-size: 16px;
    color: var(--gt-text-light);
    margin-bottom: 48px;
    line-height: 1.7;
}

.gt-pricing__tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.gt-pricing__tier {
    background: var(--gt-soft);
    border: 1px solid var(--gt-border);
    border-radius: var(--gt-radius-lg);
    padding: 32px 24px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

.gt-pricing__tier:hover {
    box-shadow: var(--gt-shadow);
    transform: translateY(-2px);
}

.gt-pricing__tier--best {
    background: var(--gt-white);
    border-color: var(--gt-pink);
    box-shadow: 0 4px 24px rgba(204,51,102,0.12);
}

.gt-pricing__tier--sold {
    opacity: 0.78;
    background: rgba(107, 104, 128, 0.06);
    border-style: dashed;
    border-color: rgba(107, 104, 128, 0.35);
}

.gt-pricing__tier--sold:hover {
    transform: none;
    box-shadow: none;
}

.gt-pricing__tier--sold .gt-pricing__tier-label,
.gt-pricing__tier--sold .gt-pricing__tier-detail {
    color: var(--gt-text-light);
}

.gt-pricing__tier--sold .gt-pricing__tier-price {
    color: var(--gt-text-light);
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    font-size: 2.35rem;
}

.gt-pricing__tier-badge--sold {
    background: var(--gt-text-light);
    color: var(--gt-white);
}

.gt-pricing__tier-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gt-pink);
    color: var(--gt-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

.gt-pricing__tier-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gt-text-light);
    margin-bottom: 12px;
}

.gt-pricing__tier-price {
    font-family: var(--gt-font-serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gt-navy);
    line-height: 1;
    margin-bottom: 10px;
}

.gt-pricing__tier--best .gt-pricing__tier-price {
    color: var(--gt-pink);
}

.gt-pricing__tier-detail {
    font-size: 13px;
    color: var(--gt-text-light);
}

.gt-pricing__note {
    font-size: 14px;
    color: var(--gt-text-light);
    margin-bottom: 32px;
}

.gt-pricing__note a {
    color: var(--gt-pink);
    text-decoration: none;
}

.gt-pricing__note a:hover { text-decoration: underline; }

.gt-pricing__limit {
    font-size: 13px;
    color: var(--gt-text-light);
    margin-top: 16px;
}

/* ─── FINAL CTA ──────────────────────────────────────────── */
.gt-final-cta {
    background: linear-gradient(135deg, var(--gt-lavender) 0%, var(--gt-white) 60%);
    text-align: center;
    border-top: 1px solid var(--gt-lavender-md);
}

.gt-final-cta__title {
    font-family: var(--gt-font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 300;
    color: var(--gt-navy);
    line-height: 1.25;
    margin-bottom: 20px;
}

.gt-final-cta__title em {
    color: var(--gt-pink);
    font-style: italic;
}

.gt-final-cta p {
    color: var(--gt-text-light);
    font-size: 16px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.gt-final-cta__sub {
    font-size: 13px;
    color: var(--gt-text-light);
    margin-top: 16px;
    letter-spacing: 0.04em;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.gt-footer {
    background: var(--gt-navy-dark);
    color: rgba(240, 237, 248, 0.5);
    text-align: center;
    padding-block: 24px;
    font-size: 13px;
}

.gt-footer a {
    color: rgba(240, 237, 248, 0.7);
    text-decoration: none;
}

.gt-footer a:hover { color: var(--gt-white); }

/* ─── REVEAL ANIMATION ──────────────────────────────────── */
.gt-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gt-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.gt-reveal:nth-child(2) { transition-delay: 0.1s; }
.gt-reveal:nth-child(3) { transition-delay: 0.2s; }
.gt-reveal:nth-child(4) { transition-delay: 0.3s; }
.gt-reveal:nth-child(5) { transition-delay: 0.4s; }
.gt-reveal:nth-child(6) { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .gt-how__layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .gt-how__video-aside {
        order: 2;
        max-width: 300px;
        margin-inline: auto;
    }

    .gt-how__grid {
        order: 1;
    }

    .gt-what__grid {
        grid-template-columns: 1fr;
    }

    .gt-what__img {
        height: 320px;
    }

    .gt-author__grid {
        grid-template-columns: 1fr;
    }

    .gt-author__photo-wrap {
        position: static;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .gt-section { padding-block: 56px; }

    .gt-hero {
        padding: 100px 24px 60px;
    }

    .gt-hero__cards { display: none; }

    .gt-countdown {
        gap: 4px;
    }

    .gt-countdown__item {
        min-width: 58px;
        padding: 10px 12px;
    }

    .gt-countdown__num { font-size: 1.8rem; }

    .gt-what__meta { grid-template-columns: 1fr; }

    .gt-journey__steps::before { left: 23px; }

    .gt-journey__num {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .gt-transform__grid {
        grid-template-columns: 1fr;
    }

    .gt-transform__arrow {
        text-align: center;
        font-size: 2.5rem;
        padding: 4px 0;
    }

    .gt-event__details {
        grid-template-columns: 1fr;
    }

    .gt-forwhom__grid {
        grid-template-columns: 1fr;
    }

    .gt-includes__grid {
        grid-template-columns: 1fr 1fr;
    }

    .gt-pricing__tiers {
        grid-template-columns: 1fr;
    }

    .gt-pricing__tier--best {
        order: -1;
    }

    .gt-pricing__tier--late {
        order: 0;
    }

    .gt-pricing__tier--sold {
        order: 1;
    }

    .gt-signals__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gt-includes__grid { grid-template-columns: 1fr; }
    .gt-how__grid      { grid-template-columns: 1fr; }

    .gt-gallery__slide img {
        max-height: 280px;
    }
}

/* ─── CERT WAITLIST FORM ──────────────────────────────────── */
.gt-cert-form {
    text-align: center;
}

.gt-cert-form__intro {
    font-size: 16px;
    color: var(--gt-text-light);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 40px;
}

.gt-cert-form__form {
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
    background: #fff;
    border: 1px solid var(--gt-border);
    border-radius: var(--gt-radius-lg);
    padding: 36px 32px;
    box-shadow: var(--gt-shadow);
}

.gt-cert-form__row {
    margin-bottom: 18px;
}

.gt-cert-form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gt-navy);
    margin-bottom: 6px;
}

.gt-cert-form__input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gt-border);
    border-radius: var(--gt-radius);
    font-family: inherit;
    font-size: 15px;
    color: var(--gt-navy);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.gt-cert-form__input:focus {
    outline: none;
    border-color: var(--gt-pink);
    box-shadow: 0 0 0 3px rgba(204, 51, 102, 0.12);
}

.gt-cert-form__row--check {
    margin-bottom: 14px;
}

.gt-cert-form__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--gt-navy);
    cursor: pointer;
}

.gt-cert-form__check input[type="checkbox"] {
    margin-top: 3px;
    flex: 0 0 auto;
    accent-color: var(--gt-pink);
    width: 16px;
    height: 16px;
}

.gt-cert-form__hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.gt-cert-form__submit-row {
    margin-top: 24px;
    text-align: center;
}

.gt-cert-form__submit-row .gt-btn {
    width: 100%;
    justify-content: center;
}

.gt-cert-form__submit-row .gt-btn[disabled] {
    opacity: 0.7;
    cursor: wait;
}

.gt-cert-form__note {
    font-size: 13px;
    color: var(--gt-text-light);
    text-align: center;
    margin-top: 16px;
    margin-bottom: 0;
}

.gt-cert-form__note a {
    color: var(--gt-pink);
    text-decoration: underline;
}

.gt-cert-form__success {
    max-width: 520px;
    margin: 0 auto;
    background: rgba(204, 51, 102, 0.06);
    border: 2px solid var(--gt-pink);
    border-radius: var(--gt-radius-lg);
    padding: 36px 32px;
    text-align: center;
}

.gt-cert-form__success-icon {
    font-size: 40px;
    color: var(--gt-pink);
    margin: 0 0 12px;
    font-weight: 700;
    line-height: 1;
}

.gt-cert-form__success h3 {
    font-size: 22px;
    color: var(--gt-navy);
    margin: 0 0 8px;
}

.gt-cert-form__success p {
    color: var(--gt-navy);
    margin: 0;
    line-height: 1.6;
}

.gt-cert-form__error {
    max-width: 520px;
    margin: 16px auto 0;
    padding: 14px 18px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--gt-radius);
    color: #991b1b;
    font-size: 14px;
}

.gt-cert-form__error p {
    margin: 0;
}

@media (max-width: 480px) {
    .gt-cert-form__form,
    .gt-cert-form__success {
        padding: 24px 20px;
    }
}
