/* ======================================================
   RESET + VARIABLES
====================================================== */
html, body {
  width: 100%;
  max-width: 100%;
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
}

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

:root {
    --black: #000000;
    --white: #ffffff;
    --yellow: #facc15;
    --yellow-dark: #eab308;
    --gray-dark: #18181b;
    --gray-medium: #27272a;
    --gray-light: #71717a;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

#countdown {
        color: white;
    }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ======================================================
   HEADER
====================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(250, 204, 21, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* ⬅ вместо center */
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    transition: var(--transition);
    margin-top: -10px;   /* аккуратная коррекция */
    flex-shrink: 0;      /* ❗ важно */
}

.logo img {
    width: 75%;
    height: auto;
    display: block;
    pointer-events: none;
}

.logo:hover {
    opacity: 0.8;
}

.logo svg {
    color: var(--yellow);
}

/* ======================================================
   NAVIGATION
====================================================== */

.nav-desktop {
    display: flex;
    gap: 1rem;
    margin-top: 10px;   /* ← регулируй: 8–14px идеально */
}

.nav-desktop button,
.nav-mobile button {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    padding: 0.5rem 0;
    font-family: inherit;
}

.nav-desktop button:hover {
    color: var(--yellow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-icon {
    width: 28px;
    height: 3px;
    background-color: var(--yellow);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active .menu-icon:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active .menu-icon:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-icon:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(0, 0, 0, 0.98);
}

.nav-mobile.active {
    display: flex;
    max-height: 500px;
    padding: 1rem 0;
}

.nav-mobile button {
    text-align: left;
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(250, 204, 21, 0.1);
}

.nav-mobile button:hover {
    color: var(--yellow);
    background-color: rgba(250, 204, 21, 0.05);
}


/* ======================================================
   HERO
====================================================== */

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 ;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--yellow);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.3;
}

.hero-description {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--gray-light);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.4;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0rem;
    background-color: var(--yellow);
    color: var(--black);
    padding: 0.4rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--yellow-dark);
    transform: scale(1.1);
}

.cta-button:active {
    transform: scale(0.98);
}

/* ======================================================
   ⚠️ GALLERY (DISABLED — MOVED TO gallery.css)
====================================================== */

.gallery-section {
    padding: 2rem 0;
    background-color: var(--black);
}

#first-flights {
    padding-top: 0;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--yellow);
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}


/* ======================================================
   SPECIFICATIONS / CONTENT BLOCKS
====================================================== */
.specs-section {
    padding: 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.spec-card {
    background-color: var(--gray-medium);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: var(--transition);
}

.spec-card:hover {
    border-color: rgba(250, 204, 21, 0.5);
    transform: translateY(-5px);
}

.spec-icon {
    color: var(--yellow);
    margin-bottom: 1.5rem;
}

.spec-card h3 {
    color: var(--yellow);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.spec-card p {
    color: #d4d4d8;
    font-size: 1.125rem;
    line-height: 1.5;
}

.detailed-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.detail-card {
    background-color: var(--gray-medium);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 0.5rem;
    padding: 2rem;
}

.detail-card h3 {
    color: var(--yellow);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.detail-card h4 {
    color: var(--white);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.detail-card ul {
    list-style: none;
}

.detail-card ul li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #3f3f46;
    color: #d4d4d8;
    font-size: 1rem;
    gap: 1rem;
}

.detail-card ul li:last-child {
    border-bottom: none;
}

.detail-card ul li span:first-child {
    flex-shrink: 0;
}

.detail-card ul li span:last-child {
    color: var(--white);
    font-weight: 500;
    text-align: right;
}

.dimension-group:first-child {
    margin-bottom: 1.5rem;
}

.control-safety {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.control-card {
    background-color: var(--gray-medium);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 0.5rem;
    padding: 2rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.card-header svg {
    color: var(--yellow);
    flex-shrink: 0;
}

.card-header h3 {
    color: var(--yellow);
    font-size: 1.25rem;
    font-weight: 600;
}

.control-card ul {
    list-style: none;
}

.control-card ul li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    color: #d4d4d8;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.control-card ul li::before {
    content: "•";
    color: var(--yellow);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1.2;
}

/* ======================================================
   KIT SECTION
====================================================== */

.kit-section {
    padding: 3rem 0;
    background-color: var(--gray-dark);
}

.kit-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--gray-medium);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 0.5rem;
    padding: 2.5rem;
}

.kit-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.kit-list li {
    position: relative;
    padding-left: 2.5rem;
    color: #d4d4d8;
    font-size: 1rem;
    line-height: 1.6;
}

.kit-list li::before {
    content: "✓";
    color: var(--yellow);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

/* ======================================================
   PRICING SECTION
====================================================== */

.pricing-section {
    padding: 3rem 0;
}

.price-card {
    max-width: 700px;
    margin: 0 auto 4rem;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(234, 179, 8, 0.1));
    border: 2px solid var(--yellow);
    border-radius: 0.5rem;
    padding: 3.5rem 2rem;
    text-align: center;
}

.price-label {
    color: var(--gray-light);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.price {
    font-size: clamp(3.5rem, 10vw, 5rem);
    color: var(--yellow);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.1;
}

.price-description {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 2rem;
    font-weight: 500;
}

.preorder-badge {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    color: var(--yellow);
    font-size: 1.125rem;
    font-weight: 500;
}

.form-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.form-intro h3 {
    color: var(--yellow);
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
}

.form-intro p {
    color: var(--gray-light);
    font-size: 1.125rem;
    line-height: 1.7;
}

.preorder-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--gray-medium);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 0.5rem;
    padding: 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(250, 204, 21, 0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--yellow);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    background-color: var(--black);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 0.375rem;
    padding: 0.875rem 1rem;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #52525b;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background-color: var(--yellow);
    color: var(--black);
    border: none;
    padding: 1.125rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-family: inherit;
}

.submit-btn:hover {
    background-color: var(--yellow-dark);
    transform: scale(1.02);
}

.submit-btn:active {
    transform: scale(0.98);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-notice {
    text-align: center;
    color: var(--gray-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ======================================================
   ABOUT SECTION
====================================================== */

.about-section {
    padding: 3rem 0;
    background-color: var(--gray-dark);
}

.about-content {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.about-text {
    background-color: var(--gray-medium);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 0.5rem;
    padding: 2.5rem;
}

.about-text p {
    color: #d4d4d8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background-color: var(--gray-medium);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 0.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
}

.stat-label {
    color: var(--yellow);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.stat-value {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

/* ======================================================
   CONTACT SECTION
====================================================== */

.contact-section {
    padding: 3rem 0;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--gray-medium);
    border: 1px solid rgba(250, 204, 21, 0.2);
    max-width: 530px;
max-height: 400px;
margin: 0 auto;
    border-radius: 0.5rem;
    padding: 1.2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.contact-info svg {
    color: var(--yellow);
    flex-shrink: 0;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.25rem;
    transition: var(--transition);
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--yellow);
}

.contact-card p {
    color: var(--gray-light);
    font-size: 1.125rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 0rem; /* Уменьшаем отступ снизу */
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(250, 204, 21, 0.1);
    border: 2px solid var(--yellow);
    color: var(--yellow);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--yellow);
    color: var(--black);
    transform: scale(1.1);
}

.social-links a:active {
    transform: scale(0.95);
}

/* ======================================================
   FOOTER SECTION
====================================================== */

.footer {
    background-color: var(--black);
    border-top: 1px solid rgba(250, 204, 21, 0.2);
    padding: 0.5rem 0;
    text-align: center;
}

.footer p {
    color: var(--gray-light);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.footer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .social-links {
        gap: 1.5rem;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
    }
    
    .social-links a svg {
        width: 20px;
        height: 20px;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background-color: var(--yellow);
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    z-index: 10001;
    opacity: 0;
    transition: var(--transition);
    max-width: 90%;
    text-align: center;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ======================================================
   ANIMATIONS
====================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}

.fade-in-delay-1 {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.fade-in-delay-3 {
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* ======================================================
   SCROLL REVEAL
====================================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-padding-top: 100px;
}

/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .mobile-menu-btn { display: flex; }
    .container { padding: 0 1rem; }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }
}

.kit-list {
        grid-template-columns: 1fr;
    }
    
.form-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/* Photo blocks inside spec cards */
/* ============================= */

.photo-card {
    display: flex;
    flex-direction: column;
    align-items: center;       /* центр по горизонтали */
    justify-content: center;
    text-align: center;
    width: 100%;
}

/* --- Image --- */
.photo-card img {
    display: block;            /* убираем inline-смещение */
    width: 100%;
    max-width: 900px;
    height: auto !important;   /* 🔴 КЛЮЧЕВОЕ: убираем фикс 600px */
         
    object-fit: cover;

    border-radius: 16px;
    overflow: hidden;

    margin: 0 auto 18px auto;  /* центр + отступ снизу */

    /* мягкая Apple-анимация */
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

/* Когда блок показан */
.photo-card.revealed img {
    opacity: 1;
    transform: translateY(0);
}

/* --- Caption --- */
.photo-caption {
    display: block;
    width: 100%;
    text-align: center;

    color: #f5b400;            /* твой жёлтый */
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;

    margin: 0;                 /* убираем лишние поля */
    padding: 0;
}

/* --- Fix excessive bottom spacing inside card --- */
.photo-card:last-child {
    margin-bottom: 0;
}

/* --- Mobile optimization --- */
@media (max-width: 768px) {
    .photo-card img {
        border-radius: 12px;
    }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    .photo-card img {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

/* ======================================================
   TECH PHOTOS — FINAL STABLE VERSION
   Цели:
   • одинаковая ширина на всех браузерах (в т.ч. Huawei)
   • предсказуемые отступы (px, без rem)
   • стабильные размеры шрифтов
====================================================== */

.tech-photos {
  padding: 64px 0 80px;      /* вертикальные отступы секции:
                                64px сверху, 80px снизу */
  background-color: var(--black);
}

/* Один фото-блок */
.tech-photo {
  max-width: 900px;         /* максимальная ширина фото */
  width: 100%;              /* обязательно для Android */
  min-width: 0;             /* защита от переполнения */

  margin: 0 auto 30px;      /* центр + расстояние между фото (≈60%) */
  text-align: center;
}

/* Контейнер для защиты от переполнения */
.tech-photo .img-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;

  overflow: hidden;         /* 🔒 ключевое для Huawei */
  border-radius: 16px;      /* скругление desktop */
}

/* Картинка */
.tech-photo .img-container img {
  display: block;           /* убираем inline-смещение */
  width: 100%;
  max-width: 100%;
  height: auto;             /* без фиксированной высоты */

  object-fit: cover;        /* безопасно для любых пропорций */
}

/* Подпись под фото */
.tech-photo figcaption {
  margin-top: 12px;         /* расстояние от фото */
  text-align: center;

  color: var(--yellow);
  font-size: 16px;          /* desktop: стабильный размер */
  font-weight: 600;
  line-height: 1.4;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .tech-photo {
    margin-bottom: 20px;    /* меньше воздуха на мобильных */
  }

  .tech-photo .img-container {
    border-radius: 12px;    /* мягче на маленьких экранах */
  }

  .tech-photo figcaption {
    font-size: 14px;        /* основной mobile размер */
    margin-top: 8px;
  }
}

/* Очень маленькие экраны */
@media (max-width: 360px) {
  .tech-photo figcaption {
    font-size: 13px;        /* минимально читаемо */
  }
}

/* ===============================
   VERTICAL RHYTHM — SAFE LAYER
=============================== */

#home {
  padding-top: clamp(40px, 6vh, 70px);
  padding-bottom: 0;   
  /*
    clamp(MIN, IDEAL, MAX)

    90px  → минимальный отступ
            (чтобы header никогда не прилипал к контенту)

    11vh  → адаптивное значение
            (11% от высоты экрана → подстраивается под разные телефоны)

    130px → максимальный предел
            (чтобы на больших экранах не появлялся огромный зазор)
  */
}


/* ВЕРТИКАЛЬНОЕ ВИДЕО - МИНИМАЛЬНЫЕ СТИЛИ */
.vertical-video {
  aspect-ratio: 1072 / 1904;
  object-fit: cover;
  background: #000;
}

/* ======================================================
   HORIZONTAL VIDEO (16:9)
====================================================== */

.horizontal-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.slideshow-container.horizontal {
    aspect-ratio: 16 / 9;
}

/* ======================================================
   ЧИСТОЕ РЕШЕНИЕ: УБИРАЕМ ПРОБЕЛ МЕЖДУ #home И #hornet-h1
====================================================== */

#home {
    margin-bottom: 0;
    padding-bottom: 0;
}

#home .slideshow-wrapper,
#home .slideshow-container {
    margin-bottom: 0;
    padding-bottom: 0;
}

#hornet-h1 {
    margin-top: 0;
    padding-top: 0;
}

/* ======================================================
   FIX: Отступы для ссылки скачивания презентации
====================================================== */

.hero-description {
    margin-bottom: 0.9rem !important;
}

.download-presentation-wrapper {
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.download-presentation-link {
    display: inline-flex;
    align-items: center;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
    line-height: 1.2;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
}

.download-presentation-link:hover {
    color: #facc15;
    transform: scale(1.08);
}

.download-presentation-link:hover svg {
    color: #facc15;
    stroke: #facc15;
}

.download-presentation-link:focus {
    outline: none;
}

.download-presentation-wrapper + .cta-button {
    margin-top: 1.9rem;
}
