/* ==========================================================================
   NovaStack Component Styles
   Reusable component styles for navbar, footer, hero, cards, forms, etc.
   ========================================================================== */

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background var(--transition-base), padding var(--transition-base), backdrop-filter var(--transition-base);
}

.navbar.scrolled {
    background: rgba(5, 5, 16, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--border-subtle);
    padding: 0.75rem 0;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    text-decoration: none;
}

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

.navbar__logo svg {
    width: 28px;
    height: 28px;
}

.navbar__nav {
    display: none;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.navbar__links a,
.navbar__dropdown-trigger {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.navbar__links a:hover,
.navbar__links a.active,
.navbar__dropdown-trigger:hover,
.navbar__dropdown-trigger.active {
    color: var(--text-primary);
}

.navbar__links a:focus-visible,
.navbar__dropdown-trigger:focus-visible {
    color: var(--text-primary);
    outline: 2px solid var(--primary-500);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

.navbar__logo:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

.navbar__links a.active {
    position: relative;
}

.navbar__links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 1px;
}

/* Dropdown */
.navbar__dropdown {
    position: relative;
}

.navbar__dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.navbar__dropdown-trigger::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform var(--transition-fast);
}

.navbar__dropdown:hover .navbar__dropdown-trigger::after {
    transform: rotate(180deg);
}

.navbar__dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    min-width: 200px;
    background: var(--bg-tertiary);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: all var(--transition-fast);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.navbar__dropdown:hover .navbar__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.navbar__dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* Hamburger */
.navbar__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}

.navbar__hamburger:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Remove backdrop-filter when nav is open — it creates a containing block
   that breaks position:fixed on the overlay */
body.nav-open .navbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Mobile Nav Overlay */
.navbar__nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.navbar__nav.open .navbar__links {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
}

.navbar__nav.open .navbar__links a,
.navbar__nav.open .navbar__dropdown-trigger {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.navbar__nav.open .navbar__dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    text-align: center;
    padding: 0.5rem 0;
}

.navbar__nav.open .navbar__dropdown-menu li a {
    font-size: 1.1rem;
}

/* Desktop */
@media (min-width: 1024px) {
    .navbar__nav {
        display: flex;
    }

    .navbar__hamburger {
        display: none;
    }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 90vh;
    min-height: 90dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 7rem 0 2rem;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Gradient mesh orbs */
.hero__bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 51, 255, 0.2) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation: float 8s ease-in-out infinite;
}

.hero__bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
    animation: float 10s ease-in-out infinite reverse;
}

/* Platform-specific accent override */
.hero[style*="--hero-accent"] .hero__bg::before {
    background: radial-gradient(circle, color-mix(in srgb, var(--hero-accent) 20%, transparent) 0%, transparent 70%);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero__headline {
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease both;
}

.hero__subheadline {
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeUp 0.8s ease 0.4s both;
}

/* ==========================================================================
   PLATFORM CARDS
   ========================================================================== */
.platforms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .platforms-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(ellipse at top, color-mix(in srgb, var(--card-accent, var(--primary-500)) 6%, transparent) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity var(--transition-base);
    opacity: 0.5;
}

.platform-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--card-accent, var(--primary-500)) 30%, transparent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px color-mix(in srgb, var(--card-accent, var(--primary-500)) 15%, transparent);
    color: inherit;
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.platform-card__icon svg {
    width: 100%;
    height: 100%;
}

.platform-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.platform-card__tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.platform-card__link {
    color: var(--primary-300);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    transition: color var(--transition-fast);
}

.platform-card:hover .platform-card__link {
    color: var(--primary-200);
}

/* ==========================================================================
   GLASS CARD (General Purpose)
   ========================================================================== */
.glass-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.glass-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-glow);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    color: var(--primary-300);
}

.glass-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.glass-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.glass-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   FEATURE BLOCKS (What We Do)
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-block {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--gradient-card);
    border: var(--border-subtle);
    transition: all var(--transition-base);
}

.feature-block:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.feature-block__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--gradient-glow);
    border-radius: var(--radius-lg);
    color: var(--primary-300);
}

.feature-block__icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.feature-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.feature-block p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
   STATS ROW
   ========================================================================== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-item__number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-item__label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    text-align: center;
    background: var(--gradient-glow);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(109, 51, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section__inner {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   PROCESS STEPS (Platform Pages)
   ========================================================================== */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    counter-reset: step;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    counter-increment: step;
}

.process-step::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   TECH BADGES
   ========================================================================== */
.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.tech-badge {
    padding: 0.6rem 1.25rem;
    background: var(--bg-tertiary);
    border: var(--border-subtle);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.tech-badge:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   PHILOSOPHY / VALUE CARDS
   ========================================================================== */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .philosophy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.philosophy-card {
    padding: 2.5rem 2rem;
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.philosophy-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.philosophy-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-glow);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    color: var(--primary-300);
}

.philosophy-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.philosophy-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.philosophy-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.value-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.value-item__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-glow);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    color: var(--accent-300);
}

.value-item__icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Trends Grid */
.trends-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .trends-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 3px rgba(109, 51, 255, 0.15);
}

.form-input-error {
    border-color: #f87171 !important;
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-error {
    color: #f87171;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Honeypot */
.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* Contact Info Sidebar */
.contact-info {
    padding: 2rem;
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    height: fit-content;
}

.contact-info h3 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.contact-info a {
    color: var(--primary-300);
}

.contact-info__socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: var(--border-subtle);
}

.contact-info__socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.contact-info__socials a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.contact-info__socials svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--bg-secondary);
    border-top: var(--border-subtle);
    padding: 4rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer__brand {
    max-width: 300px;
}

.footer__brand .navbar__logo {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer__brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer__column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer__column ul {
    list-style: none;
}

.footer__column li {
    margin-bottom: 0.5rem;
}

.footer__column a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer__column a:hover {
    color: var(--text-primary);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 2rem;
    border-top: var(--border-subtle);
    text-align: center;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer__socials {
    display: flex;
    gap: 1rem;
}

.footer__socials a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer__socials a:hover {
    color: var(--text-primary);
}

.footer__socials svg {
    width: 20px;
    height: 20px;
}
