/* =========================================
   0. GLOBAL & RESET
   ========================================= */
:root {
    --color-primary: #0d9488;    /* Teal */
    --color-primary-hover: #0f766e;
    --color-secondary: #f59e0b;  /* Amber */
    --color-dark: #1e293b;       /* Slate 800 */
    --color-text: #475569;       /* Slate 600 */
    --color-light: #f0fdfa;      /* Teal 50 */
    --color-white: #ffffff;
    --color-border: #ccfbf1;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-light);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn--primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
}

/* =========================================
   1. HEADER
   ========================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-dark);
}

.logo__icon {
    width: 40px;
    height: 40px;
}

/* Navigation */
.header__nav {
    display: flex;
}

.header__menu {
    display: flex;
    gap: 32px;
}

.header__link {
    font-weight: 500;
    color: var(--color-dark);
    font-size: 0.95rem;
    position: relative;
}

.header__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.header__link:hover::after {
    width: 100%;
}

.header__link:hover {
    color: var(--color-primary);
}

.header__item--mobile-only {
    display: none;
}

/* Actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-dark);
}

/* Mobile Menu Logic */
@media (max-width: 992px) {
    .header__burger {
        display: block;
    }

    .header__btn {
        display: none; /* Hide CTA in header on mobile to save space, use nav link instead */
    }

    .header__nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-white);
        flex-direction: column;
        padding: 40px 20px;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
        border-top: 1px solid var(--color-border);
    }

    .header__nav.is-active {
        transform: translateY(0);
    }

    .header__menu {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .header__link {
        font-size: 1.2rem;
    }

    .header__item--mobile-only {
        display: block;
        margin-top: 20px;
    }
}

/* =========================================
   2. FOOTER
   ========================================= */
.footer {
    background-color: var(--color-dark);
    color: #94a3b8; /* Light grey text */
    padding: 60px 0 20px;
    margin-top: auto; /* Push to bottom if content is short */
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.logo__text--footer {
    color: var(--color-white);
}

.footer__desc {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__title {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    font-size: 0.9rem;
}

.footer__link:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
}

.footer__icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* =========================================
   3. HERO SECTION (Immersive Dark Variant)
   ========================================= */
.hero--immersive {
    position: relative;
    width: 100%;
    min-height: 100vh; /* На весь екран */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0f172a; /* Глибокий тёмно-синий */
    color: var(--color-white);
    overflow: hidden;
    padding-block: var(--header-height);
}

.hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6; /* Щоб не заважав тексту */
}

.hero__container {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    justify-content: center;
}

/* Скляна підложка під текст */
.hero__content-box {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero__top-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(13, 148, 136, 0.2);
    border: 1px solid rgba(13, 148, 136, 0.4);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5eead4;
    margin-bottom: 30px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.text-gradient-light {
    background: linear-gradient(to right, #5eead4, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: 1.2rem;
    color: #cbd5e1; /* Світло-сірий */
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn--glass {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero__trust {
    font-size: 0.9rem;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: inline-block;
    padding-left: 30px;
    padding-right: 30px;
}

/* Mobile fixes */
@media (max-width: 768px) {
    .hero__title {
        font-size: 2.8rem;
    }
    .hero__content-box {
        padding: 40px 20px;
        background: none; /* Прибираємо рамку на мобільному для чистоти */
        border: none;
        box-shadow: none;
        backdrop-filter: none;
    }
    .hero__actions {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
}

/* =========================================
   4. GENERAL SECTION STYLES
   ========================================= */
.section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.text-highlight {
    color: var(--color-primary);
}

/* Animation Classes (Fade Up) */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   5. SECTION: ABOUT
   ========================================= */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about__image-wrapper:hover .about__img {
    transform: scale(1.03);
}

/* Floating Stat Card */
.about__stat-card {
    position: absolute;
    bottom: 30px;
    right: -20px; /* Виступає за межі */
    background: var(--color-white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-width: 160px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.about__stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d9488; /* Teal */
}

.about__stat-text {
    font-size: 0.85rem;
    color: #64748b;
}

.about__text {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 30px;
}

.about__text p {
    margin-bottom: 16px;
}

.about__list {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--color-dark);
}

.about__icon {
    color: var(--color-primary);
    width: 20px;
    height: 20px;
}

.btn--arrow {
    gap: 10px;
}

/* =========================================
   6. SECTION: BENEFITS
   ========================================= */
.benefits {
    background-color: var(--color-white); /* Трохи світліше за body */
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--color-light);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(13, 148, 136, 0.2);
    background-color: var(--color-white);
}

.benefit-card__icon-box {
    width: 56px;
    height: 56px;
    background-color: rgba(13, 148, 136, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 24px;
    transition: var(--transition);
}

.benefit-card:hover .benefit-card__icon-box {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: rotate(3deg);
}

.benefit-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.benefit-card__text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about__stat-card {
        right: 0;
    }
}

/* =========================================
   7. SECTION: PROGRAM (Timeline)
   ========================================= */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Vertical Line */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px; /* Center of the marker */
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        var(--color-border) 0,
        var(--color-border) 6px,
        transparent 6px,
        transparent 12px
    );
    z-index: 0;
}

.timeline__item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 80px;
}

.timeline__item:last-child {
    margin-bottom: 0;
}

/* Marker Circle */
.timeline__marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-primary);
    z-index: 1;
    box-shadow: 0 0 0 8px var(--color-light); /* Creates gap around line */
}

.timeline__content {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.timeline__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.timeline__text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Interactive Quiz Box */
.quiz-box {
    margin-top: 20px;
    background-color: #ccfbf1; /* Very light teal */
    border: 1px dashed #0d9488;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.quiz-box__icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quiz-box__info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.quiz-box__info p {
    font-size: 0.8rem;
    color: #64748b;
}

.btn--sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn--outline.success {
    border-color: #0d9488;
    background-color: #0d9488;
    color: white;
    pointer-events: none;
}

/* =========================================
   8. SECTION: FAQ (Accordion)
   ========================================= */
.faq {
    background-color: #f8fafc;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion__item {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion__item:hover {
    border-color: #cbd5e1;
}

.accordion__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-dark);
}

.accordion__icon {
    color: var(--color-primary);
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
}

.accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion__content {
    padding: 0 24px 24px;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Active State */
.accordion__item.is-open .accordion__icon {
    transform: rotate(45deg); /* Makes X from + */
    color: var(--color-dark);
}

.accordion__item.is-open {
    box-shadow: var(--shadow-sm);
}

@media (max-width: 576px) {
    .timeline__item {
        padding-left: 60px;
    }
    
    .quiz-box {
        flex-direction: column;
        text-align: center;
    }
    
    .btn--sm {
        width: 100%;
    }
}

/* =========================================
   9. SECTION: CONTACT
   ========================================= */
.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background-color: var(--color-white);
    border-radius: 24px;
    padding: 60px;
    box-shadow: var(--shadow-md);
    align-items: start;
}

.contact__visual {
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 200px;
}

.contact__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.contact__desc {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
}

.contact__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(13, 148, 136, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.contact__feature-item h4 {
    font-weight: 600;
    margin-bottom: 2px;
}

.contact__feature-item p {
    font-size: 0.9rem;
    color: #64748b;
}

/* Form Styling */
.contact__form-box {
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    position: relative; /* For success message overlay */
}

.form__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form__input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form__input.error {
    border-color: #ef4444;
}

.form__error {
    display: none;
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 4px;
}

.form__checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.form__checkbox {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary);
}

.form__checkbox-label {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    flex: 1;
}

.form__checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form__btn {
    width: 100%;
    justify-content: center;
}

/* Success Message */
.form-success {
    display: none; /* Hidden by default */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    border-radius: 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    z-index: 10;
}

.form-success__icon {
    width: 64px;
    height: 64px;
    background-color: #ccfbf1;
    color: #0d9488;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.form-success__icon svg {
    width: 32px;
    height: 32px;
}

.form-success__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-dark);
}

/* =========================================
   10. COOKIE POPUP
   ========================================= */
.cookie-popup {
    position: fixed;
    bottom: -500px; /* Hidden initially */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: bottom 0.5s ease-out;
}

.cookie-popup.show {
    bottom: 24px;
}

.cookie-popup__content {
    font-size: 0.9rem;
}

.cookie-popup a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* =========================================
   11. POLICY PAGES STYLES (Етап 5.2)
   ========================================= */
.pages {
    padding: 120px 0 80px; /* Extra padding top for fixed header */
}

.pages .container {
    max-width: 800px; /* Narrower for reading */
}

.pages h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--color-dark);
}

.pages h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--color-dark);
}

.pages p {
    margin-bottom: 16px;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
}

.pages a {
    color: var(--color-primary);
    text-decoration: underline;
}

.pages ul {
    margin-bottom: 24px;
    padding-left: 20px;
    list-style-type: disc;
}

.pages li {
    margin-bottom: 8px;
    color: var(--color-text);
}

.contacts-page__block {
    margin: 28px 0;
}

.contacts-page__block h2 {
    margin: 24px 0 12px;
    font-size: 1.4rem;
}

.contacts-page__block p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}

.pages-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Mobile Responsive for Contact */
@media (max-width: 992px) {
    .contact__wrapper {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }
    .contact__info {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .cookie-popup {
        flex-direction: column;
        text-align: center;
    }
    .cookie-popup button {
        width: 100%;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.spinner circle {
    stroke-dasharray: 60;
    stroke-dashoffset: 0;
}